umap-project 2.9.3__py3-none-any.whl → 3.0.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/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +128 -52
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +128 -52
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +21 -29
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +11 -6
- umap/static/umap/locale/am_ET.json +11 -6
- umap/static/umap/locale/ar.js +11 -6
- umap/static/umap/locale/ar.json +11 -6
- umap/static/umap/locale/ast.js +11 -6
- umap/static/umap/locale/ast.json +11 -6
- umap/static/umap/locale/bg.js +11 -6
- umap/static/umap/locale/bg.json +11 -6
- umap/static/umap/locale/br.js +12 -7
- umap/static/umap/locale/br.json +12 -7
- umap/static/umap/locale/ca.js +11 -6
- umap/static/umap/locale/ca.json +11 -6
- umap/static/umap/locale/cs_CZ.js +11 -6
- umap/static/umap/locale/cs_CZ.json +11 -6
- umap/static/umap/locale/da.js +11 -6
- umap/static/umap/locale/da.json +11 -6
- umap/static/umap/locale/de.js +47 -42
- umap/static/umap/locale/de.json +47 -42
- umap/static/umap/locale/el.js +11 -6
- umap/static/umap/locale/el.json +11 -6
- umap/static/umap/locale/en.js +11 -6
- umap/static/umap/locale/en.json +11 -6
- umap/static/umap/locale/en_US.json +11 -6
- umap/static/umap/locale/es.js +11 -6
- umap/static/umap/locale/es.json +11 -6
- umap/static/umap/locale/et.js +11 -6
- umap/static/umap/locale/et.json +11 -6
- umap/static/umap/locale/eu.js +11 -6
- umap/static/umap/locale/eu.json +11 -6
- umap/static/umap/locale/fa_IR.js +11 -6
- umap/static/umap/locale/fa_IR.json +11 -6
- umap/static/umap/locale/fi.js +11 -6
- umap/static/umap/locale/fi.json +11 -6
- umap/static/umap/locale/fr.js +11 -6
- umap/static/umap/locale/fr.json +11 -6
- umap/static/umap/locale/gl.js +12 -7
- umap/static/umap/locale/gl.json +12 -7
- umap/static/umap/locale/he.js +11 -6
- umap/static/umap/locale/he.json +11 -6
- umap/static/umap/locale/hr.js +11 -6
- umap/static/umap/locale/hr.json +11 -6
- umap/static/umap/locale/hu.js +25 -20
- umap/static/umap/locale/hu.json +25 -20
- umap/static/umap/locale/id.js +11 -6
- umap/static/umap/locale/id.json +11 -6
- umap/static/umap/locale/is.js +151 -146
- umap/static/umap/locale/is.json +151 -146
- umap/static/umap/locale/it.js +11 -6
- umap/static/umap/locale/it.json +11 -6
- umap/static/umap/locale/ja.js +11 -6
- umap/static/umap/locale/ja.json +11 -6
- umap/static/umap/locale/ko.js +11 -6
- umap/static/umap/locale/ko.json +11 -6
- umap/static/umap/locale/lt.js +11 -6
- umap/static/umap/locale/lt.json +11 -6
- umap/static/umap/locale/ms.js +11 -6
- umap/static/umap/locale/ms.json +11 -6
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +11 -6
- umap/static/umap/locale/no.json +11 -6
- umap/static/umap/locale/pl.js +11 -6
- umap/static/umap/locale/pl.json +11 -6
- umap/static/umap/locale/pl_PL.json +11 -6
- umap/static/umap/locale/pt.js +11 -6
- umap/static/umap/locale/pt.json +11 -6
- umap/static/umap/locale/pt_BR.js +11 -6
- umap/static/umap/locale/pt_BR.json +11 -6
- umap/static/umap/locale/pt_PT.js +11 -6
- umap/static/umap/locale/pt_PT.json +11 -6
- umap/static/umap/locale/ro.js +11 -6
- umap/static/umap/locale/ro.json +11 -6
- umap/static/umap/locale/ru.js +11 -6
- umap/static/umap/locale/ru.json +11 -6
- umap/static/umap/locale/sk_SK.js +11 -6
- umap/static/umap/locale/sk_SK.json +11 -6
- umap/static/umap/locale/sl.js +11 -6
- umap/static/umap/locale/sl.json +11 -6
- umap/static/umap/locale/sr.js +11 -6
- umap/static/umap/locale/sr.json +11 -6
- umap/static/umap/locale/sv.js +11 -6
- umap/static/umap/locale/sv.json +11 -6
- umap/static/umap/locale/th_TH.js +11 -6
- umap/static/umap/locale/th_TH.json +11 -6
- umap/static/umap/locale/tr.js +11 -6
- umap/static/umap/locale/tr.json +11 -6
- umap/static/umap/locale/uk_UA.js +11 -6
- umap/static/umap/locale/uk_UA.json +11 -6
- umap/static/umap/locale/vi.js +11 -6
- umap/static/umap/locale/vi.json +11 -6
- umap/static/umap/locale/vi_VN.json +11 -6
- umap/static/umap/locale/zh.js +11 -6
- umap/static/umap/locale/zh.json +11 -6
- umap/static/umap/locale/zh_CN.json +11 -6
- umap/static/umap/locale/zh_TW.Big5.json +11 -6
- umap/static/umap/locale/zh_TW.js +19 -14
- umap/static/umap/locale/zh_TW.json +19 -14
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/RECORD +206 -208
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.0.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-
|
|
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:
|
|
57
|
+
#: models.py:61 models.py:80
|
|
58
58
|
msgid "name"
|
|
59
59
|
msgstr "nom"
|
|
60
60
|
|
|
61
|
-
#: models.py:
|
|
61
|
+
#: models.py:63 models.py:493
|
|
62
62
|
msgid "description"
|
|
63
63
|
msgstr "description"
|
|
64
64
|
|
|
65
|
-
#: models.py:
|
|
65
|
+
#: models.py:111
|
|
66
66
|
msgid "details"
|
|
67
67
|
msgstr "détails"
|
|
68
68
|
|
|
69
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
89
|
+
#: models.py:180 models.py:481
|
|
90
90
|
msgid "Everyone"
|
|
91
91
|
msgstr "Tout le monde"
|
|
92
92
|
|
|
93
|
-
#: models.py:
|
|
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:
|
|
97
|
+
#: models.py:182 models.py:483
|
|
98
98
|
msgid "Owner only"
|
|
99
99
|
msgstr "Propriétaire uniquement"
|
|
100
100
|
|
|
101
|
-
#: models.py:
|
|
101
|
+
#: models.py:185
|
|
102
102
|
msgid "Draft (private)"
|
|
103
103
|
msgstr "Brouillon (privé)"
|
|
104
104
|
|
|
105
|
-
#: models.py:
|
|
105
|
+
#: models.py:186
|
|
106
106
|
msgid "Everyone (public)"
|
|
107
107
|
msgstr "Tout le monde (public)"
|
|
108
108
|
|
|
109
|
-
#: models.py:
|
|
109
|
+
#: models.py:189
|
|
110
110
|
msgid "Anyone with link"
|
|
111
111
|
msgstr "Quiconque a le lien"
|
|
112
112
|
|
|
113
|
-
#: models.py:
|
|
113
|
+
#: models.py:191
|
|
114
114
|
msgid "Blocked"
|
|
115
115
|
msgstr "Bloquée"
|
|
116
116
|
|
|
117
|
-
#: models.py:
|
|
117
|
+
#: models.py:192 models.py:477
|
|
118
118
|
msgid "Deleted"
|
|
119
119
|
msgstr "Supprimé"
|
|
120
120
|
|
|
121
|
-
#: models.py:
|
|
121
|
+
#: models.py:195
|
|
122
122
|
msgid "center"
|
|
123
123
|
msgstr "centre"
|
|
124
124
|
|
|
125
|
-
#: models.py:
|
|
125
|
+
#: models.py:196
|
|
126
126
|
msgid "zoom"
|
|
127
127
|
msgstr "zoom"
|
|
128
128
|
|
|
129
|
-
#: models.py:
|
|
129
|
+
#: models.py:198
|
|
130
130
|
msgid "locate"
|
|
131
131
|
msgstr "géolocaliser"
|
|
132
132
|
|
|
133
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
141
|
+
#: models.py:203
|
|
142
142
|
msgid "licence"
|
|
143
143
|
msgstr "licence"
|
|
144
144
|
|
|
145
|
-
#: models.py:
|
|
145
|
+
#: models.py:214
|
|
146
146
|
msgid "owner"
|
|
147
147
|
msgstr "créateur"
|
|
148
148
|
|
|
149
|
-
#: models.py:
|
|
149
|
+
#: models.py:218
|
|
150
150
|
msgid "editors"
|
|
151
151
|
msgstr "éditeurs"
|
|
152
152
|
|
|
153
|
-
#: models.py:
|
|
153
|
+
#: models.py:224
|
|
154
154
|
msgid "team"
|
|
155
155
|
msgstr "équipe"
|
|
156
156
|
|
|
157
|
-
#: models.py:
|
|
157
|
+
#: models.py:230 models.py:509
|
|
158
158
|
msgid "edit status"
|
|
159
159
|
msgstr "statut de modification"
|
|
160
160
|
|
|
161
|
-
#: models.py:
|
|
161
|
+
#: models.py:235 models.py:514
|
|
162
162
|
msgid "share status"
|
|
163
163
|
msgstr "qui a accès"
|
|
164
164
|
|
|
165
|
-
#: models.py:
|
|
165
|
+
#: models.py:238 models.py:504
|
|
166
166
|
msgid "settings"
|
|
167
167
|
msgstr "réglages"
|
|
168
168
|
|
|
169
|
-
#: models.py:
|
|
169
|
+
#: models.py:410
|
|
170
170
|
msgid "Clone of"
|
|
171
171
|
msgstr "Clone de"
|
|
172
172
|
|
|
173
|
-
#: models.py:
|
|
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:
|
|
177
|
+
#: models.py:499
|
|
178
178
|
msgid "display on load"
|
|
179
179
|
msgstr "afficher au chargement."
|
|
180
180
|
|
|
181
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
770
|
+
#: views.py:449
|
|
695
771
|
msgid "View the map"
|
|
696
772
|
msgstr "Voir la carte"
|
|
697
773
|
|
|
698
|
-
#: views.py:
|
|
774
|
+
#: views.py:845
|
|
699
775
|
msgid "See full screen"
|
|
700
776
|
msgstr "Plein écran"
|
|
701
777
|
|
|
702
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
821
|
+
#: views.py:1336
|
|
746
822
|
msgid "Layer successfully deleted."
|
|
747
823
|
msgstr "Calque supprimé."
|
|
748
824
|
|
|
749
|
-
#: views.py:
|
|
825
|
+
#: views.py:1358
|
|
750
826
|
msgid "Permissions updated with success!"
|
|
751
827
|
msgstr "Les permissions ont bien été modifiées !"
|
|
Binary file
|