udata 14.0.0__py3-none-any.whl → 14.4.1.dev7__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 udata might be problematic. Click here for more details.
- udata/api_fields.py +35 -4
- udata/app.py +18 -20
- udata/auth/__init__.py +29 -6
- udata/auth/forms.py +2 -2
- udata/auth/views.py +6 -3
- udata/commands/serve.py +3 -11
- udata/commands/tests/test_fixtures.py +9 -9
- udata/core/access_type/api.py +1 -1
- udata/core/access_type/constants.py +12 -8
- udata/core/activity/api.py +5 -6
- udata/core/badges/tests/test_commands.py +6 -6
- udata/core/csv.py +5 -0
- udata/core/dataservices/models.py +1 -1
- udata/core/dataservices/tasks.py +7 -0
- udata/core/dataset/api.py +2 -0
- udata/core/dataset/models.py +2 -2
- udata/core/dataset/permissions.py +31 -0
- udata/core/dataset/tasks.py +17 -5
- udata/core/discussions/models.py +1 -0
- udata/core/organization/api.py +8 -5
- udata/core/organization/mails.py +1 -1
- udata/core/organization/models.py +9 -1
- udata/core/organization/notifications.py +84 -0
- udata/core/organization/permissions.py +1 -1
- udata/core/organization/tasks.py +3 -0
- udata/core/pages/tests/test_api.py +32 -0
- udata/core/post/api.py +24 -69
- udata/core/post/models.py +84 -16
- udata/core/post/tests/test_api.py +24 -1
- udata/core/reports/api.py +18 -0
- udata/core/reports/models.py +42 -2
- udata/core/reuse/models.py +1 -1
- udata/core/reuse/tasks.py +7 -0
- udata/core/spatial/forms.py +2 -2
- udata/core/user/models.py +5 -1
- udata/features/notifications/api.py +7 -18
- udata/features/notifications/models.py +56 -0
- udata/features/notifications/tasks.py +25 -0
- udata/flask_mongoengine/engine.py +0 -4
- udata/frontend/markdown.py +2 -1
- udata/harvest/actions.py +21 -1
- udata/harvest/api.py +25 -8
- udata/harvest/backends/base.py +27 -1
- udata/harvest/backends/ckan/harvesters.py +11 -2
- udata/harvest/commands.py +33 -0
- udata/harvest/filters.py +17 -6
- udata/harvest/models.py +16 -0
- udata/harvest/permissions.py +27 -0
- udata/harvest/tests/ckan/test_ckan_backend.py +33 -0
- udata/harvest/tests/test_actions.py +58 -5
- udata/harvest/tests/test_api.py +276 -122
- udata/harvest/tests/test_base_backend.py +86 -1
- udata/harvest/tests/test_dcat_backend.py +57 -10
- udata/harvest/tests/test_filters.py +6 -0
- udata/i18n.py +1 -4
- udata/mail.py +5 -1
- udata/migrations/2025-10-31-create-membership-request-notifications.py +55 -0
- udata/migrations/2025-12-04-add-uuid-to-discussion-messages.py +28 -0
- udata/mongo/slug_fields.py +1 -1
- udata/rdf.py +45 -6
- udata/routing.py +2 -2
- udata/settings.py +7 -0
- udata/tasks.py +1 -0
- udata/templates/mail/message.html +5 -31
- udata/tests/__init__.py +27 -2
- udata/tests/api/__init__.py +108 -21
- udata/tests/api/test_activities_api.py +36 -0
- udata/tests/api/test_auth_api.py +121 -95
- udata/tests/api/test_base_api.py +7 -4
- udata/tests/api/test_datasets_api.py +44 -19
- udata/tests/api/test_organizations_api.py +192 -197
- udata/tests/api/test_reports_api.py +157 -0
- udata/tests/api/test_reuses_api.py +147 -147
- udata/tests/api/test_security_api.py +12 -12
- udata/tests/api/test_swagger.py +4 -4
- udata/tests/api/test_tags_api.py +8 -8
- udata/tests/api/test_user_api.py +1 -1
- udata/tests/apiv2/test_swagger.py +4 -4
- udata/tests/cli/test_cli_base.py +8 -9
- udata/tests/dataset/test_dataset_commands.py +4 -4
- udata/tests/dataset/test_dataset_model.py +66 -26
- udata/tests/dataset/test_dataset_rdf.py +99 -5
- udata/tests/frontend/test_auth.py +24 -1
- udata/tests/frontend/test_csv.py +0 -3
- udata/tests/helpers.py +25 -27
- udata/tests/organization/test_notifications.py +67 -2
- udata/tests/plugin.py +6 -261
- udata/tests/site/test_site_csv_exports.py +22 -10
- udata/tests/test_activity.py +9 -9
- udata/tests/test_dcat_commands.py +2 -2
- udata/tests/test_discussions.py +5 -5
- udata/tests/test_migrations.py +21 -21
- udata/tests/test_notifications.py +15 -57
- udata/tests/test_notifications_task.py +43 -0
- udata/tests/test_owned.py +81 -1
- udata/tests/test_storages.py +25 -19
- udata/tests/test_topics.py +77 -61
- udata/tests/test_uris.py +33 -0
- udata/tests/workers/test_jobs_commands.py +23 -23
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +187 -108
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +187 -108
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +187 -108
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +188 -109
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +187 -108
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +187 -108
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +187 -108
- udata/translations/udata.pot +215 -106
- udata/uris.py +0 -2
- udata-14.4.1.dev7.dist-info/METADATA +109 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/RECORD +121 -123
- udata/core/post/forms.py +0 -30
- udata/flask_mongoengine/json.py +0 -38
- udata/templates/mail/base.html +0 -105
- udata/templates/mail/base.txt +0 -6
- udata/templates/mail/button.html +0 -3
- udata/templates/mail/layouts/1-column.html +0 -19
- udata/templates/mail/layouts/2-columns.html +0 -20
- udata/templates/mail/layouts/center-panel.html +0 -16
- udata-14.0.0.dist-info/METADATA +0 -132
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/WHEEL +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/entry_points.txt +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/licenses/LICENSE +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,8 @@ msgid ""
|
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: udata\n"
|
|
4
4
|
"Report-Msgid-Bugs-To: i18n@opendata.team\n"
|
|
5
|
-
"POT-Creation-Date: 2025-11-
|
|
6
|
-
"PO-Revision-Date: 2025-11-
|
|
5
|
+
"POT-Creation-Date: 2025-11-19 11:00+0100\n"
|
|
6
|
+
"PO-Revision-Date: 2025-11-19 13:03\n"
|
|
7
7
|
"Last-Translator: Open Data Team <i18n@opendata.team>\n"
|
|
8
8
|
"Language: fr\n"
|
|
9
9
|
"Language-Team: French\n"
|
|
@@ -15,34 +15,34 @@ msgstr ""
|
|
|
15
15
|
"X-Crowdin-Project: udata\n"
|
|
16
16
|
"X-Crowdin-Project-ID: 291291\n"
|
|
17
17
|
"X-Crowdin-Language: fr\n"
|
|
18
|
-
"X-Crowdin-File: /
|
|
18
|
+
"X-Crowdin-File: /main/udata/translations/udata.pot\n"
|
|
19
19
|
"X-Crowdin-File-ID: 6\n"
|
|
20
20
|
|
|
21
|
-
#: udata/settings.py:
|
|
21
|
+
#: udata/settings.py:127
|
|
22
22
|
msgid "Welcome"
|
|
23
23
|
msgstr "Bienvenue"
|
|
24
24
|
|
|
25
|
-
#: udata/settings.py:
|
|
25
|
+
#: udata/settings.py:128
|
|
26
26
|
msgid "Please confirm your email"
|
|
27
27
|
msgstr "Veuillez confirmer votre adresse e-mail"
|
|
28
28
|
|
|
29
|
-
#: udata/settings.py:
|
|
29
|
+
#: udata/settings.py:129
|
|
30
30
|
msgid "Login instructions"
|
|
31
31
|
msgstr "Instructions de connexion"
|
|
32
32
|
|
|
33
|
-
#: udata/auth/mails.py:125 udata/settings.py:
|
|
33
|
+
#: udata/auth/mails.py:125 udata/settings.py:130
|
|
34
34
|
msgid "Your password has been reset"
|
|
35
35
|
msgstr "Votre mot de passe a été réinitialisé"
|
|
36
36
|
|
|
37
|
-
#: udata/auth/mails.py:137 udata/settings.py:
|
|
37
|
+
#: udata/auth/mails.py:137 udata/settings.py:131
|
|
38
38
|
msgid "Your password has been changed"
|
|
39
39
|
msgstr "Votre mot de passe a été modifié"
|
|
40
40
|
|
|
41
|
-
#: udata/settings.py:
|
|
41
|
+
#: udata/settings.py:132
|
|
42
42
|
msgid "Password reset instructions"
|
|
43
43
|
msgstr "Instructions de réinitialisation du mot de passe"
|
|
44
44
|
|
|
45
|
-
#: udata/settings.py:
|
|
45
|
+
#: udata/settings.py:542
|
|
46
46
|
msgid "This dataset has been archived"
|
|
47
47
|
msgstr "Ce jeu de données a été archivé"
|
|
48
48
|
|
|
@@ -51,7 +51,7 @@ msgstr "Ce jeu de données a été archivé"
|
|
|
51
51
|
msgid "Invalid URL \"{url}\": {reason}"
|
|
52
52
|
msgstr "URL invalide \"{url}\" : {reason}"
|
|
53
53
|
|
|
54
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
54
|
+
#: udata/tests/api/test_datasets_api.py:1174 udata/tests/test_model.py:402
|
|
55
55
|
#: udata/uris.py:56
|
|
56
56
|
#, python-brace-format
|
|
57
57
|
msgid "Invalid URL \"{url}\""
|
|
@@ -147,29 +147,29 @@ msgstr "J'accepte les conditions générales d'utilisation"
|
|
|
147
147
|
msgid "Vous devez accepter les CGU pour continuer."
|
|
148
148
|
msgstr "Vous devez accepter les CGU pour continuer."
|
|
149
149
|
|
|
150
|
-
#: udata/auth/forms.py:
|
|
150
|
+
#: udata/auth/forms.py:75 udata/tests/forms/test_current_user_field.py:192
|
|
151
151
|
msgid "Password must be changed for security reasons"
|
|
152
152
|
msgstr "Le mot de passe doit être modifié pour des raisons de sécurité. Veuillez utiliser la récupération de mot de passe afin d’en définir un nouveau"
|
|
153
153
|
|
|
154
|
-
#: udata/auth/forms.py:
|
|
154
|
+
#: udata/auth/forms.py:106
|
|
155
155
|
msgid "New email"
|
|
156
156
|
msgstr "Nouvelle adresse email"
|
|
157
157
|
|
|
158
|
-
#: udata/auth/forms.py:
|
|
158
|
+
#: udata/auth/forms.py:108
|
|
159
159
|
msgid "Retype email"
|
|
160
160
|
msgstr "Re-saisir l'adresse email"
|
|
161
161
|
|
|
162
|
-
#: udata/auth/forms.py:
|
|
162
|
+
#: udata/auth/forms.py:109
|
|
163
163
|
msgid "Email does not match"
|
|
164
164
|
msgstr "Les adresses emails ne sont pas identiques"
|
|
165
165
|
|
|
166
|
-
#: udata/auth/forms.py:
|
|
166
|
+
#: udata/auth/forms.py:111 udata/templates/security/change_email.html:10
|
|
167
167
|
#: udata/templates/security/change_email.html:16
|
|
168
168
|
msgid "Change email"
|
|
169
169
|
msgstr "Modifier l'adresse email"
|
|
170
170
|
|
|
171
171
|
#: udata/auth/mails.py:67 udata/auth/mails.py:71 udata/auth/mails.py:96
|
|
172
|
-
#: udata/auth/mails.py:99
|
|
172
|
+
#: udata/auth/mails.py:99 udata/tests/api/test_security_api.py:109
|
|
173
173
|
msgid "Confirm your email address"
|
|
174
174
|
msgstr "Confirmez votre adresse e-mail"
|
|
175
175
|
|
|
@@ -264,7 +264,7 @@ msgid "Your udata instance is ready!"
|
|
|
264
264
|
msgstr "Votre instance udata est prête !"
|
|
265
265
|
|
|
266
266
|
#: udata/core/owned.py:64 udata/forms/fields.py:759
|
|
267
|
-
#: udata/tests/api/test_dataservices_api.py:
|
|
267
|
+
#: udata/tests/api/test_dataservices_api.py:569
|
|
268
268
|
msgid "You can only set yourself as owner"
|
|
269
269
|
msgstr "Vous ne pouvez définir que vous-même en tant que propriétaire"
|
|
270
270
|
|
|
@@ -273,10 +273,78 @@ msgid "Unknown organization"
|
|
|
273
273
|
msgstr "Organisation inconnue"
|
|
274
274
|
|
|
275
275
|
#: udata/core/owned.py:77 udata/forms/fields.py:791
|
|
276
|
-
#: udata/tests/api/test_dataservices_api.py:
|
|
276
|
+
#: udata/tests/api/test_dataservices_api.py:582
|
|
277
277
|
msgid "Permission denied for this organization"
|
|
278
278
|
msgstr "Permission refusée pour cette organisation"
|
|
279
279
|
|
|
280
|
+
#: udata/core/access_type/constants.py:42
|
|
281
|
+
msgid "Confidentiality of public authorities proceedings"
|
|
282
|
+
msgstr "Confidentialité des procédures des autorités publiques"
|
|
283
|
+
|
|
284
|
+
#: udata/core/access_type/constants.py:44
|
|
285
|
+
msgid "International relations, public security or national defence"
|
|
286
|
+
msgstr "Relations internationales, sécurité publique ou défense nationale."
|
|
287
|
+
|
|
288
|
+
#: udata/core/access_type/constants.py:46
|
|
289
|
+
msgid "Course of justice"
|
|
290
|
+
msgstr "Cours de la justice"
|
|
291
|
+
|
|
292
|
+
#: udata/core/access_type/constants.py:48
|
|
293
|
+
msgid "Commercial or industrial confidentiality"
|
|
294
|
+
msgstr "Confidentialité commerciale ou industrielle"
|
|
295
|
+
|
|
296
|
+
#: udata/core/access_type/constants.py:50
|
|
297
|
+
msgid "Intellectual property rights"
|
|
298
|
+
msgstr "Droits de propriété intellectuelle"
|
|
299
|
+
|
|
300
|
+
#: udata/core/access_type/constants.py:52
|
|
301
|
+
msgid "Personal data confidentiality"
|
|
302
|
+
msgstr "Confidentialité des données personnelles"
|
|
303
|
+
|
|
304
|
+
#: udata/core/access_type/constants.py:54
|
|
305
|
+
msgid "Protection of voluntary information suppliers"
|
|
306
|
+
msgstr "Protection des fournisseurs d'informations volontaires"
|
|
307
|
+
|
|
308
|
+
#: udata/core/access_type/constants.py:56
|
|
309
|
+
msgid "Environmental protection"
|
|
310
|
+
msgstr "Protection de l'environnement"
|
|
311
|
+
|
|
312
|
+
#: udata/core/access_type/constants.py:66
|
|
313
|
+
msgid "Public access to datasets and services would adversely affect the confidentiality of the proceedings of public authorities, where such confidentiality is provided for by law."
|
|
314
|
+
msgstr "L'accès du public aux jeux de données et aux services nuirait à la confidentialité des procédures des autorités publiques, lorsque cette confidentialité est prévue par la loi."
|
|
315
|
+
|
|
316
|
+
#: udata/core/access_type/constants.py:70
|
|
317
|
+
msgid "Public access to datasets and services would adversely affect international relations, public security or national defence."
|
|
318
|
+
msgstr "L'accès du public aux jeux de données et aux services aurait des répercussions négatives sur les relations internationales, la sécurité publique ou la défense nationale."
|
|
319
|
+
|
|
320
|
+
#: udata/core/access_type/constants.py:74
|
|
321
|
+
msgid "Public access to datasets and services would adversely affect the course of justice, the ability of any person to receive a fair trial or the ability of a public authority to conduct an enquiry of a criminal or disciplinary nature."
|
|
322
|
+
msgstr "L'accès du public aux jeux de données et aux services aurait un impact négatif sur le cours de la justice, la capacité de toute personne de recevoir un procès équitable ou la capacité d'une autorité publique à mener une enquête à caractère criminel ou disciplinaire."
|
|
323
|
+
|
|
324
|
+
#: udata/core/access_type/constants.py:78
|
|
325
|
+
msgid "Public access to datasets and services would adversely affect the confidentiality of commercial or industrial information, where such confidentiality is provided for by national or Community law to protect a legitimate economic interest, including the public interest in maintaining statistical confidentiality and tax secrecy."
|
|
326
|
+
msgstr "L'accès du public aux jeux de données et aux services nuirait à la confidentialité des informations commerciales ou industrielles, lorsque cette confidentialité est prévue par le droit national ou communautaire pour protéger un intérêt économique légitime, y compris l'intérêt du public pour le maintien de la confidentialité statistique et du secret fiscal."
|
|
327
|
+
|
|
328
|
+
#: udata/core/access_type/constants.py:82
|
|
329
|
+
msgid "Public access to datasets and services would adversely affect intellectual property rights."
|
|
330
|
+
msgstr "L'accès du public aux jeux de données et aux services aurait des répercussions négatives sur les droits de propriété intellectuelle."
|
|
331
|
+
|
|
332
|
+
#: udata/core/access_type/constants.py:86
|
|
333
|
+
msgid "Public access to datasets and services would adversely affect the confidentiality of personal data and/or files relating to a natural person where that person has not consented to the disclosure of the information to the public, where such confidentiality is provided for by national or Community law."
|
|
334
|
+
msgstr "L'accès du public aux jeux de données et aux services nuirait à la confidentialité des données à caractère personnel et/ou des fichiers relatifs à une personne physique où cette personne n'a pas consenti à la divulgation de l'information au public, lorsque cette confidentialité est prévue par le droit national ou communautaire."
|
|
335
|
+
|
|
336
|
+
#: udata/core/access_type/constants.py:90
|
|
337
|
+
msgid "Public access to datasets and services would adversely affect the interests or protection of any person who supplied the information requested on a voluntary basis without being under, or capable of being put under, a legal obligation to do so, unless that person has consented to the release of the information concerned."
|
|
338
|
+
msgstr "L'accès du public aux jeux de données et aux services nuirait aux intérêts ou à la protection de toute personne qui a fourni les informations demandées sur une base volontaire sans être souscrite, ou pouvant être soumis, une obligation légale de le faire, à moins que cette personne ait consenti à la divulgation des renseignements concernés."
|
|
339
|
+
|
|
340
|
+
#: udata/core/access_type/constants.py:94
|
|
341
|
+
msgid "Public access to datasets and services would adversely affect the protection of the environment to which such information relates, such as the location of rare species."
|
|
342
|
+
msgstr "L'accès du public aux jeux de données et aux services nuirait à la protection de l'environnement auquel ces informations se rapportent, comme l'emplacement d'espèces rares."
|
|
343
|
+
|
|
344
|
+
#: udata/core/access_type/models.py:25
|
|
345
|
+
msgid "You can only set one condition for a given access audience role"
|
|
346
|
+
msgstr "Vous ne pouvez définir qu'une seule condition pour une audience donnée"
|
|
347
|
+
|
|
280
348
|
#: udata/core/badges/forms.py:12
|
|
281
349
|
msgid "Kind"
|
|
282
350
|
msgstr "Type"
|
|
@@ -291,7 +359,7 @@ msgstr "Un point de contact existe déjà avec ces informations."
|
|
|
291
359
|
|
|
292
360
|
#: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
|
|
293
361
|
#: udata/core/organization/forms.py:46 udata/core/post/forms.py:15
|
|
294
|
-
#: udata/core/topic/forms.py:37 udata/harvest/forms.py:
|
|
362
|
+
#: udata/core/topic/forms.py:37 udata/harvest/forms.py:80
|
|
295
363
|
msgid "Name"
|
|
296
364
|
msgstr "Nom"
|
|
297
365
|
|
|
@@ -307,10 +375,10 @@ msgstr "Formulaire de contact"
|
|
|
307
375
|
msgid "The organization web contact form"
|
|
308
376
|
msgstr "Formulaire de contact web de l'organisation"
|
|
309
377
|
|
|
310
|
-
#: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:
|
|
311
|
-
#: udata/core/dataset/forms.py:
|
|
378
|
+
#: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:122
|
|
379
|
+
#: udata/core/dataset/forms.py:218 udata/core/discussions/forms.py:13
|
|
312
380
|
#: udata/core/discussions/forms.py:29 udata/core/topic/forms.py:35
|
|
313
|
-
#: udata/harvest/forms.py:
|
|
381
|
+
#: udata/harvest/forms.py:90
|
|
314
382
|
msgid "Publish as"
|
|
315
383
|
msgstr "Publier en tant que"
|
|
316
384
|
|
|
@@ -382,20 +450,20 @@ msgstr "a supprimé une API"
|
|
|
382
450
|
msgid "Latest APIs"
|
|
383
451
|
msgstr "Dernières APIs"
|
|
384
452
|
|
|
385
|
-
#: udata/core/dataservices/models.py:
|
|
386
|
-
msgid "
|
|
387
|
-
msgstr "
|
|
453
|
+
#: udata/core/dataservices/models.py:27
|
|
454
|
+
msgid "Dataservice serving high value datasets"
|
|
455
|
+
msgstr "API servant des jeux de données de haute valeur"
|
|
388
456
|
|
|
389
|
-
#: udata/core/dataservices/models.py:
|
|
457
|
+
#: udata/core/dataservices/models.py:185
|
|
390
458
|
msgid "dataservice"
|
|
391
459
|
msgstr "API"
|
|
392
460
|
|
|
393
|
-
#: udata/core/dataservices/models.py:
|
|
461
|
+
#: udata/core/dataservices/models.py:266 udata/core/dataset/models.py:580
|
|
394
462
|
#: udata/mongo/datetime_fields.py:60
|
|
395
463
|
msgid "Creation date"
|
|
396
464
|
msgstr "Date de création"
|
|
397
465
|
|
|
398
|
-
#: udata/core/dataservices/models.py:
|
|
466
|
+
#: udata/core/dataservices/models.py:272 udata/core/dataset/models.py:585
|
|
399
467
|
#: udata/mongo/datetime_fields.py:66
|
|
400
468
|
msgid "Last modification date"
|
|
401
469
|
msgstr "Date de dernière modification"
|
|
@@ -580,7 +648,7 @@ msgstr "Jamais"
|
|
|
580
648
|
msgid "Not planned"
|
|
581
649
|
msgstr "Non planifié"
|
|
582
650
|
|
|
583
|
-
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:
|
|
651
|
+
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:156
|
|
584
652
|
#: udata/core/spatial/constants.py:5
|
|
585
653
|
msgid "Other"
|
|
586
654
|
msgstr "Autre"
|
|
@@ -593,248 +661,260 @@ msgstr "Autre"
|
|
|
593
661
|
msgid "Unknown"
|
|
594
662
|
msgstr "Inconnu"
|
|
595
663
|
|
|
596
|
-
#: udata/core/dataset/constants.py:
|
|
664
|
+
#: udata/core/dataset/constants.py:151
|
|
597
665
|
msgid "Main file"
|
|
598
666
|
msgstr "Fichier principal"
|
|
599
667
|
|
|
600
|
-
#: udata/core/dataset/constants.py:
|
|
668
|
+
#: udata/core/dataset/constants.py:152
|
|
601
669
|
msgid "Documentation"
|
|
602
670
|
msgstr "Documentation"
|
|
603
671
|
|
|
604
|
-
#: udata/core/dataset/constants.py:
|
|
672
|
+
#: udata/core/dataset/constants.py:153
|
|
605
673
|
msgid "Update"
|
|
606
674
|
msgstr "Mise à jour"
|
|
607
675
|
|
|
608
|
-
#: udata/core/dataset/constants.py:
|
|
676
|
+
#: udata/core/dataset/constants.py:154 udata/core/reuse/constants.py:4
|
|
609
677
|
msgid "API"
|
|
610
678
|
msgstr "API"
|
|
611
679
|
|
|
612
|
-
#: udata/core/dataset/constants.py:
|
|
680
|
+
#: udata/core/dataset/constants.py:155
|
|
613
681
|
msgid "Code repository"
|
|
614
682
|
msgstr "Dépôt de code"
|
|
615
683
|
|
|
616
|
-
#: udata/core/dataset/constants.py:
|
|
684
|
+
#: udata/core/dataset/constants.py:163
|
|
617
685
|
msgid "Uploaded file"
|
|
618
686
|
msgstr "Fichier uploadé"
|
|
619
687
|
|
|
620
|
-
#: udata/core/dataset/constants.py:
|
|
688
|
+
#: udata/core/dataset/constants.py:164
|
|
621
689
|
msgid "Remote file"
|
|
622
690
|
msgstr "Fichier distant"
|
|
623
691
|
|
|
624
|
-
#: udata/core/dataset/forms.py:
|
|
692
|
+
#: udata/core/dataset/forms.py:39
|
|
625
693
|
msgid "Checksum value"
|
|
626
694
|
msgstr "Valeur de la somme de contrôle"
|
|
627
695
|
|
|
628
|
-
#: udata/core/dataset/forms.py:
|
|
696
|
+
#: udata/core/dataset/forms.py:50
|
|
629
697
|
msgid "URL of the schema"
|
|
630
698
|
msgstr "URL du schéma"
|
|
631
699
|
|
|
632
|
-
#: udata/core/dataset/forms.py:
|
|
700
|
+
#: udata/core/dataset/forms.py:51
|
|
633
701
|
msgid "Name of the schema"
|
|
634
702
|
msgstr "Nom du schéma"
|
|
635
703
|
|
|
636
|
-
#: udata/core/dataset/forms.py:
|
|
704
|
+
#: udata/core/dataset/forms.py:52
|
|
637
705
|
msgid "Version of the schema"
|
|
638
706
|
msgstr "Version du schéma"
|
|
639
707
|
|
|
640
|
-
#: udata/core/dataset/forms.py:
|
|
708
|
+
#: udata/core/dataset/forms.py:71 udata/core/dataset/forms.py:162
|
|
641
709
|
#: udata/core/discussions/forms.py:14 udata/core/discussions/forms.py:25
|
|
642
710
|
#: udata/core/site/forms.py:12 udata/core/topic/forms.py:13
|
|
643
711
|
msgid "Title"
|
|
644
712
|
msgstr "Titre"
|
|
645
713
|
|
|
646
|
-
#: udata/core/dataset/forms.py:
|
|
714
|
+
#: udata/core/dataset/forms.py:74 udata/core/dataset/forms.py:166
|
|
647
715
|
#: udata/core/jobs/forms.py:28 udata/core/organization/forms.py:50
|
|
648
716
|
#: udata/core/topic/forms.py:14 udata/core/topic/forms.py:38
|
|
649
|
-
#: udata/harvest/forms.py:
|
|
717
|
+
#: udata/harvest/forms.py:82
|
|
650
718
|
msgid "Description"
|
|
651
719
|
msgstr "Description"
|
|
652
720
|
|
|
653
|
-
#: udata/core/dataset/forms.py:
|
|
721
|
+
#: udata/core/dataset/forms.py:77
|
|
654
722
|
msgid "File type"
|
|
655
723
|
msgstr "Type de fichier"
|
|
656
724
|
|
|
657
|
-
#: udata/core/dataset/forms.py:
|
|
725
|
+
#: udata/core/dataset/forms.py:81
|
|
658
726
|
msgid "Whether the resource is an uploaded file, a remote file or an API"
|
|
659
727
|
msgstr "Est-ce que la ressource est un fichier uploadé, un fichier distant ou une API"
|
|
660
728
|
|
|
661
|
-
#: udata/core/dataset/forms.py:
|
|
729
|
+
#: udata/core/dataset/forms.py:84
|
|
662
730
|
msgid "Type"
|
|
663
731
|
msgstr "Type"
|
|
664
732
|
|
|
665
|
-
#: udata/core/dataset/forms.py:
|
|
733
|
+
#: udata/core/dataset/forms.py:88
|
|
666
734
|
msgid "Resource type (documentation, API...)"
|
|
667
735
|
msgstr "Type de ressource (documentation, API...)"
|
|
668
736
|
|
|
669
|
-
#: udata/core/dataset/forms.py:
|
|
737
|
+
#: udata/core/dataset/forms.py:90 udata/harvest/forms.py:84
|
|
670
738
|
msgid "URL"
|
|
671
739
|
msgstr "URL"
|
|
672
740
|
|
|
673
|
-
#: udata/core/dataset/forms.py:
|
|
741
|
+
#: udata/core/dataset/forms.py:92
|
|
674
742
|
msgid "Format"
|
|
675
743
|
msgstr "Format"
|
|
676
744
|
|
|
677
|
-
#: udata/core/dataset/forms.py:
|
|
745
|
+
#: udata/core/dataset/forms.py:97
|
|
678
746
|
msgid "Mime type"
|
|
679
747
|
msgstr "Type MIME"
|
|
680
748
|
|
|
681
|
-
#: udata/core/dataset/forms.py:
|
|
749
|
+
#: udata/core/dataset/forms.py:98
|
|
682
750
|
msgid "The mime type associated to the extension. (ex: text/plain)"
|
|
683
751
|
msgstr "Le type MIME associé au format de fichier. (ex: text/plain)"
|
|
684
752
|
|
|
685
|
-
#: udata/core/dataset/forms.py:
|
|
753
|
+
#: udata/core/dataset/forms.py:101
|
|
686
754
|
msgid "Size"
|
|
687
755
|
msgstr "Taille"
|
|
688
756
|
|
|
689
|
-
#: udata/core/dataset/forms.py:
|
|
757
|
+
#: udata/core/dataset/forms.py:101
|
|
690
758
|
msgid "The file size in bytes"
|
|
691
759
|
msgstr "La taille du fichier en octets"
|
|
692
760
|
|
|
693
|
-
#: udata/core/dataset/forms.py:
|
|
761
|
+
#: udata/core/dataset/forms.py:120
|
|
694
762
|
msgid "Related dataset"
|
|
695
763
|
msgstr "Jeu de données concerné"
|
|
696
764
|
|
|
697
|
-
#: udata/core/dataset/forms.py:
|
|
765
|
+
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1086
|
|
698
766
|
msgid "Wrong contact point id or contact point ownership mismatch"
|
|
699
767
|
msgstr "Mauvais ID de point de contact ou incompatibilité de possession du point de contact"
|
|
700
768
|
|
|
701
|
-
#: udata/core/dataset/forms.py:
|
|
769
|
+
#: udata/core/dataset/forms.py:164 udata/core/organization/forms.py:48
|
|
702
770
|
msgid "Acronym"
|
|
703
771
|
msgstr "Sigle"
|
|
704
772
|
|
|
705
|
-
#: udata/core/dataset/forms.py:
|
|
773
|
+
#: udata/core/dataset/forms.py:164
|
|
706
774
|
msgid "An optional acronym"
|
|
707
775
|
msgstr "Un acronyme facultatif"
|
|
708
776
|
|
|
709
|
-
#: udata/core/dataset/forms.py:
|
|
777
|
+
#: udata/core/dataset/forms.py:168
|
|
710
778
|
msgid "The details about the dataset (collection process, specifics...)."
|
|
711
779
|
msgstr "Les détails sur le jeu de données (processus de collecte, spécificités...)."
|
|
712
780
|
|
|
713
|
-
#: udata/core/dataset/forms.py:
|
|
781
|
+
#: udata/core/dataset/forms.py:171
|
|
714
782
|
msgid "Short description"
|
|
715
783
|
msgstr "Description courte"
|
|
716
784
|
|
|
717
|
-
#: udata/core/dataset/forms.py:
|
|
785
|
+
#: udata/core/dataset/forms.py:173
|
|
718
786
|
msgid "A short description of the dataset."
|
|
719
787
|
msgstr "Une courte description du jeu de données."
|
|
720
788
|
|
|
721
|
-
#: udata/core/dataset/forms.py:
|
|
789
|
+
#: udata/core/dataset/forms.py:175
|
|
722
790
|
msgid "License"
|
|
723
791
|
msgstr "Licence"
|
|
724
792
|
|
|
725
|
-
#: udata/core/dataset/forms.py:
|
|
793
|
+
#: udata/core/dataset/forms.py:182
|
|
794
|
+
msgid "Authorization request URL"
|
|
795
|
+
msgstr "URL de la demande d'autorisation"
|
|
796
|
+
|
|
797
|
+
#: udata/core/dataset/forms.py:184
|
|
798
|
+
msgid "Access type reason category"
|
|
799
|
+
msgstr "Catégorie de raison du type d'accès"
|
|
800
|
+
|
|
801
|
+
#: udata/core/dataset/forms.py:188
|
|
802
|
+
msgid "Access type reason"
|
|
803
|
+
msgstr "Raison du type d'accès"
|
|
804
|
+
|
|
805
|
+
#: udata/core/dataset/forms.py:190
|
|
726
806
|
msgid "Update frequency"
|
|
727
807
|
msgstr "Fréquence de mise à jour"
|
|
728
808
|
|
|
729
|
-
#: udata/core/dataset/forms.py:
|
|
809
|
+
#: udata/core/dataset/forms.py:200
|
|
730
810
|
msgid "The frequency at which data are updated."
|
|
731
811
|
msgstr "La fréquence à laquelle les données sont mises à jour."
|
|
732
812
|
|
|
733
|
-
#: udata/core/dataset/forms.py:
|
|
813
|
+
#: udata/core/dataset/forms.py:202
|
|
734
814
|
msgid "Expected frequency date"
|
|
735
815
|
msgstr "Date de mise à jour prévue"
|
|
736
816
|
|
|
737
|
-
#: udata/core/dataset/forms.py:
|
|
817
|
+
#: udata/core/dataset/forms.py:206
|
|
738
818
|
msgid "Temporal coverage"
|
|
739
819
|
msgstr "Couverture temporelle"
|
|
740
820
|
|
|
741
|
-
#: udata/core/dataset/forms.py:
|
|
821
|
+
#: udata/core/dataset/forms.py:206
|
|
742
822
|
msgid "The period covered by the data"
|
|
743
823
|
msgstr "La période couverte par les données"
|
|
744
824
|
|
|
745
|
-
#: udata/core/dataset/forms.py:
|
|
825
|
+
#: udata/core/dataset/forms.py:209 udata/core/spatial/forms.py:85
|
|
746
826
|
#: udata/core/topic/forms.py:86
|
|
747
827
|
msgid "Spatial coverage"
|
|
748
828
|
msgstr "Couverture spatiale"
|
|
749
829
|
|
|
750
|
-
#: udata/core/dataset/forms.py:
|
|
830
|
+
#: udata/core/dataset/forms.py:209 udata/core/topic/forms.py:86
|
|
751
831
|
msgid "The geographical area covered by the data."
|
|
752
832
|
msgstr "La zone géographique couverte par les données."
|
|
753
833
|
|
|
754
|
-
#: udata/core/dataset/forms.py:
|
|
834
|
+
#: udata/core/dataset/forms.py:211 udata/core/post/forms.py:26
|
|
755
835
|
#: udata/core/site/forms.py:13 udata/core/topic/forms.py:15
|
|
756
836
|
#: udata/core/topic/forms.py:89
|
|
757
837
|
msgid "Tags"
|
|
758
838
|
msgstr "Mots-clés"
|
|
759
839
|
|
|
760
|
-
#: udata/core/dataset/forms.py:
|
|
840
|
+
#: udata/core/dataset/forms.py:211
|
|
761
841
|
msgid "Some taxonomy keywords"
|
|
762
842
|
msgstr "Quelques mots-clés pour la taxonomie"
|
|
763
843
|
|
|
764
|
-
#: udata/core/dataset/forms.py:
|
|
844
|
+
#: udata/core/dataset/forms.py:213 udata/core/topic/forms.py:90
|
|
765
845
|
msgid "Private"
|
|
766
846
|
msgstr "Privé"
|
|
767
847
|
|
|
768
|
-
#: udata/core/dataset/forms.py:
|
|
848
|
+
#: udata/core/dataset/forms.py:214
|
|
769
849
|
msgid "Restrict the dataset visibility to you or your organization only."
|
|
770
850
|
msgstr "Restreint la visibilité du jeu de données à vous ou votre organisation seulement."
|
|
771
851
|
|
|
772
|
-
#: udata/core/dataset/models.py:
|
|
852
|
+
#: udata/core/dataset/models.py:69
|
|
773
853
|
msgid "Pivotal data"
|
|
774
854
|
msgstr "Données pivot"
|
|
775
855
|
|
|
776
|
-
#: udata/core/dataset/models.py:
|
|
856
|
+
#: udata/core/dataset/models.py:70
|
|
777
857
|
msgid "Reference data public service"
|
|
778
858
|
msgstr "Service public de la donnée de référence"
|
|
779
859
|
|
|
780
|
-
#: udata/core/dataset/models.py:
|
|
860
|
+
#: udata/core/dataset/models.py:71
|
|
781
861
|
msgid "Inspire"
|
|
782
862
|
msgstr "INSPIRE"
|
|
783
863
|
|
|
784
|
-
#: udata/core/dataset/models.py:
|
|
864
|
+
#: udata/core/dataset/models.py:72
|
|
785
865
|
msgid "High value datasets"
|
|
786
866
|
msgstr "Données de forte valeur"
|
|
787
867
|
|
|
788
|
-
#: udata/core/dataset/models.py:
|
|
868
|
+
#: udata/core/dataset/models.py:73
|
|
789
869
|
msgid "Certified statistic series"
|
|
790
870
|
msgstr "Séries statistiques labellisées"
|
|
791
871
|
|
|
792
|
-
#: udata/core/dataset/models.py:
|
|
872
|
+
#: udata/core/dataset/models.py:74
|
|
793
873
|
msgid "Statistical series of general interest"
|
|
794
874
|
msgstr "Séries statistiques reconnues d’intérêt général"
|
|
795
875
|
|
|
796
|
-
#: udata/core/dataset/models.py:
|
|
876
|
+
#: udata/core/dataset/models.py:154
|
|
797
877
|
msgid "A schema must contains a name or an URL when a version is provided."
|
|
798
878
|
msgstr "Un schéma doit contenir un nom ou une URL lorsqu'une version est fournie."
|
|
799
879
|
|
|
800
|
-
#: udata/core/dataset/models.py:
|
|
801
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
880
|
+
#: udata/core/dataset/models.py:186 udata/tests/api/test_datasets_api.py:1182
|
|
881
|
+
#: udata/tests/api/test_datasets_api.py:1193
|
|
802
882
|
#, python-brace-format
|
|
803
883
|
msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
|
|
804
884
|
msgstr "Le nom du schéma \"{schema}\" n'est pas une valeur autorisée. Valeurs autorisées : {values}"
|
|
805
885
|
|
|
806
|
-
#: udata/core/dataset/models.py:
|
|
886
|
+
#: udata/core/dataset/models.py:205 udata/tests/api/test_datasets_api.py:1205
|
|
807
887
|
#, python-brace-format
|
|
808
888
|
msgid "Version \"{version}\" is not an allowed value for the schema \"{name}\". Allowed versions: {values}"
|
|
809
889
|
msgstr "La version \"{version}\" n'est pas une valeur autorisée pour le schéma \"{name}\". Versions autorisées : {values}"
|
|
810
890
|
|
|
811
|
-
#: udata/core/dataset/models.py:
|
|
812
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
813
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
891
|
+
#: udata/core/dataset/models.py:454 udata/core/dataset/rdf.py:596
|
|
892
|
+
#: udata/tests/dataset/test_dataset_rdf.py:912
|
|
893
|
+
#: udata/tests/dataset/test_dataset_rdf.py:925
|
|
814
894
|
msgid "Nameless resource"
|
|
815
895
|
msgstr "Ressource sans nom"
|
|
816
896
|
|
|
817
|
-
#: udata/core/dataset/models.py:
|
|
897
|
+
#: udata/core/dataset/models.py:559
|
|
818
898
|
msgid "Future date of update"
|
|
819
899
|
msgstr "Future date de mise à jour"
|
|
820
900
|
|
|
821
|
-
#: udata/core/dataset/models.py:
|
|
901
|
+
#: udata/core/dataset/models.py:591
|
|
822
902
|
msgid "Last update of the dataset resources"
|
|
823
903
|
msgstr "Dernière mise à jour des ressources de ce jeu de données"
|
|
824
904
|
|
|
825
|
-
#: udata/core/dataset/models.py:
|
|
905
|
+
#: udata/core/dataset/models.py:646
|
|
826
906
|
msgid "dataset"
|
|
827
907
|
msgstr "jeu de données"
|
|
828
908
|
|
|
829
|
-
#: udata/core/dataset/rdf.py:
|
|
830
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
909
|
+
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:882
|
|
910
|
+
#: udata/tests/dataset/test_dataset_rdf.py:899
|
|
831
911
|
#, python-brace-format
|
|
832
912
|
msgid "{format} resource"
|
|
833
913
|
msgstr "Ressource {format}"
|
|
834
914
|
|
|
835
915
|
#: udata/core/discussions/forms.py:16 udata/core/discussions/forms.py:31
|
|
836
916
|
#: udata/core/discussions/forms.py:37 udata/core/organization/forms.py:83
|
|
837
|
-
#: udata/core/organization/forms.py:87 udata/harvest/forms.py:
|
|
917
|
+
#: udata/core/organization/forms.py:87 udata/harvest/forms.py:100
|
|
838
918
|
msgid "Comment"
|
|
839
919
|
msgstr "Commentaire"
|
|
840
920
|
|
|
@@ -1076,23 +1156,23 @@ msgstr "Votre organisation a été identifiée comme une association"
|
|
|
1076
1156
|
msgid "Your organization %(org)s has been identified by our team as an association. A badge is now associated with your organization."
|
|
1077
1157
|
msgstr "Votre organisation %(org)s a été identifiée par notre équipe comme une association. Un badge est maintenant associé à votre organisation."
|
|
1078
1158
|
|
|
1079
|
-
#: udata/core/organization/models.py:
|
|
1159
|
+
#: udata/core/organization/models.py:39
|
|
1080
1160
|
msgid "Public Service"
|
|
1081
1161
|
msgstr "Service Public"
|
|
1082
1162
|
|
|
1083
|
-
#: udata/core/organization/models.py:
|
|
1163
|
+
#: udata/core/organization/models.py:40
|
|
1084
1164
|
msgid "Certified"
|
|
1085
1165
|
msgstr "Certifié"
|
|
1086
1166
|
|
|
1087
|
-
#: udata/core/organization/models.py:
|
|
1167
|
+
#: udata/core/organization/models.py:41
|
|
1088
1168
|
msgid "Association"
|
|
1089
1169
|
msgstr "Association"
|
|
1090
1170
|
|
|
1091
|
-
#: udata/core/organization/models.py:
|
|
1171
|
+
#: udata/core/organization/models.py:42
|
|
1092
1172
|
msgid "Company"
|
|
1093
1173
|
msgstr "Entreprise"
|
|
1094
1174
|
|
|
1095
|
-
#: udata/core/organization/models.py:
|
|
1175
|
+
#: udata/core/organization/models.py:43
|
|
1096
1176
|
msgid "Local authority"
|
|
1097
1177
|
msgstr "Collectivité territoriale"
|
|
1098
1178
|
|
|
@@ -1184,7 +1264,7 @@ msgstr "a mis à jour une réutilisation"
|
|
|
1184
1264
|
msgid "deleted a reuse"
|
|
1185
1265
|
msgstr "a supprimé une réutilisation"
|
|
1186
1266
|
|
|
1187
|
-
#: udata/core/reuse/api.py:
|
|
1267
|
+
#: udata/core/reuse/api.py:141
|
|
1188
1268
|
msgid "Latests reuses"
|
|
1189
1269
|
msgstr "Dernières réutilisations"
|
|
1190
1270
|
|
|
@@ -1289,11 +1369,11 @@ msgstr "Titre de la réutilisation :"
|
|
|
1289
1369
|
msgid "View the reuse"
|
|
1290
1370
|
msgstr "Voir la réutilisation"
|
|
1291
1371
|
|
|
1292
|
-
#: udata/core/reuse/models.py:
|
|
1372
|
+
#: udata/core/reuse/models.py:40
|
|
1293
1373
|
msgid "This URL is already registered"
|
|
1294
1374
|
msgstr "Cette URL est déjà enregistrée"
|
|
1295
1375
|
|
|
1296
|
-
#: udata/core/reuse/models.py:
|
|
1376
|
+
#: udata/core/reuse/models.py:194
|
|
1297
1377
|
msgid "reuse"
|
|
1298
1378
|
msgstr "réutilisation"
|
|
1299
1379
|
|
|
@@ -1606,11 +1686,11 @@ msgstr "Ce champ requiert la définition de \"%(name)s\""
|
|
|
1606
1686
|
msgid "Source"
|
|
1607
1687
|
msgstr "Source"
|
|
1608
1688
|
|
|
1609
|
-
#: udata/harvest/forms.py:
|
|
1689
|
+
#: udata/harvest/forms.py:82
|
|
1610
1690
|
msgid "Some optional details about this harvester"
|
|
1611
1691
|
msgstr "Des détails optionnels sur votre moissonneur"
|
|
1612
1692
|
|
|
1613
|
-
#: udata/harvest/forms.py:
|
|
1693
|
+
#: udata/harvest/forms.py:86
|
|
1614
1694
|
msgid "Backend"
|
|
1615
1695
|
msgstr "Implémentation"
|
|
1616
1696
|
|
|
@@ -1654,27 +1734,27 @@ msgstr "Ignoré"
|
|
|
1654
1734
|
msgid "Archived"
|
|
1655
1735
|
msgstr "Archivé"
|
|
1656
1736
|
|
|
1657
|
-
#: udata/harvest/backends/dcat.py:
|
|
1737
|
+
#: udata/harvest/backends/dcat.py:434
|
|
1658
1738
|
msgid "Remote URL prefix"
|
|
1659
1739
|
msgstr "Préfixe d'URL distante"
|
|
1660
1740
|
|
|
1661
|
-
#: udata/harvest/backends/dcat.py:
|
|
1741
|
+
#: udata/harvest/backends/dcat.py:437
|
|
1662
1742
|
msgid "A prefix used to build the remote URL of the harvested items."
|
|
1663
1743
|
msgstr "Un préfixe utilisé pour construire l'URL distante des éléments récoltés."
|
|
1664
1744
|
|
|
1665
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1745
|
+
#: udata/harvest/backends/ckan/harvesters.py:31
|
|
1666
1746
|
msgid "Organization"
|
|
1667
1747
|
msgstr "Organisation"
|
|
1668
1748
|
|
|
1669
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1749
|
+
#: udata/harvest/backends/ckan/harvesters.py:31
|
|
1670
1750
|
msgid "A CKAN Organization name"
|
|
1671
1751
|
msgstr "Un nom d'organisation CKAN"
|
|
1672
1752
|
|
|
1673
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1753
|
+
#: udata/harvest/backends/ckan/harvesters.py:32
|
|
1674
1754
|
msgid "Tag"
|
|
1675
1755
|
msgstr "Mot-clé"
|
|
1676
1756
|
|
|
1677
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1757
|
+
#: udata/harvest/backends/ckan/harvesters.py:32
|
|
1678
1758
|
msgid "A CKAN tag name"
|
|
1679
1759
|
msgstr "Un nom de mot-clé CKAN"
|
|
1680
1760
|
|
|
@@ -1837,4 +1917,3 @@ msgstr "Souvent réutilisé"
|
|
|
1837
1917
|
#, python-brace-format
|
|
1838
1918
|
msgid "Deletion of your inactive {site} account"
|
|
1839
1919
|
msgstr "Suppression de votre compte {site} inactif"
|
|
1840
|
-
|