umap-project 3.0.6__py3-none-any.whl → 3.1.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.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -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-
|
|
27
|
+
"POT-Creation-Date: 2025-06-10 09:19+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"
|
|
@@ -58,7 +58,7 @@ msgstr "L’utilisation de “%(name)s” pour s’authentifier est dépréciée
|
|
|
58
58
|
msgid "name"
|
|
59
59
|
msgstr "nom"
|
|
60
60
|
|
|
61
|
-
#: models.py:63 models.py:
|
|
61
|
+
#: models.py:63 models.py:503
|
|
62
62
|
msgid "description"
|
|
63
63
|
msgstr "description"
|
|
64
64
|
|
|
@@ -78,23 +78,23 @@ msgstr "Modèle d'URL au format des tuiles OSM"
|
|
|
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:176 models.py:
|
|
81
|
+
#: models.py:176 models.py:497
|
|
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:177 models.py:
|
|
85
|
+
#: models.py:177 models.py:498
|
|
86
86
|
msgid "Everyone can edit"
|
|
87
87
|
msgstr "Tout le monde peut modifier"
|
|
88
88
|
|
|
89
|
-
#: models.py:180 models.py:
|
|
89
|
+
#: models.py:180 models.py:491
|
|
90
90
|
msgid "Everyone"
|
|
91
91
|
msgstr "Tout le monde"
|
|
92
92
|
|
|
93
|
-
#: models.py:181 models.py:190 models.py:
|
|
93
|
+
#: models.py:181 models.py:190 models.py:492
|
|
94
94
|
msgid "Editors and team only"
|
|
95
95
|
msgstr "Éditeurs et équipe seulement"
|
|
96
96
|
|
|
97
|
-
#: models.py:182 models.py:
|
|
97
|
+
#: models.py:182 models.py:493
|
|
98
98
|
msgid "Owner only"
|
|
99
99
|
msgstr "Propriétaire uniquement"
|
|
100
100
|
|
|
@@ -114,7 +114,7 @@ msgstr "Quiconque a le lien"
|
|
|
114
114
|
msgid "Blocked"
|
|
115
115
|
msgstr "Bloquée"
|
|
116
116
|
|
|
117
|
-
#: models.py:192 models.py:
|
|
117
|
+
#: models.py:192 models.py:487
|
|
118
118
|
msgid "Deleted"
|
|
119
119
|
msgstr "Supprimé"
|
|
120
120
|
|
|
@@ -154,99 +154,123 @@ msgstr "éditeurs"
|
|
|
154
154
|
msgid "team"
|
|
155
155
|
msgstr "équipe"
|
|
156
156
|
|
|
157
|
-
#: models.py:230 models.py:
|
|
157
|
+
#: models.py:230 models.py:519
|
|
158
158
|
msgid "edit status"
|
|
159
159
|
msgstr "statut de modification"
|
|
160
160
|
|
|
161
|
-
#: models.py:235 models.py:
|
|
161
|
+
#: models.py:235 models.py:524
|
|
162
162
|
msgid "share status"
|
|
163
163
|
msgstr "qui a accès"
|
|
164
164
|
|
|
165
|
-
#: models.py:238 models.py:
|
|
165
|
+
#: models.py:238 models.py:514
|
|
166
166
|
msgid "settings"
|
|
167
167
|
msgstr "réglages"
|
|
168
168
|
|
|
169
|
-
#: models.py:
|
|
169
|
+
#: models.py:243
|
|
170
|
+
msgid "save as template"
|
|
171
|
+
msgstr "enregistrer comme modèle"
|
|
172
|
+
|
|
173
|
+
#: models.py:244
|
|
174
|
+
msgid "This map is a template map."
|
|
175
|
+
msgstr "Cette carte est un modèle."
|
|
176
|
+
|
|
177
|
+
#: models.py:420
|
|
170
178
|
msgid "Clone of"
|
|
171
179
|
msgstr "Clone de"
|
|
172
180
|
|
|
173
|
-
#: models.py:
|
|
181
|
+
#: models.py:486 models.py:490 models.py:496
|
|
174
182
|
msgid "Inherit"
|
|
175
183
|
msgstr "Par défaut"
|
|
176
184
|
|
|
177
|
-
#: models.py:
|
|
185
|
+
#: models.py:509
|
|
178
186
|
msgid "display on load"
|
|
179
187
|
msgstr "afficher au chargement."
|
|
180
188
|
|
|
181
|
-
#: models.py:
|
|
189
|
+
#: models.py:510
|
|
182
190
|
msgid "Display this layer on load."
|
|
183
191
|
msgstr "Afficher ce calque au chargement."
|
|
184
192
|
|
|
185
|
-
#: settings/base.py:
|
|
193
|
+
#: settings/base.py:283
|
|
194
|
+
msgid "uMap user documentation"
|
|
195
|
+
msgstr "Documentation utilisateur"
|
|
196
|
+
|
|
197
|
+
#: settings/base.py:288
|
|
198
|
+
msgid "Video tutorials"
|
|
199
|
+
msgstr "Tutoriels vidéo"
|
|
200
|
+
|
|
201
|
+
#: settings/base.py:293
|
|
202
|
+
msgid "OpenStreetMap.org forum"
|
|
203
|
+
msgstr "Forum openstreetmap.org"
|
|
204
|
+
|
|
205
|
+
#: settings/base.py:298
|
|
206
|
+
msgid "OpenStreetMap France forum"
|
|
207
|
+
msgstr "Forum OpenStreetMap France"
|
|
208
|
+
|
|
209
|
+
#: settings/base.py:318
|
|
186
210
|
msgid "Art and Culture"
|
|
187
211
|
msgstr "Art et culture"
|
|
188
212
|
|
|
189
|
-
#: settings/base.py:
|
|
213
|
+
#: settings/base.py:319
|
|
190
214
|
msgid "Cycling"
|
|
191
215
|
msgstr "Vélo"
|
|
192
216
|
|
|
193
|
-
#: settings/base.py:
|
|
217
|
+
#: settings/base.py:320
|
|
194
218
|
msgid "Business"
|
|
195
219
|
msgstr "Économie"
|
|
196
220
|
|
|
197
|
-
#: settings/base.py:
|
|
221
|
+
#: settings/base.py:321
|
|
198
222
|
msgid "Environment"
|
|
199
223
|
msgstr "Environnement"
|
|
200
224
|
|
|
201
|
-
#: settings/base.py:
|
|
225
|
+
#: settings/base.py:322
|
|
202
226
|
msgid "Education"
|
|
203
227
|
msgstr "Éducation"
|
|
204
228
|
|
|
205
|
-
#: settings/base.py:
|
|
229
|
+
#: settings/base.py:323
|
|
206
230
|
msgid "Food and Agriculture"
|
|
207
231
|
msgstr "Nourriture et agriculture"
|
|
208
232
|
|
|
209
|
-
#: settings/base.py:
|
|
233
|
+
#: settings/base.py:324
|
|
210
234
|
msgid "Geopolitics"
|
|
211
235
|
msgstr "Géopolitique"
|
|
212
236
|
|
|
213
|
-
#: settings/base.py:
|
|
237
|
+
#: settings/base.py:325
|
|
214
238
|
msgid "Health"
|
|
215
239
|
msgstr "Santé"
|
|
216
240
|
|
|
217
|
-
#: settings/base.py:
|
|
241
|
+
#: settings/base.py:326
|
|
218
242
|
msgid "Hiking"
|
|
219
243
|
msgstr "Rando"
|
|
220
244
|
|
|
221
|
-
#: settings/base.py:
|
|
245
|
+
#: settings/base.py:327
|
|
222
246
|
msgid "History"
|
|
223
247
|
msgstr "Histoire"
|
|
224
248
|
|
|
225
|
-
#: settings/base.py:
|
|
249
|
+
#: settings/base.py:328
|
|
226
250
|
msgid "Public sector"
|
|
227
251
|
msgstr "Secteur public"
|
|
228
252
|
|
|
229
|
-
#: settings/base.py:
|
|
253
|
+
#: settings/base.py:329
|
|
230
254
|
msgid "Science"
|
|
231
255
|
msgstr "Science"
|
|
232
256
|
|
|
233
|
-
#: settings/base.py:
|
|
257
|
+
#: settings/base.py:330
|
|
234
258
|
msgid "Shopping"
|
|
235
259
|
msgstr "Commerces"
|
|
236
260
|
|
|
237
|
-
#: settings/base.py:
|
|
261
|
+
#: settings/base.py:331
|
|
238
262
|
msgid "Sport and Leisure"
|
|
239
263
|
msgstr "Sport et loisirs"
|
|
240
264
|
|
|
241
|
-
#: settings/base.py:
|
|
265
|
+
#: settings/base.py:332
|
|
242
266
|
msgid "Travel"
|
|
243
267
|
msgstr "Voyage"
|
|
244
268
|
|
|
245
|
-
#: settings/base.py:
|
|
269
|
+
#: settings/base.py:333
|
|
246
270
|
msgid "Transports"
|
|
247
271
|
msgstr "Transports"
|
|
248
272
|
|
|
249
|
-
#: settings/base.py:
|
|
273
|
+
#: settings/base.py:334
|
|
250
274
|
msgid "Tourism"
|
|
251
275
|
msgstr "Tourisme"
|
|
252
276
|
|
|
@@ -392,7 +416,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
392
416
|
msgstr "Et c'est <a href=\"%(repo_url)s\">open source</a> !"
|
|
393
417
|
|
|
394
418
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
395
|
-
#: templates/umap/user_dashboard.html:
|
|
419
|
+
#: templates/umap/user_dashboard.html:16
|
|
396
420
|
msgid "Create a map"
|
|
397
421
|
msgstr "Créer une carte"
|
|
398
422
|
|
|
@@ -490,11 +514,20 @@ msgstr "Mes cartes (%(count)s)"
|
|
|
490
514
|
msgid "My Maps"
|
|
491
515
|
msgstr "Mes cartes"
|
|
492
516
|
|
|
493
|
-
#: templates/umap/dashboard_menu.html:
|
|
517
|
+
#: templates/umap/dashboard_menu.html:11
|
|
518
|
+
#, python-format
|
|
519
|
+
msgid "My Templates (%(count)s)"
|
|
520
|
+
msgstr "Mes modèles (%(count)s)"
|
|
521
|
+
|
|
522
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
523
|
+
msgid "My Templates"
|
|
524
|
+
msgstr "Mes modèles"
|
|
525
|
+
|
|
526
|
+
#: templates/umap/dashboard_menu.html:17
|
|
494
527
|
msgid "My profile"
|
|
495
528
|
msgstr "Mon profil"
|
|
496
529
|
|
|
497
|
-
#: templates/umap/dashboard_menu.html:
|
|
530
|
+
#: templates/umap/dashboard_menu.html:20
|
|
498
531
|
msgid "My teams"
|
|
499
532
|
msgstr "Mes équipes"
|
|
500
533
|
|
|
@@ -510,10 +543,18 @@ msgstr "Naviguer dans les cartes"
|
|
|
510
543
|
msgid "You are logged in. Continuing..."
|
|
511
544
|
msgstr "Vous êtes maintenant identifié. Merci de patienter..."
|
|
512
545
|
|
|
513
|
-
#: templates/umap/map_list.html:
|
|
546
|
+
#: templates/umap/map_list.html:15
|
|
547
|
+
msgid "template"
|
|
548
|
+
msgstr "modèle"
|
|
549
|
+
|
|
550
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
514
551
|
msgid "by"
|
|
515
552
|
msgstr "par"
|
|
516
553
|
|
|
554
|
+
#: templates/umap/map_list.html:22
|
|
555
|
+
msgid "See the template"
|
|
556
|
+
msgstr "Voir le modèle"
|
|
557
|
+
|
|
517
558
|
#: templates/umap/map_list.html:22
|
|
518
559
|
msgid "See the map"
|
|
519
560
|
msgstr "Voir la carte"
|
|
@@ -550,7 +591,7 @@ msgstr "Propriétaire"
|
|
|
550
591
|
msgid "Actions"
|
|
551
592
|
msgstr "Actions"
|
|
552
593
|
|
|
553
|
-
#: templates/umap/map_table.html:
|
|
594
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
554
595
|
msgid "Open preview"
|
|
555
596
|
msgstr "Ouvrir l'aperçu"
|
|
556
597
|
|
|
@@ -678,7 +719,7 @@ msgstr[0] "%(count)s carte trouvée:"
|
|
|
678
719
|
msgstr[1] "%(count)s cartes trouvées:"
|
|
679
720
|
msgstr[2] "%(count)s cartes trouvées :"
|
|
680
721
|
|
|
681
|
-
#: templates/umap/search.html:30
|
|
722
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
682
723
|
msgid "No map found."
|
|
683
724
|
msgstr "Aucune carte trouvée."
|
|
684
725
|
|
|
@@ -733,20 +774,20 @@ msgstr "Supprimer cette équipe"
|
|
|
733
774
|
msgid "Add user"
|
|
734
775
|
msgstr "Ajouter un membre"
|
|
735
776
|
|
|
736
|
-
#: templates/umap/user_dashboard.html:
|
|
777
|
+
#: templates/umap/user_dashboard.html:10
|
|
737
778
|
msgid "Search my maps"
|
|
738
779
|
msgstr "Chercher dans mes cartes"
|
|
739
780
|
|
|
740
|
-
#: templates/umap/user_dashboard.html:
|
|
741
|
-
msgid "Map’s
|
|
742
|
-
msgstr "
|
|
781
|
+
#: templates/umap/user_dashboard.html:11
|
|
782
|
+
msgid "Map’s name"
|
|
783
|
+
msgstr "Nom de la carte"
|
|
743
784
|
|
|
744
|
-
#: templates/umap/user_dashboard.html:
|
|
785
|
+
#: templates/umap/user_dashboard.html:12
|
|
745
786
|
#, python-format
|
|
746
787
|
msgid "Download %(count)s maps"
|
|
747
788
|
msgstr "Télécharger %(count)s cartes"
|
|
748
789
|
|
|
749
|
-
#: templates/umap/user_dashboard.html:
|
|
790
|
+
#: templates/umap/user_dashboard.html:15
|
|
750
791
|
msgid "You have no map yet."
|
|
751
792
|
msgstr "Vous n'avez pas encore de carte."
|
|
752
793
|
|
|
@@ -762,70 +803,95 @@ msgstr "Membres"
|
|
|
762
803
|
msgid "New team"
|
|
763
804
|
msgstr "Nouvelle équipe"
|
|
764
805
|
|
|
765
|
-
#:
|
|
806
|
+
#: templates/umap/user_templates.html:10
|
|
807
|
+
msgid "Search my templates"
|
|
808
|
+
msgstr "Chercher dans mes modèles"
|
|
809
|
+
|
|
810
|
+
#: templates/umap/user_templates.html:11
|
|
811
|
+
msgid "Template’s name"
|
|
812
|
+
msgstr "Nom du modèle"
|
|
813
|
+
|
|
814
|
+
#: templates/umap/user_templates.html:12
|
|
815
|
+
#, python-format
|
|
816
|
+
msgid "Download %(count)s templates"
|
|
817
|
+
msgstr "Télécharger %(count)s modèles"
|
|
818
|
+
|
|
819
|
+
#: templates/umap/user_templates.html:15
|
|
820
|
+
msgid "You have no template yet."
|
|
821
|
+
msgstr "Aucun modèle."
|
|
822
|
+
|
|
823
|
+
#: templates/umap/user_templates.html:16
|
|
824
|
+
msgid "Create a template"
|
|
825
|
+
msgstr "Créer un modèle"
|
|
826
|
+
|
|
827
|
+
#: templates/umap/user_templates.html:17
|
|
828
|
+
msgid "No template found."
|
|
829
|
+
msgstr "Aucun modèle trouvé."
|
|
830
|
+
|
|
831
|
+
#: views.py:233
|
|
766
832
|
msgid "Cannot delete a team with more than one member"
|
|
767
833
|
msgstr "Impossible de supprimer une équipe ayant plus d'un membre"
|
|
768
834
|
|
|
769
|
-
#: views.py:
|
|
835
|
+
#: views.py:237
|
|
770
836
|
#, python-format
|
|
771
837
|
msgid "Team “%(name)s” has been deleted"
|
|
772
838
|
msgstr "L'équipe «%(name)s» a été supprimée"
|
|
773
839
|
|
|
774
|
-
#: views.py:
|
|
840
|
+
#: views.py:463
|
|
775
841
|
msgid "View the map"
|
|
776
842
|
msgstr "Voir la carte"
|
|
777
843
|
|
|
778
|
-
#: views.py:
|
|
844
|
+
#: views.py:864
|
|
779
845
|
msgid "See full screen"
|
|
780
846
|
msgstr "Plein écran"
|
|
781
847
|
|
|
782
|
-
#: views.py:
|
|
848
|
+
#: views.py:1007
|
|
783
849
|
msgid "Map editors updated with success!"
|
|
784
850
|
msgstr "Éditeurs de la carte mis à jour !"
|
|
785
851
|
|
|
786
|
-
#: views.py:
|
|
852
|
+
#: views.py:1043
|
|
787
853
|
#, python-format
|
|
788
854
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
789
855
|
msgstr "Le lien d'édition uMap pour votre carte : %(map_name)s"
|
|
790
856
|
|
|
791
|
-
#: views.py:
|
|
857
|
+
#: views.py:1046
|
|
792
858
|
#, python-format
|
|
793
859
|
msgid "Here is your secret edit link: %(link)s"
|
|
794
860
|
msgstr "Voici votre lien d'édition secret : %(link)s"
|
|
795
861
|
|
|
796
|
-
#: views.py:
|
|
862
|
+
#: views.py:1053
|
|
797
863
|
#, python-format
|
|
798
864
|
msgid "Can't send email to %(email)s"
|
|
799
865
|
msgstr "Impossible d'envoyer un courriel vers %(email)s"
|
|
800
866
|
|
|
801
|
-
#: views.py:
|
|
867
|
+
#: views.py:1056
|
|
802
868
|
#, python-format
|
|
803
869
|
msgid "Email sent to %(email)s"
|
|
804
870
|
msgstr "Courriel envoyé à %(email)s"
|
|
805
871
|
|
|
806
|
-
#: views.py:
|
|
872
|
+
#: views.py:1067
|
|
807
873
|
msgid "Only its owner can delete the map."
|
|
808
874
|
msgstr "Seul le créateur de la carte peut la supprimer."
|
|
809
875
|
|
|
810
|
-
#: views.py:
|
|
876
|
+
#: views.py:1073
|
|
811
877
|
msgid "Map successfully deleted."
|
|
812
878
|
msgstr "La carte a bien été supprimée."
|
|
813
879
|
|
|
814
|
-
#: views.py:
|
|
880
|
+
#: views.py:1099
|
|
815
881
|
#, python-format
|
|
816
882
|
msgid ""
|
|
817
883
|
"Your map has been cloned! If you want to edit this map from another "
|
|
818
884
|
"computer, please use this link: %(anonymous_url)s"
|
|
819
885
|
msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
|
|
820
886
|
|
|
821
|
-
#: views.py:
|
|
887
|
+
#: views.py:1104
|
|
822
888
|
msgid "Congratulations, your map has been cloned!"
|
|
823
889
|
msgstr "Votre carte a été dupliquée !"
|
|
824
890
|
|
|
825
|
-
#: views.py:
|
|
891
|
+
#: views.py:1358
|
|
826
892
|
msgid "Layer successfully deleted."
|
|
827
893
|
msgstr "Calque supprimé."
|
|
828
894
|
|
|
829
|
-
#: views.py:
|
|
895
|
+
#: views.py:1380
|
|
830
896
|
msgid "Permissions updated with success!"
|
|
831
897
|
msgstr "Les permissions ont bien été modifiées !"
|
|
Binary file
|