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.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +1 -0
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {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-
|
|
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:
|
|
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:
|
|
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
|
+
#: models.py:54 models.py:73
|
|
54
54
|
msgid "name"
|
|
55
55
|
msgstr "nom"
|
|
56
56
|
|
|
57
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
77
|
+
#: models.py:167 models.py:424
|
|
74
78
|
msgid "Everyone"
|
|
75
79
|
msgstr "Tout le monde"
|
|
76
80
|
|
|
77
|
-
#: models.py:
|
|
78
|
-
msgid "Editors only"
|
|
79
|
-
msgstr "Éditeurs
|
|
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:
|
|
85
|
+
#: models.py:169 models.py:426
|
|
82
86
|
msgid "Owner only"
|
|
83
87
|
msgstr "Propriétaire uniquement"
|
|
84
88
|
|
|
85
|
-
#: models.py:
|
|
89
|
+
#: models.py:172
|
|
86
90
|
msgid "Everyone (public)"
|
|
87
91
|
msgstr "Tout le monde (public)"
|
|
88
92
|
|
|
89
|
-
#: models.py:
|
|
93
|
+
#: models.py:173
|
|
90
94
|
msgid "Anyone with link"
|
|
91
95
|
msgstr "Quiconque a le lien"
|
|
92
96
|
|
|
93
|
-
#: models.py:
|
|
97
|
+
#: models.py:175
|
|
94
98
|
msgid "Blocked"
|
|
95
99
|
msgstr "Bloquée"
|
|
96
100
|
|
|
97
|
-
#: models.py:
|
|
101
|
+
#: models.py:178
|
|
98
102
|
msgid "center"
|
|
99
103
|
msgstr "centre"
|
|
100
104
|
|
|
101
|
-
#: models.py:
|
|
105
|
+
#: models.py:179
|
|
102
106
|
msgid "zoom"
|
|
103
107
|
msgstr "zoom"
|
|
104
108
|
|
|
105
|
-
#: models.py:
|
|
109
|
+
#: models.py:181
|
|
106
110
|
msgid "locate"
|
|
107
111
|
msgstr "géolocaliser"
|
|
108
112
|
|
|
109
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
121
|
+
#: models.py:186
|
|
118
122
|
msgid "licence"
|
|
119
123
|
msgstr "licence"
|
|
120
124
|
|
|
121
|
-
#: models.py:
|
|
125
|
+
#: models.py:197
|
|
122
126
|
msgid "owner"
|
|
123
127
|
msgstr "créateur"
|
|
124
128
|
|
|
125
|
-
#: models.py:
|
|
129
|
+
#: models.py:201
|
|
126
130
|
msgid "editors"
|
|
127
131
|
msgstr "éditeurs"
|
|
128
132
|
|
|
129
|
-
#: models.py:
|
|
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:
|
|
141
|
+
#: models.py:218
|
|
134
142
|
msgid "share status"
|
|
135
143
|
msgstr "qui a accès"
|
|
136
144
|
|
|
137
|
-
#: models.py:
|
|
145
|
+
#: models.py:221 models.py:442
|
|
138
146
|
msgid "settings"
|
|
139
147
|
msgstr "réglages"
|
|
140
148
|
|
|
141
|
-
#: models.py:
|
|
149
|
+
#: models.py:364
|
|
142
150
|
msgid "Clone of"
|
|
143
151
|
msgstr "Clone de"
|
|
144
152
|
|
|
145
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
217
|
+
#: templates/registration/login.html:41
|
|
218
218
|
msgid "Username"
|
|
219
219
|
msgstr "Nom d'utilisateur"
|
|
220
220
|
|
|
221
|
-
#: templates/registration/login.html:
|
|
221
|
+
#: templates/registration/login.html:44
|
|
222
222
|
msgid "Password"
|
|
223
223
|
msgstr "Mot de passe"
|
|
224
224
|
|
|
225
|
-
#: templates/registration/login.html:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
274
|
-
#: templates/umap/user_dashboard.html:
|
|
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:
|
|
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:
|
|
283
|
-
#: templates/umap/components/alerts/alert.html:
|
|
284
|
-
#: templates/umap/components/alerts/alert.html:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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/
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
392
|
+
#: templates/umap/map_list.html:18
|
|
360
393
|
msgid "More"
|
|
361
394
|
msgstr "Plus"
|
|
362
395
|
|
|
363
|
-
#: templates/umap/map_table.html:
|
|
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:
|
|
400
|
+
#: templates/umap/map_table.html:11
|
|
368
401
|
msgid "Preview"
|
|
369
402
|
msgstr "Aperçu"
|
|
370
403
|
|
|
371
|
-
#: templates/umap/map_table.html:
|
|
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:
|
|
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:
|
|
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:
|
|
416
|
+
#: templates/umap/map_table.html:23
|
|
384
417
|
msgid "Owner"
|
|
385
418
|
msgstr "Propriétaire"
|
|
386
419
|
|
|
387
|
-
#: templates/umap/map_table.html:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
449
|
+
#: templates/umap/map_table.html:117
|
|
416
450
|
msgid "first"
|
|
417
451
|
msgstr "début"
|
|
418
452
|
|
|
419
|
-
#: templates/umap/map_table.html:
|
|
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:
|
|
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:
|
|
462
|
+
#: templates/umap/map_table.html:131
|
|
429
463
|
msgid "next"
|
|
430
464
|
msgstr "suivante"
|
|
431
465
|
|
|
432
|
-
#: templates/umap/map_table.html:
|
|
466
|
+
#: templates/umap/map_table.html:132
|
|
433
467
|
msgid "last"
|
|
434
468
|
msgstr "fin"
|
|
435
469
|
|
|
436
|
-
#: templates/umap/map_table.html:
|
|
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:
|
|
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:
|
|
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:
|
|
484
|
+
#: templates/umap/navigation.html:14
|
|
451
485
|
msgid "Starred maps"
|
|
452
486
|
msgstr "Favoris"
|
|
453
487
|
|
|
454
|
-
#: templates/umap/navigation.html:
|
|
488
|
+
#: templates/umap/navigation.html:18
|
|
455
489
|
msgid "Log in"
|
|
456
490
|
msgstr "Connexion"
|
|
457
491
|
|
|
458
|
-
#: templates/umap/navigation.html:
|
|
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:
|
|
496
|
+
#: templates/umap/navigation.html:22
|
|
463
497
|
msgid "About"
|
|
464
498
|
msgstr "À propos"
|
|
465
499
|
|
|
466
|
-
#: templates/umap/navigation.html:
|
|
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:
|
|
504
|
+
#: templates/umap/navigation.html:34
|
|
475
505
|
msgid "Log out"
|
|
476
506
|
msgstr "Déconnexion"
|
|
477
507
|
|
|
478
|
-
#: templates/umap/password_change.html:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
562
|
+
#: templates/umap/search_bar.html:15
|
|
533
563
|
msgid "Search"
|
|
534
564
|
msgstr "Chercher"
|
|
535
565
|
|
|
536
|
-
#: templates/umap/
|
|
537
|
-
|
|
538
|
-
|
|
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/
|
|
571
|
+
#: templates/umap/team_detail.html:22
|
|
541
572
|
#, python-format
|
|
542
|
-
msgid "
|
|
543
|
-
msgstr "
|
|
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/
|
|
546
|
-
msgid "
|
|
547
|
-
msgstr "
|
|
576
|
+
#: templates/umap/team_form.html:24
|
|
577
|
+
msgid "Delete this team"
|
|
578
|
+
msgstr "Supprimer cette équipe"
|
|
548
579
|
|
|
549
|
-
#: templates/umap/
|
|
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:
|
|
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:
|
|
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
|
-
#:
|
|
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:
|
|
622
|
+
#: views.py:824
|
|
567
623
|
msgid "See full screen"
|
|
568
624
|
msgstr "Plein écran"
|
|
569
625
|
|
|
570
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
654
|
+
#: views.py:1016
|
|
599
655
|
msgid "Map successfully deleted."
|
|
600
656
|
msgstr "La bien été supprimée."
|
|
601
657
|
|
|
602
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
669
|
+
#: views.py:1282
|
|
614
670
|
msgid "Layer successfully deleted."
|
|
615
671
|
msgstr "Calque supprimé."
|
|
616
672
|
|
|
617
|
-
#: views.py:
|
|
673
|
+
#: views.py:1304
|
|
618
674
|
msgid "Permissions updated with success!"
|
|
619
675
|
msgstr "Les permissions ont bien été modifiées !"
|