geovisio 2.5.0__py3-none-any.whl → 2.7.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.
- geovisio/__init__.py +38 -8
- geovisio/admin_cli/__init__.py +2 -2
- geovisio/admin_cli/db.py +8 -0
- geovisio/config_app.py +64 -0
- geovisio/db_migrations.py +24 -3
- geovisio/templates/main.html +14 -14
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +667 -0
- geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.po +730 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/es/LC_MESSAGES/messages.po +778 -0
- geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fi/LC_MESSAGES/messages.po +589 -0
- geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.po +814 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ko/LC_MESSAGES/messages.po +685 -0
- geovisio/translations/messages.pot +686 -0
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/nl/LC_MESSAGES/messages.po +594 -0
- geovisio/utils/__init__.py +1 -1
- geovisio/utils/auth.py +50 -11
- geovisio/utils/db.py +65 -0
- geovisio/utils/excluded_areas.py +83 -0
- geovisio/utils/extent.py +30 -0
- geovisio/utils/fields.py +1 -1
- geovisio/utils/filesystems.py +0 -1
- geovisio/utils/link.py +14 -0
- geovisio/utils/params.py +20 -0
- geovisio/utils/pictures.py +94 -69
- geovisio/utils/reports.py +171 -0
- geovisio/utils/sequences.py +288 -126
- geovisio/utils/tokens.py +37 -42
- geovisio/utils/upload_set.py +654 -0
- geovisio/web/auth.py +50 -37
- geovisio/web/collections.py +305 -319
- geovisio/web/configuration.py +14 -0
- geovisio/web/docs.py +288 -12
- geovisio/web/excluded_areas.py +377 -0
- geovisio/web/items.py +203 -151
- geovisio/web/map.py +322 -106
- geovisio/web/params.py +69 -26
- geovisio/web/pictures.py +14 -31
- geovisio/web/reports.py +399 -0
- geovisio/web/rss.py +13 -7
- geovisio/web/stac.py +129 -121
- geovisio/web/tokens.py +105 -112
- geovisio/web/upload_set.py +768 -0
- geovisio/web/users.py +100 -73
- geovisio/web/utils.py +38 -9
- geovisio/workers/runner_pictures.py +278 -183
- geovisio-2.7.0.dist-info/METADATA +95 -0
- geovisio-2.7.0.dist-info/RECORD +66 -0
- geovisio-2.5.0.dist-info/METADATA +0 -115
- geovisio-2.5.0.dist-info/RECORD +0 -41
- {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/LICENSE +0 -0
- {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,814 @@
|
|
|
1
|
+
# Translations template for PROJECT.
|
|
2
|
+
# Copyright (C) 2024 ORGANIZATION
|
|
3
|
+
# This file is distributed under the same license as the PROJECT project.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
|
|
5
|
+
#
|
|
6
|
+
msgid ""
|
|
7
|
+
msgstr ""
|
|
8
|
+
"Project-Id-Version: PROJECT VERSION\n"
|
|
9
|
+
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
|
10
|
+
"POT-Creation-Date: 2024-06-25 17:01+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2024-10-03 21:07+0000\n"
|
|
12
|
+
"Last-Translator: zorun <panoramax@bitsofnetworks.org>\n"
|
|
13
|
+
"Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/api/"
|
|
14
|
+
"fr/>\n"
|
|
15
|
+
"Language: fr\n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
20
|
+
"X-Generator: Weblate 5.4.3\n"
|
|
21
|
+
"Generated-By: Babel 2.15.0\n"
|
|
22
|
+
|
|
23
|
+
#: geovisio/templates/main.html:45
|
|
24
|
+
msgid "Simple 360° geolocated pictures hosting"
|
|
25
|
+
msgstr "Hébergement facile de photos géolocalisées"
|
|
26
|
+
|
|
27
|
+
#: geovisio/templates/main.html:47
|
|
28
|
+
msgid "Full page version"
|
|
29
|
+
msgstr "Version pleine page"
|
|
30
|
+
|
|
31
|
+
#: geovisio/templates/main.html:51
|
|
32
|
+
msgid "Viewer"
|
|
33
|
+
msgstr "Visionneuse"
|
|
34
|
+
|
|
35
|
+
#: geovisio/templates/main.html:52
|
|
36
|
+
msgid "Embed pre-configured viewer"
|
|
37
|
+
msgstr "Embarquer la visionneuse pré-configurée"
|
|
38
|
+
|
|
39
|
+
#: geovisio/templates/main.html:53
|
|
40
|
+
msgid "Easiest way to have a working GeoVisio viewer on your website"
|
|
41
|
+
msgstr ""
|
|
42
|
+
"La méthode la plus simple pour embarquer la visionneuse GeoVisio sur votre "
|
|
43
|
+
"site web"
|
|
44
|
+
|
|
45
|
+
#: geovisio/templates/main.html:59
|
|
46
|
+
msgid "Use JS library"
|
|
47
|
+
msgstr "Utiliser la bibliothèque JS"
|
|
48
|
+
|
|
49
|
+
#: geovisio/templates/main.html:60
|
|
50
|
+
msgid "A completely configurable viewer for your website"
|
|
51
|
+
msgstr "Une visionneuse entièrement configurable pour votre site web"
|
|
52
|
+
|
|
53
|
+
#: geovisio/templates/main.html:82
|
|
54
|
+
msgid "Links"
|
|
55
|
+
msgstr "Liens"
|
|
56
|
+
|
|
57
|
+
#: geovisio/templates/main.html:84
|
|
58
|
+
msgid "Pictures viewer"
|
|
59
|
+
msgstr "Visionneuse photos"
|
|
60
|
+
|
|
61
|
+
#: geovisio/templates/main.html:86
|
|
62
|
+
msgid "API docs"
|
|
63
|
+
msgstr "Doc de l'API"
|
|
64
|
+
|
|
65
|
+
#: geovisio/templates/main.html:88
|
|
66
|
+
msgid "JS library docs"
|
|
67
|
+
msgstr "Doc de la bibliothèque JS"
|
|
68
|
+
|
|
69
|
+
#: geovisio/templates/main.html:90
|
|
70
|
+
msgid "Repositories"
|
|
71
|
+
msgstr "Dépôts logiciels"
|
|
72
|
+
|
|
73
|
+
#: geovisio/templates/viewer.html:22
|
|
74
|
+
msgid "You need to enable JavaScript to run this app."
|
|
75
|
+
msgstr "Vous devez activer JavaScript pour exécuter cette application."
|
|
76
|
+
|
|
77
|
+
#: geovisio/utils/auth.py:164
|
|
78
|
+
msgid "Authentication is mandatory"
|
|
79
|
+
msgstr "L'authentification est obligatoire"
|
|
80
|
+
|
|
81
|
+
#: geovisio/utils/auth.py:292
|
|
82
|
+
msgid "Only Bearer token are supported"
|
|
83
|
+
msgstr "Seul le « Bearer Token » est supporté"
|
|
84
|
+
|
|
85
|
+
#: geovisio/utils/pictures.py:302
|
|
86
|
+
#, python-format
|
|
87
|
+
msgid ""
|
|
88
|
+
"Invalid '%(format)s' format for image, only the following formats are "
|
|
89
|
+
"available: %(allowed_formats)s"
|
|
90
|
+
msgstr ""
|
|
91
|
+
"Format d'image \"%(format)s\" invalide, seuls les formats suivants sont "
|
|
92
|
+
"autorisés : %(allowed_formats)s"
|
|
93
|
+
|
|
94
|
+
#: geovisio/utils/pictures.py:418
|
|
95
|
+
msgid "Picture can't be found, you may check its ID"
|
|
96
|
+
msgstr "Photo introuvable, vérifiez son identifiant"
|
|
97
|
+
|
|
98
|
+
#: geovisio/utils/pictures.py:421
|
|
99
|
+
msgid "Picture is not available (either hidden by admin or processing)"
|
|
100
|
+
msgstr "Photo non-disponible (soit cachée, soit en cours de traitement)"
|
|
101
|
+
|
|
102
|
+
#: geovisio/utils/pictures.py:429
|
|
103
|
+
msgid "HD Picture file is not available"
|
|
104
|
+
msgstr "Fichier HD de la photo non disponible"
|
|
105
|
+
|
|
106
|
+
#: geovisio/utils/pictures.py:448
|
|
107
|
+
msgid "Picture derivates file are not available"
|
|
108
|
+
msgstr "Fichiers dérivés de la photo non disponibles"
|
|
109
|
+
|
|
110
|
+
#: geovisio/utils/pictures.py:465 geovisio/web/pictures.py:59
|
|
111
|
+
#: geovisio/web/pictures.py:108 geovisio/web/pictures.py:226
|
|
112
|
+
msgid "Unable to read picture on filesystem"
|
|
113
|
+
msgstr "Lecture de la photo sur le système de fichiers impossible"
|
|
114
|
+
|
|
115
|
+
#: geovisio/utils/sequences.py:371
|
|
116
|
+
msgid ""
|
|
117
|
+
"Sort by file date is not possible on this sequence (no file date "
|
|
118
|
+
"information available on pictures)"
|
|
119
|
+
msgstr ""
|
|
120
|
+
"Tri par date de fichier indisponible sur cette séquence (pas d'info de date "
|
|
121
|
+
"de fichier sur les photos)"
|
|
122
|
+
|
|
123
|
+
#: geovisio/utils/sequences.py:390
|
|
124
|
+
#, python-format
|
|
125
|
+
msgid ""
|
|
126
|
+
"Sort using %(sort)s is not possible on this sequence, picture %(pic)s is "
|
|
127
|
+
"missing mandatory metadata"
|
|
128
|
+
msgstr ""
|
|
129
|
+
"Tri par %(sort)s indisponible sur cette séquence, des attributs obligatoires "
|
|
130
|
+
"sont manquants sur la photo %(pic)s"
|
|
131
|
+
|
|
132
|
+
#: geovisio/utils/tokens.py:43
|
|
133
|
+
msgid "JWT token signature does not match"
|
|
134
|
+
msgstr "La signature du jeton JWT ne correspond pas"
|
|
135
|
+
|
|
136
|
+
#: geovisio/utils/tokens.py:59
|
|
137
|
+
msgid "Token does not exist anymore"
|
|
138
|
+
msgstr "Jeton indisponible"
|
|
139
|
+
|
|
140
|
+
#: geovisio/utils/tokens.py:63
|
|
141
|
+
msgid ""
|
|
142
|
+
"Token not yet claimed, this token cannot be used yet. Either claim this "
|
|
143
|
+
"token or generate a new one"
|
|
144
|
+
msgstr ""
|
|
145
|
+
"Jeton pas encore réclamé, il ne peut pas être utilisé pour l'instant. Vous "
|
|
146
|
+
"pouvez soit le réclamer (claim), soit en générer un nouveau"
|
|
147
|
+
|
|
148
|
+
#: geovisio/web/auth.py:62
|
|
149
|
+
msgid "Impossible to finish authentication flow"
|
|
150
|
+
msgstr "Impossible de finir le flux d'authentification"
|
|
151
|
+
|
|
152
|
+
#: geovisio/web/auth.py:66
|
|
153
|
+
msgid ""
|
|
154
|
+
"You can try to clear your cookies and retry. If the problem persists, "
|
|
155
|
+
"contact your instance administrator."
|
|
156
|
+
msgstr ""
|
|
157
|
+
"Vous pouvez tenter de supprimer vos cookies et réessayer. Si le problème "
|
|
158
|
+
"persiste, contactez l'administrateur de votre instance."
|
|
159
|
+
|
|
160
|
+
#: geovisio/web/collections.py:263
|
|
161
|
+
#, python-format
|
|
162
|
+
msgid "There is no collection created after %(d)s"
|
|
163
|
+
msgstr "Il n'y a pas de séquence créée après le %(d)s"
|
|
164
|
+
|
|
165
|
+
#: geovisio/web/collections.py:265
|
|
166
|
+
#, python-format
|
|
167
|
+
msgid "There is no collection created before %(d)s"
|
|
168
|
+
msgstr "Il n'y a pas de séquence créée avant le %(d)s"
|
|
169
|
+
|
|
170
|
+
#: geovisio/web/collections.py:371 geovisio/web/items.py:372
|
|
171
|
+
msgid "Collection doesn't exist"
|
|
172
|
+
msgstr "La collection n'existe pas"
|
|
173
|
+
|
|
174
|
+
#: geovisio/web/collections.py:431
|
|
175
|
+
msgid "Impossible to find a thumbnail for the collection"
|
|
176
|
+
msgstr "Impossible de trouver une miniature pour la séquence"
|
|
177
|
+
|
|
178
|
+
#: geovisio/web/collections.py:544 geovisio/web/items.py:1133
|
|
179
|
+
msgid ""
|
|
180
|
+
"Picture visibility parameter (visible) should be either unset, true or "
|
|
181
|
+
"false"
|
|
182
|
+
msgstr ""
|
|
183
|
+
"Le paramètre de visibilité de la photo (\"visible\") doit être soit vide, "
|
|
184
|
+
"\"true\" ou \"false\""
|
|
185
|
+
|
|
186
|
+
#: geovisio/web/collections.py:550
|
|
187
|
+
msgid ""
|
|
188
|
+
"Sequence title is not valid, should be a string with a max of 250 "
|
|
189
|
+
"characters"
|
|
190
|
+
msgstr ""
|
|
191
|
+
"Le titre de la séquence est invalide, ce doit être une chaîne de 250 "
|
|
192
|
+
"caractères maximum"
|
|
193
|
+
|
|
194
|
+
#: geovisio/web/collections.py:556
|
|
195
|
+
msgid "Sort order parameter is invalid"
|
|
196
|
+
msgstr "Le paramètre d'ordre de tri est invalide"
|
|
197
|
+
|
|
198
|
+
#: geovisio/web/collections.py:566
|
|
199
|
+
msgid ""
|
|
200
|
+
"Relative heading is not valid, should be an integer in degrees from -180 "
|
|
201
|
+
"to 180"
|
|
202
|
+
msgstr ""
|
|
203
|
+
"L'orientation relative est invalide, ce doit être un nombre entier de -180 à "
|
|
204
|
+
"180 degrés"
|
|
205
|
+
|
|
206
|
+
#: geovisio/web/collections.py:582
|
|
207
|
+
#, python-format
|
|
208
|
+
msgid "Sequence %(c)s wasn't found in database"
|
|
209
|
+
msgstr "La séquence %(c)s n'a pas été trouvée"
|
|
210
|
+
|
|
211
|
+
#: geovisio/web/collections.py:586 geovisio/web/collections.py:702
|
|
212
|
+
msgid "You're not authorized to edit this sequence"
|
|
213
|
+
msgstr "Vous n'avez pas la permission de modifier cette séquence"
|
|
214
|
+
|
|
215
|
+
#: geovisio/web/collections.py:595
|
|
216
|
+
#, python-format
|
|
217
|
+
msgid "Sequence %(c)s is in %(s)s state, its visibility can't be changed for now"
|
|
218
|
+
msgstr ""
|
|
219
|
+
"La séquence %(c)s est en état \"%(s)s\", sa visibilité ne peut pas être "
|
|
220
|
+
"changée pour l'instant"
|
|
221
|
+
|
|
222
|
+
#: geovisio/web/collections.py:698
|
|
223
|
+
#, python-format
|
|
224
|
+
msgid "Collection %(c)s wasn't found in database"
|
|
225
|
+
msgstr "La séquence %(c)s n'a pas été trouvée en base"
|
|
226
|
+
|
|
227
|
+
#: geovisio/web/collections.py:793
|
|
228
|
+
msgid "Sequence doesn't exists"
|
|
229
|
+
msgstr "La séquence n'existe pas"
|
|
230
|
+
|
|
231
|
+
#: geovisio/web/collections.py:938 geovisio/web/stac.py:340
|
|
232
|
+
#, python-format
|
|
233
|
+
msgid "Impossible to find user %(u)s"
|
|
234
|
+
msgstr "Impossible de trouver l'utilisateur %(u)s"
|
|
235
|
+
|
|
236
|
+
#: geovisio/web/collections.py:969 geovisio/web/stac.py:350
|
|
237
|
+
#, python-format
|
|
238
|
+
msgid "No data loaded for user %(u)s"
|
|
239
|
+
msgstr "Pas de données chargées pour l'utilisateur %(u)s"
|
|
240
|
+
|
|
241
|
+
#: geovisio/web/collections.py:971
|
|
242
|
+
msgid "No matching sequences found"
|
|
243
|
+
msgstr "Aucune séquence correspondante trouvée"
|
|
244
|
+
|
|
245
|
+
#: geovisio/web/items.py:335
|
|
246
|
+
msgid "limit parameter should be an integer between 1 and 10000"
|
|
247
|
+
msgstr ""
|
|
248
|
+
"Le paramètre \"limit\" doit être un nombre entier compris entre 1 et 10000"
|
|
249
|
+
|
|
250
|
+
#: geovisio/web/items.py:337
|
|
251
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and 10000)"
|
|
252
|
+
msgstr ""
|
|
253
|
+
"Le paramètre \"limit\" doit être un nombre entier valide (entre 1 et 10000)"
|
|
254
|
+
|
|
255
|
+
#: geovisio/web/items.py:342
|
|
256
|
+
msgid "`startAfterRank` and `withPicture` are mutually exclusive parameters"
|
|
257
|
+
msgstr ""
|
|
258
|
+
"Les paramètres `startAfterRank` et `withPicture` ne peuvent être utilisés "
|
|
259
|
+
"ensemble"
|
|
260
|
+
|
|
261
|
+
#: geovisio/web/items.py:349
|
|
262
|
+
msgid "startAfterRank parameter should be a positive integer (starting from 1)"
|
|
263
|
+
msgstr ""
|
|
264
|
+
"Le paramètre \"startAfterRank\" doit être un nombre entier positif ("
|
|
265
|
+
"supérieur ou égal à 1)"
|
|
266
|
+
|
|
267
|
+
#: geovisio/web/items.py:351
|
|
268
|
+
msgid "startAfterRank parameter should be a valid, positive integer"
|
|
269
|
+
msgstr "Le paramètre \"startAfterRank\" doit être un nombre entier positif"
|
|
270
|
+
|
|
271
|
+
#: geovisio/web/items.py:377
|
|
272
|
+
#, python-format
|
|
273
|
+
msgid "No more items in this collection (last available rank is %(r)s)"
|
|
274
|
+
msgstr "Plus de photos dans cette séquence (dernier rang disponible : %(r)s)"
|
|
275
|
+
|
|
276
|
+
#: geovisio/web/items.py:386
|
|
277
|
+
#, python-format
|
|
278
|
+
msgid "Picture with id %(p)s does not exists"
|
|
279
|
+
msgstr "La photo %(p)s n'existe pas"
|
|
280
|
+
|
|
281
|
+
#: geovisio/web/items.py:670
|
|
282
|
+
msgid "Item doesn't exist"
|
|
283
|
+
msgstr "Cet élément n'existe pas"
|
|
284
|
+
|
|
285
|
+
#: geovisio/web/items.py:729
|
|
286
|
+
msgid "Search using POST method should have a JSON body"
|
|
287
|
+
msgstr "La recherche par méthode POST doit avoir un corps de requête en JSON"
|
|
288
|
+
|
|
289
|
+
#: geovisio/web/items.py:738
|
|
290
|
+
msgid "Parameter limit must be either empty or a number between 1 and 10000"
|
|
291
|
+
msgstr ""
|
|
292
|
+
"Le paramètre \"limit\" doit être soit vide, soit un nombre entre 1 et 10000"
|
|
293
|
+
|
|
294
|
+
#: geovisio/web/items.py:794
|
|
295
|
+
msgid ""
|
|
296
|
+
"Parameter place_fov_tolerance must be either empty or a number between 2 "
|
|
297
|
+
"and 180"
|
|
298
|
+
msgstr ""
|
|
299
|
+
"Le paramètre \"place_fov_tolerance\" doit être soit vide, soit un nombre "
|
|
300
|
+
"compris entre 2 et 180"
|
|
301
|
+
|
|
302
|
+
#: geovisio/web/items.py:816
|
|
303
|
+
msgid ""
|
|
304
|
+
"Parameter intersects should contain a valid GeoJSON Geometry (not a "
|
|
305
|
+
"Feature)"
|
|
306
|
+
msgstr ""
|
|
307
|
+
"Le paramètre \"intersects\" doit contenir une géométrie GeoJSON valide (pas "
|
|
308
|
+
"une \"Feature\")"
|
|
309
|
+
|
|
310
|
+
#: geovisio/web/items.py:832
|
|
311
|
+
msgid "Parameter ids should be a JSON array of strings"
|
|
312
|
+
msgstr "Le paramètres \"ids\" doit être une liste JSON de chaînes de caractères"
|
|
313
|
+
|
|
314
|
+
#: geovisio/web/items.py:844
|
|
315
|
+
msgid "Parameter collections should be a JSON array of strings"
|
|
316
|
+
msgstr ""
|
|
317
|
+
"Le paramètre \"collections\" doit être une liste JSON de chaînes de "
|
|
318
|
+
"caractères"
|
|
319
|
+
|
|
320
|
+
#: geovisio/web/items.py:855
|
|
321
|
+
msgid "Picture doesn't exist"
|
|
322
|
+
msgstr "La photo n'existe pas"
|
|
323
|
+
|
|
324
|
+
#: geovisio/web/items.py:956
|
|
325
|
+
msgid "Content type should be multipart/form-data"
|
|
326
|
+
msgstr "Le type de contenu (\"Content-type\") doit être \"multipart/form-data\""
|
|
327
|
+
|
|
328
|
+
#: geovisio/web/items.py:960
|
|
329
|
+
msgid "Missing \"position\" parameter"
|
|
330
|
+
msgstr "Paramètre \"position\" manquant"
|
|
331
|
+
|
|
332
|
+
#: geovisio/web/items.py:967
|
|
333
|
+
msgid "Position in sequence should be a positive integer"
|
|
334
|
+
msgstr "La position dans la séquence doit être un nombre entier positif"
|
|
335
|
+
|
|
336
|
+
#: geovisio/web/items.py:981
|
|
337
|
+
msgid ""
|
|
338
|
+
"Longitude cannot be overridden alone, override_latitude also needs to be "
|
|
339
|
+
"set"
|
|
340
|
+
msgstr ""
|
|
341
|
+
"La longitude ne peut pas être surchargée seule, \"override_latitude\" doit "
|
|
342
|
+
"aussi être renseigné"
|
|
343
|
+
|
|
344
|
+
#: geovisio/web/items.py:983
|
|
345
|
+
msgid ""
|
|
346
|
+
"Latitude cannot be overridden alone, override_longitude also needs to be "
|
|
347
|
+
"set"
|
|
348
|
+
msgstr ""
|
|
349
|
+
"La latitude ne peut pas être surchargée seule, \"override_longitude\" doit "
|
|
350
|
+
"aussi être renseigné"
|
|
351
|
+
|
|
352
|
+
#: geovisio/web/items.py:984
|
|
353
|
+
#, python-format
|
|
354
|
+
msgid "For parameter `override_longitude`, `%(v)s` is not a valid longitude"
|
|
355
|
+
msgstr "Le paramètre `override_longitude` a une valeur %(v)s invalide"
|
|
356
|
+
|
|
357
|
+
#: geovisio/web/items.py:985
|
|
358
|
+
#, python-format
|
|
359
|
+
msgid "For parameter `override_latitude`, `%(v)s` is not a valid latitude"
|
|
360
|
+
msgstr "Le paramètre `override_latitude` a une valeur %(v)s invalide"
|
|
361
|
+
|
|
362
|
+
#: geovisio/web/items.py:1004
|
|
363
|
+
msgid "Picture blur status should be either unset, true or false"
|
|
364
|
+
msgstr ""
|
|
365
|
+
"L'état de floutage de la photo (blur) doit être soit vide, \"true\" ou "
|
|
366
|
+
"\"false\""
|
|
367
|
+
|
|
368
|
+
#: geovisio/web/items.py:1008
|
|
369
|
+
msgid "No picture file was sent"
|
|
370
|
+
msgstr "Aucun fichier de photo n'a été envoyé"
|
|
371
|
+
|
|
372
|
+
#: geovisio/web/items.py:1014
|
|
373
|
+
msgid "Picture file is either missing or in an unsupported format (should be jpg)"
|
|
374
|
+
msgstr ""
|
|
375
|
+
"Le fichier photo est soit manquant, soit dans un format non-supporté (doit "
|
|
376
|
+
"être en JPEG)"
|
|
377
|
+
|
|
378
|
+
#: geovisio/web/items.py:1021
|
|
379
|
+
#, python-format
|
|
380
|
+
msgid "Sequence %(s)s wasn't found in database"
|
|
381
|
+
msgstr "La séquence %(s)s est introuvable en base"
|
|
382
|
+
|
|
383
|
+
#: geovisio/web/items.py:1052
|
|
384
|
+
msgid "Picture at given position already exist"
|
|
385
|
+
msgstr "Une photo à cette position existe déjà"
|
|
386
|
+
|
|
387
|
+
#: geovisio/web/items.py:1054
|
|
388
|
+
msgid "Impossible to parse picture metadata"
|
|
389
|
+
msgstr "Impossible de lire les métadonnées de la photo"
|
|
390
|
+
|
|
391
|
+
#: geovisio/web/items.py:1062
|
|
392
|
+
msgid "Picture wasn't correctly saved in filesystem"
|
|
393
|
+
msgstr ""
|
|
394
|
+
"La photo n'a pas été correctement enregistrée sur le système de fichiers"
|
|
395
|
+
|
|
396
|
+
#: geovisio/web/items.py:1145
|
|
397
|
+
msgid ""
|
|
398
|
+
"Heading is not valid, should be an integer in degrees from 0° to 360°. "
|
|
399
|
+
"North is 0°, East = 90°, South = 180° and West = 270°."
|
|
400
|
+
msgstr ""
|
|
401
|
+
"L'orientation (\"heading\") est invalide, ce doit être un nombre entier de 0 "
|
|
402
|
+
"à 360°. Le Nord est à 0°, l'Est à 90°, le Sud à 180° et l'Ouest à 270°."
|
|
403
|
+
|
|
404
|
+
#: geovisio/web/items.py:1160 geovisio/web/items.py:1251
|
|
405
|
+
#, python-format
|
|
406
|
+
msgid "Picture %(p)s wasn't found in database"
|
|
407
|
+
msgstr "La photo %(p)s est introuvable en base"
|
|
408
|
+
|
|
409
|
+
#: geovisio/web/items.py:1164 geovisio/web/items.py:1255
|
|
410
|
+
msgid "You're not authorized to edit this picture"
|
|
411
|
+
msgstr "Vous n'avez pas la permission de modifier cette photo"
|
|
412
|
+
|
|
413
|
+
#: geovisio/web/items.py:1174
|
|
414
|
+
#, python-format
|
|
415
|
+
msgid "Picture %(p)s is in %(s)s state, its visibility can't be changed for now"
|
|
416
|
+
msgstr ""
|
|
417
|
+
"La photo %(p)s est en état \"%(s)s\", sa visibilité ne peut pas être changée "
|
|
418
|
+
"pour l'instant"
|
|
419
|
+
|
|
420
|
+
#: geovisio/web/map.py:124
|
|
421
|
+
msgid "One of required parameter is empty"
|
|
422
|
+
msgstr "L'un des paramètres obligatoires est manquant"
|
|
423
|
+
|
|
424
|
+
#: geovisio/web/map.py:126
|
|
425
|
+
msgid "Tile format is invalid, should be either pbf or mvt"
|
|
426
|
+
msgstr "Le format de tuile est invalide, ce doit être pbf ou mvt"
|
|
427
|
+
|
|
428
|
+
#: geovisio/web/map.py:130 geovisio/web/map.py:132
|
|
429
|
+
msgid "X or Y parameter is out of bounds"
|
|
430
|
+
msgstr "Le paramètre X ou Y est hors limites"
|
|
431
|
+
|
|
432
|
+
#: geovisio/web/map.py:134
|
|
433
|
+
msgid "Z parameter is out of bounds (should be 0-15)"
|
|
434
|
+
msgstr "Le paramètre Z est hors limites (doit être entre 0 et 15)"
|
|
435
|
+
|
|
436
|
+
#: geovisio/web/map.py:145
|
|
437
|
+
msgid "Impossible to get tile"
|
|
438
|
+
msgstr "Impossible de récupérer la tuile"
|
|
439
|
+
|
|
440
|
+
#: geovisio/web/params.py:101
|
|
441
|
+
msgid "Parameter datetime should contain one or two dates"
|
|
442
|
+
msgstr "Le paramètre \"datetime\" doit contenir une ou deux dates"
|
|
443
|
+
|
|
444
|
+
#: geovisio/web/params.py:171
|
|
445
|
+
msgid ""
|
|
446
|
+
"Parameter bbox must contain valid longitude (-180 to 180) and latitude "
|
|
447
|
+
"(-90 to 90) values"
|
|
448
|
+
msgstr ""
|
|
449
|
+
"Le paramètre \"bbox\" doit contenir des valeurs valides de longitude (-180 à "
|
|
450
|
+
"180°) et de latitude (-90 à 90°)"
|
|
451
|
+
|
|
452
|
+
#: geovisio/web/params.py:176
|
|
453
|
+
msgid "Parameter bbox must be in format [minX, minY, maxX, maxY]"
|
|
454
|
+
msgstr "Le paramètre \"bbox\" doit être au format [minX, minY, maxX, maxY]"
|
|
455
|
+
|
|
456
|
+
#: geovisio/web/params.py:214
|
|
457
|
+
#, python-format
|
|
458
|
+
msgid "Parameter %(p)s must be coordinates in lat,lon format"
|
|
459
|
+
msgstr "Le paramètre \"%(p)s\" doit être une position au format lat,lon"
|
|
460
|
+
|
|
461
|
+
#: geovisio/web/params.py:219
|
|
462
|
+
#, python-format
|
|
463
|
+
msgid "Longitude in parameter %(p)s is not valid (should be between -180 and 180)"
|
|
464
|
+
msgstr ""
|
|
465
|
+
"La longitude dans le paramètre \"%(p)s\" est invalide (doit être comprise "
|
|
466
|
+
"entre -180 et 180°)"
|
|
467
|
+
|
|
468
|
+
#: geovisio/web/params.py:220
|
|
469
|
+
#, python-format
|
|
470
|
+
msgid "Latitude in parameter %(p)s is not valid (should be between -90 and 90)"
|
|
471
|
+
msgstr ""
|
|
472
|
+
"La latitude dans le paramètre \"%(p)s\" est invalide (doit être comprise "
|
|
473
|
+
"entre -90 et 90°)"
|
|
474
|
+
|
|
475
|
+
#: geovisio/web/params.py:243 geovisio/web/params.py:254
|
|
476
|
+
#, python-format
|
|
477
|
+
msgid ""
|
|
478
|
+
"Parameter %(p)s is invalid (should be a distance range in meters like "
|
|
479
|
+
"\"5-15\")"
|
|
480
|
+
msgstr ""
|
|
481
|
+
"Le paramètre \"%(p)s\" est invalide (doit être un intervalle de distance tel "
|
|
482
|
+
"que \"5-15\")"
|
|
483
|
+
|
|
484
|
+
#: geovisio/web/params.py:248
|
|
485
|
+
#, python-format
|
|
486
|
+
msgid "Parameter %(p)s has a min value greater than its max value"
|
|
487
|
+
msgstr ""
|
|
488
|
+
"Le paramètre \"%(p)s\" a une valeur minimale plus grande que sa valeur "
|
|
489
|
+
"maximale"
|
|
490
|
+
|
|
491
|
+
#: geovisio/web/params.py:321
|
|
492
|
+
#, python-format
|
|
493
|
+
msgid "Parameter %(p)s must be a valid list"
|
|
494
|
+
msgstr "Le paramètre \"%(p)s\" doit être une liste valide"
|
|
495
|
+
|
|
496
|
+
#: geovisio/web/params.py:360
|
|
497
|
+
msgid "Unsupported filter parameter"
|
|
498
|
+
msgstr "Paramètre de filtre non supporté"
|
|
499
|
+
|
|
500
|
+
#: geovisio/web/params.py:445
|
|
501
|
+
msgid "Unsupported sortby parameter: invalid column name"
|
|
502
|
+
msgstr ""
|
|
503
|
+
"Paramètre de tri \"sortby\" non supporté : le nom de colonne est invalide"
|
|
504
|
+
|
|
505
|
+
#: geovisio/web/params.py:453
|
|
506
|
+
msgid "Unsupported sortby parameter: syntax isn't correct"
|
|
507
|
+
msgstr "Paramètre de tri \"sortby\" invalide : la syntaxe n'est pas correcte"
|
|
508
|
+
|
|
509
|
+
#: geovisio/web/params.py:479
|
|
510
|
+
#, python-format
|
|
511
|
+
msgid "limit parameter should be a valid, positive integer (between 1 and %(v)s)"
|
|
512
|
+
msgstr ""
|
|
513
|
+
"Le paramètre \"limit\" doit être un nombre entier positif (entre 1 et %(v)s)"
|
|
514
|
+
|
|
515
|
+
#: geovisio/web/params.py:482
|
|
516
|
+
#, python-format
|
|
517
|
+
msgid "limit parameter should be an integer between 1 and %(v)s"
|
|
518
|
+
msgstr "Le paramètre \"limit\" doit être un nombre compris entre 1 et %(v)s"
|
|
519
|
+
|
|
520
|
+
#: geovisio/web/params.py:493
|
|
521
|
+
msgid "longitude needs to be between -180 and 180"
|
|
522
|
+
msgstr "La longitude doit être comprise entre -180 et 180°"
|
|
523
|
+
|
|
524
|
+
#: geovisio/web/params.py:503
|
|
525
|
+
msgid "latitude needs to be between -90 and 90"
|
|
526
|
+
msgstr "La latitude doit être comprise entre -90 et 90°"
|
|
527
|
+
|
|
528
|
+
#: geovisio/web/pictures.py:205
|
|
529
|
+
msgid "Tiles are not available for flat pictures"
|
|
530
|
+
msgstr "Les tuiles ne sont pas disponibles pour les photos classiques"
|
|
531
|
+
|
|
532
|
+
#: geovisio/web/pictures.py:210
|
|
533
|
+
msgid "Column parameter is invalid, should be an integer"
|
|
534
|
+
msgstr "Le paramètre \"column\" est invalide, ce doit être un nombre entier"
|
|
535
|
+
|
|
536
|
+
#: geovisio/web/pictures.py:213
|
|
537
|
+
msgid "Column parameter is invalid"
|
|
538
|
+
msgstr "Le paramètre \"column\" est invalide"
|
|
539
|
+
|
|
540
|
+
#: geovisio/web/pictures.py:218
|
|
541
|
+
msgid "Row parameter is invalid, should be an integer"
|
|
542
|
+
msgstr "Le paramètre \"row\" est invalide, ce doit être un nombre entier"
|
|
543
|
+
|
|
544
|
+
#: geovisio/web/pictures.py:221
|
|
545
|
+
msgid "Row parameter is invalid"
|
|
546
|
+
msgstr "Le paramètre \"row\" est invalide"
|
|
547
|
+
|
|
548
|
+
#: geovisio/web/rss.py:22
|
|
549
|
+
#, python-format
|
|
550
|
+
msgid "Sequence \"%(name)s\" by \"%(user)s\" was captured on %(date)s."
|
|
551
|
+
msgstr "La séquence \"%(name)s\" par \"%(user)s\" a été prise le %(date)s."
|
|
552
|
+
|
|
553
|
+
#: geovisio/web/rss.py:40
|
|
554
|
+
msgid "View on the map"
|
|
555
|
+
msgstr "Voir sur la carte"
|
|
556
|
+
|
|
557
|
+
#: geovisio/web/rss.py:40
|
|
558
|
+
msgid "JSON metadata"
|
|
559
|
+
msgstr "Métadonnées JSON"
|
|
560
|
+
|
|
561
|
+
#: geovisio/web/rss.py:49
|
|
562
|
+
msgid "GeoVisio collections"
|
|
563
|
+
msgstr "Séquences GeoVisio"
|
|
564
|
+
|
|
565
|
+
#: geovisio/web/rss.py:51
|
|
566
|
+
msgid "List of collections from this GeoVisio server"
|
|
567
|
+
msgstr "Liste des séquences de cette instance GeoVisio"
|
|
568
|
+
|
|
569
|
+
#: geovisio/web/tokens.py:101 geovisio/web/tokens.py:144
|
|
570
|
+
#: geovisio/web/tokens.py:232
|
|
571
|
+
msgid "Impossible to find token"
|
|
572
|
+
msgstr "Impossible de trouver le jeton"
|
|
573
|
+
|
|
574
|
+
#: geovisio/web/tokens.py:182
|
|
575
|
+
msgid "Impossible to generate a new token"
|
|
576
|
+
msgstr "Impossible de générer un nouveau jeton"
|
|
577
|
+
|
|
578
|
+
#: geovisio/web/tokens.py:237
|
|
579
|
+
msgid "Token already claimed by another account"
|
|
580
|
+
msgstr "Le jeton a déjà été associée à un autre compte utilisateur"
|
|
581
|
+
|
|
582
|
+
#: geovisio/web/users.py:82
|
|
583
|
+
msgid "Impossible to find user"
|
|
584
|
+
msgstr "Impossible de trouver l'utilisateur"
|
|
585
|
+
|
|
586
|
+
#: geovisio/web/users.py:158
|
|
587
|
+
msgid ""
|
|
588
|
+
"No search parameter given, you should provide `q=<pattern>` as query "
|
|
589
|
+
"parameter"
|
|
590
|
+
msgstr ""
|
|
591
|
+
"Aucun paramètre de recherche fourni, vous devez renseigner `q=<motif>` comme "
|
|
592
|
+
"valeur de recherche"
|
|
593
|
+
|
|
594
|
+
#: geovisio/web/utils.py:51
|
|
595
|
+
msgid "No default account defined, please contact your instance administrator"
|
|
596
|
+
msgstr ""
|
|
597
|
+
"Aucun compte par défaut défini, merci de contacter l'administrateur de votre "
|
|
598
|
+
"instance"
|
|
599
|
+
|
|
600
|
+
#: geovisio/web/upload_set.py:461
|
|
601
|
+
msgid "The item has already been added to this upload set"
|
|
602
|
+
msgstr "L'item a déjà été ajouté à cet UploadSet"
|
|
603
|
+
|
|
604
|
+
#: geovisio/web/upload_set.py:430
|
|
605
|
+
msgid "You're not authorized to add picture to this collection"
|
|
606
|
+
msgstr "Vous n'avez pas la permission d'ajouter une photo dans cette séquence"
|
|
607
|
+
|
|
608
|
+
#: geovisio/web/upload_set.py:434
|
|
609
|
+
msgid "The upload set is already completed, files cannot be pushed to it"
|
|
610
|
+
msgstr ""
|
|
611
|
+
"L'UploadSet est déjà complet, aucun fichier supplémentaire ne peut être "
|
|
612
|
+
"ajouté"
|
|
613
|
+
|
|
614
|
+
#: geovisio/web/upload_set.py:426 geovisio/web/upload_set.py:651
|
|
615
|
+
msgid "UploadSet {u} does not exist"
|
|
616
|
+
msgstr "L'UploadSet {u} n'existe pas"
|
|
617
|
+
|
|
618
|
+
#: geovisio/web/upload_set.py:147
|
|
619
|
+
msgid "Parameter for creating an UploadSet should be a valid JSON"
|
|
620
|
+
msgstr "Le paramètre pour créer un UploadSet doit être un JSON valide"
|
|
621
|
+
|
|
622
|
+
#: geovisio/web/upload_set.py:193 geovisio/web/upload_set.py:674
|
|
623
|
+
msgid "UploadSet doesn't exist"
|
|
624
|
+
msgstr "L'UploadSet n'existe pas"
|
|
625
|
+
|
|
626
|
+
#: geovisio/web/upload_set.py:241 geovisio/web/upload_set.py:340
|
|
627
|
+
msgid "Impossible to parse parameters"
|
|
628
|
+
msgstr "Lecture des paramètres impossible"
|
|
629
|
+
|
|
630
|
+
#: geovisio/web/upload_set.py:279
|
|
631
|
+
msgid ""
|
|
632
|
+
"Parameter `override_capture_time` is not a valid datetime, it should be an "
|
|
633
|
+
"iso formated datetime (like '2017-07-21T17:32:28Z')."
|
|
634
|
+
msgstr ""
|
|
635
|
+
"Le paramètre `override_capture_time`n'est pas un horodatage valide, il "
|
|
636
|
+
"devrait être au format ISO (exemple '2017-07-21T17:32:28Z')."
|
|
637
|
+
|
|
638
|
+
#: geovisio/web/upload_set.py:285
|
|
639
|
+
msgid "For parameter `override_longitude`, `{value}` is not a valid longitude"
|
|
640
|
+
msgstr "La valeur `{value}` du paramètre `override_longitude` n'est pas valide"
|
|
641
|
+
|
|
642
|
+
#: geovisio/web/upload_set.py:290
|
|
643
|
+
msgid "For parameter `override_latitude`, `{value}` is not a valid longitude"
|
|
644
|
+
msgstr "La valeur `{value}` du paramètre `override_latitude` n'est pas valide"
|
|
645
|
+
|
|
646
|
+
#: geovisio/web/upload_set.py:329
|
|
647
|
+
msgid "No file was sent"
|
|
648
|
+
msgstr "Aucun fichier n'a été envoyé"
|
|
649
|
+
|
|
650
|
+
#: geovisio/web/upload_set.py:145
|
|
651
|
+
msgid "Impossible to create an UploadSet"
|
|
652
|
+
msgstr "Création d'un UploadSet impossible"
|
|
653
|
+
|
|
654
|
+
#: geovisio/web/upload_set.py:466
|
|
655
|
+
msgid "The same picture has already been sent in a past upload"
|
|
656
|
+
msgstr "Cette même photo a déjà été envoyées par le passé"
|
|
657
|
+
|
|
658
|
+
#: geovisio/web/upload_set.py:554
|
|
659
|
+
msgid "UploadSet doesn't exists"
|
|
660
|
+
msgstr "L'UploadSet n'existe pas"
|
|
661
|
+
|
|
662
|
+
#: geovisio/web/upload_set.py:655
|
|
663
|
+
msgid "You're not authorized to complete this upload set"
|
|
664
|
+
msgstr "Vous n'avez pas la permission de finaliser cet UploadSet"
|
|
665
|
+
|
|
666
|
+
#: geovisio/web/upload_set.py:660
|
|
667
|
+
msgid ""
|
|
668
|
+
"The upload set is already completed, cannot complete it several times for "
|
|
669
|
+
"the moment"
|
|
670
|
+
msgstr ""
|
|
671
|
+
"Cet UploadSet est déjà finalisé, il n'est pas permis de le finaliser "
|
|
672
|
+
"plusieurs fois pour l'instant"
|
|
673
|
+
|
|
674
|
+
#: geovisio/web/upload_set.py:428 geovisio/web/upload_set.py:653
|
|
675
|
+
#, python-format
|
|
676
|
+
msgid "UploadSet %(u)s does not exist"
|
|
677
|
+
msgstr "L'UploadSet %(u)s n'existe pas"
|
|
678
|
+
|
|
679
|
+
#: geovisio/web/upload_set.py:460
|
|
680
|
+
msgid "You're not authorized to add picture to this upload set"
|
|
681
|
+
msgstr "Vous n'avez pas la permission d'ajouter des photos à cet Upload Set"
|
|
682
|
+
|
|
683
|
+
#: geovisio/utils/upload_set.py:148
|
|
684
|
+
msgid ""
|
|
685
|
+
"The picture is too similar to another one (nearby and taken almost at the "
|
|
686
|
+
"same time)"
|
|
687
|
+
msgstr ""
|
|
688
|
+
"La photo est trop similaire à une autre (trop proche et prise presque à la "
|
|
689
|
+
"même heure)"
|
|
690
|
+
|
|
691
|
+
#: geovisio/utils/upload_set.py:150
|
|
692
|
+
msgid "The sent file is not a valid JPEG"
|
|
693
|
+
msgstr "Le fichier envoyé n'est pas une image JPEG valide"
|
|
694
|
+
|
|
695
|
+
#: geovisio/utils/upload_set.py:152
|
|
696
|
+
msgid ""
|
|
697
|
+
"The picture has invalid EXIF or XMP metadata, making it impossible to use"
|
|
698
|
+
msgstr ""
|
|
699
|
+
"La photo a des métadonnées EXIF ou XMP invalides, la rendant impossible à "
|
|
700
|
+
"utiliser"
|
|
701
|
+
|
|
702
|
+
#: geovisio/web/reports.py:89 geovisio/web/reports.py:99
|
|
703
|
+
msgid "Impossible to create a Report"
|
|
704
|
+
msgstr "Impossible de créer un signalement"
|
|
705
|
+
|
|
706
|
+
#: geovisio/web/reports.py:91
|
|
707
|
+
msgid "Parameter for creating a Report should be a valid JSON"
|
|
708
|
+
msgstr ""
|
|
709
|
+
"Les paramètres pour créer un signalement doivent être sous forme d'un JSON "
|
|
710
|
+
"valide"
|
|
711
|
+
|
|
712
|
+
#: geovisio/web/upload_set.py:607
|
|
713
|
+
msgid ""
|
|
714
|
+
"Impossible to open file as image. The only supported image format is jpg."
|
|
715
|
+
msgstr ""
|
|
716
|
+
"Impossible d'ouvrir le fichier en tant qu'image. Le seul format accepté est "
|
|
717
|
+
"le JPEG."
|
|
718
|
+
|
|
719
|
+
#: geovisio/utils/upload_set.py:154
|
|
720
|
+
msgid "Something went very wrong, but not due to the picture itself"
|
|
721
|
+
msgstr "Quelque chose s'est mal passé, mais pas à cause de l'image"
|
|
722
|
+
|
|
723
|
+
#: geovisio/web/items.py:1048
|
|
724
|
+
#, python-format
|
|
725
|
+
msgid "Collection %(s)s wasn't found in database"
|
|
726
|
+
msgstr "La séquence %(s)s n'a pas été trouvée en base"
|
|
727
|
+
|
|
728
|
+
#: geovisio/web/items.py:1057
|
|
729
|
+
msgid "The collection has been deleted, impossible to add pictures to it"
|
|
730
|
+
msgstr ""
|
|
731
|
+
"La séquence a été supprimée, il n'est pas possible d'y ajouter des images"
|
|
732
|
+
|
|
733
|
+
#: geovisio/web/reports.py:144
|
|
734
|
+
msgid "Only authenticated users can access reports"
|
|
735
|
+
msgstr "Seules les personnes authentifiées peuvent accéder aux signalements"
|
|
736
|
+
|
|
737
|
+
#: geovisio/web/reports.py:148 geovisio/web/reports.py:266
|
|
738
|
+
msgid "Report doesn't exist"
|
|
739
|
+
msgstr "Le signalement n'existe pas"
|
|
740
|
+
|
|
741
|
+
#: geovisio/web/reports.py:157
|
|
742
|
+
msgid "You're not authorized to access this report"
|
|
743
|
+
msgstr "Vous n'avez pas l'autorisation d'accéder à ce signalement"
|
|
744
|
+
|
|
745
|
+
#: geovisio/web/reports.py:277
|
|
746
|
+
msgid "You're not authorized to edit this Report"
|
|
747
|
+
msgstr "Vous n'avez pas l'autorisation d'éditer ce signalement"
|
|
748
|
+
|
|
749
|
+
#: geovisio/web/reports.py:284
|
|
750
|
+
msgid "Impossible to edit the Report"
|
|
751
|
+
msgstr "Impossible d'éditer le signalement"
|
|
752
|
+
|
|
753
|
+
#: geovisio/web/reports.py:286
|
|
754
|
+
msgid "Parameter for editing the Report should be a valid JSON"
|
|
755
|
+
msgstr ""
|
|
756
|
+
"Les paramètres pour éditer le signalement doivent êtres sous forme d'un JSON "
|
|
757
|
+
"valide"
|
|
758
|
+
|
|
759
|
+
#: geovisio/web/reports.py:352
|
|
760
|
+
msgid "You're not authorized to list reports"
|
|
761
|
+
msgstr "Vous n'avez pas l'autorisation de lister les signalements"
|
|
762
|
+
|
|
763
|
+
#: geovisio/web/upload_set.py:209
|
|
764
|
+
msgid "You're not authorized to list pictures in this upload set"
|
|
765
|
+
msgstr "Vous n'avez pas l'autorisation de lister les photos dans cet Upload Set"
|
|
766
|
+
|
|
767
|
+
#: geovisio/utils/excluded_areas.py:82
|
|
768
|
+
msgid "Impossible to find excluded area"
|
|
769
|
+
msgstr "Impossible de trouver une zone exclue"
|
|
770
|
+
|
|
771
|
+
#: geovisio/web/excluded_areas.py:134
|
|
772
|
+
msgid "You must be logged-in as admin to access all excluded areas"
|
|
773
|
+
msgstr ""
|
|
774
|
+
"Vous devez vous identifier en admin pour accéder à toutes les zones exclues"
|
|
775
|
+
|
|
776
|
+
#: geovisio/web/excluded_areas.py:136
|
|
777
|
+
msgid "You're not authorized to access all excluded areas"
|
|
778
|
+
msgstr "Vous n'êtes pas autorisé à accéder à toutes les zones exclues"
|
|
779
|
+
|
|
780
|
+
#: geovisio/web/excluded_areas.py:173 geovisio/web/excluded_areas.py:183
|
|
781
|
+
#: geovisio/web/excluded_areas.py:337 geovisio/web/excluded_areas.py:344
|
|
782
|
+
msgid "Impossible to create an Excluded Area"
|
|
783
|
+
msgstr "Impossible de créer une zone exclue"
|
|
784
|
+
|
|
785
|
+
#: geovisio/web/excluded_areas.py:175 geovisio/web/excluded_areas.py:339
|
|
786
|
+
msgid "Parameter for creating an Excluded Area should be a valid JSON"
|
|
787
|
+
msgstr "Les paramètres pour créer une zone exclue doivent être un JSON valide"
|
|
788
|
+
|
|
789
|
+
#: geovisio/web/excluded_areas.py:178 geovisio/web/excluded_areas.py:236
|
|
790
|
+
msgid "You must be logged-in as admin to edit excluded areas"
|
|
791
|
+
msgstr "Vous devez être identifié en admin pour éditer les zones exclues"
|
|
792
|
+
|
|
793
|
+
#: geovisio/web/excluded_areas.py:231 geovisio/web/excluded_areas.py:243
|
|
794
|
+
msgid "Impossible to replace all Excluded Areas"
|
|
795
|
+
msgstr "Impossible de remplacer toutes les zones exclues"
|
|
796
|
+
|
|
797
|
+
#: geovisio/web/items.py:1091 geovisio/web/upload_set.py:622
|
|
798
|
+
msgid "Picture has invalid metadata"
|
|
799
|
+
msgstr "L'image contient un metadata invalide"
|
|
800
|
+
|
|
801
|
+
#: geovisio/web/excluded_areas.py:233
|
|
802
|
+
msgid "Parameter for replacing all Excluded Areas should be a valid JSON"
|
|
803
|
+
msgstr ""
|
|
804
|
+
"Le paramètre pour remplacer toutes les Zones Exclues doit être un JSON valide"
|
|
805
|
+
|
|
806
|
+
#: geovisio/web/excluded_areas.py:273
|
|
807
|
+
msgid "You must be logged-in as admin to delete excluded areas"
|
|
808
|
+
msgstr ""
|
|
809
|
+
"Vous devez être connecté en tant qu'administrateur pour supprimer des zones "
|
|
810
|
+
"exclues"
|
|
811
|
+
|
|
812
|
+
#: geovisio/web/upload_set.py:763
|
|
813
|
+
msgid "You're not authorized to delete this upload set"
|
|
814
|
+
msgstr "Vous n'avez pas l'autorisation de supprimer cet UploadSet"
|