udata 7.0.5.dev28140__py2.py3-none-any.whl → 7.0.6__py2.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/__init__.py +1 -1
- udata/commands/__init__.py +0 -3
- udata/commands/dcat.py +7 -4
- udata/core/activity/api.py +1 -1
- udata/core/activity/models.py +4 -3
- udata/core/activity/tasks.py +6 -5
- udata/core/dataset/factories.py +2 -4
- udata/core/dataset/models.py +2 -5
- udata/core/dataset/rdf.py +65 -25
- udata/core/dataset/search.py +0 -1
- udata/core/spatial/tests/test_api.py +7 -10
- udata/core/topic/factories.py +2 -2
- udata/harvest/backends/dcat.py +128 -24
- udata/harvest/tests/csw_dcat/XSLT.xml +4298 -0
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-1.xml +1291 -0
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-3.xml +1139 -0
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-5.xml +1266 -0
- udata/harvest/tests/dcat/bnodes.xml +7 -1
- udata/harvest/tests/dcat/evian.json +464 -0
- udata/harvest/tests/test_dcat_backend.py +82 -9
- udata/migrations/2024-03-22-migrate-activity-kwargs-to-extras.py +16 -0
- udata/rdf.py +22 -1
- udata/search/__init__.py +2 -2
- udata/static/chunks/{11.c0ccea08914b6b41568e.js → 11.a23c110811a9ac943478.js} +3 -3
- udata/static/chunks/{11.c0ccea08914b6b41568e.js.map → 11.a23c110811a9ac943478.js.map} +1 -1
- udata/static/chunks/{13.526a25163ababaa44409.js → 13.0889e093f8664e38568c.js} +2 -2
- udata/static/chunks/{13.526a25163ababaa44409.js.map → 13.0889e093f8664e38568c.js.map} +1 -1
- udata/static/chunks/{16.7901839b4227881947f6.js → 16.f41599478d3e97ad9a30.js} +2 -2
- udata/static/chunks/{16.7901839b4227881947f6.js.map → 16.f41599478d3e97ad9a30.js.map} +1 -1
- udata/static/chunks/{19.471d5a2a08eef6e5338a.js → 19.2b534a26af8b17e9170b.js} +3 -3
- udata/static/chunks/{19.471d5a2a08eef6e5338a.js.map → 19.2b534a26af8b17e9170b.js.map} +1 -1
- udata/static/chunks/{5.534e0531d0e2b150146f.js → 5.7115454a1183e5c12eef.js} +3 -3
- udata/static/chunks/{5.534e0531d0e2b150146f.js.map → 5.7115454a1183e5c12eef.js.map} +1 -1
- udata/static/chunks/{6.e56975229e6065f68d2a.js → 6.16bb24fb8240f2746488.js} +3 -3
- udata/static/chunks/{6.e56975229e6065f68d2a.js.map → 6.16bb24fb8240f2746488.js.map} +1 -1
- udata/static/chunks/{9.534426728626f11f4571.js → 9.3e752966ff14e47e11f2.js} +2 -2
- udata/static/chunks/{9.534426728626f11f4571.js.map → 9.3e752966ff14e47e11f2.js.map} +1 -1
- udata/static/common.js +1 -1
- udata/static/common.js.map +1 -1
- udata/tests/api/test_datasets_api.py +45 -45
- udata/tests/api/test_me_api.py +13 -14
- udata/tests/dataset/test_dataset_actions.py +2 -2
- udata/tests/dataset/test_dataset_commands.py +3 -3
- udata/tests/dataset/test_dataset_model.py +2 -1
- udata/tests/organization/test_organization_model.py +3 -3
- udata/tests/organization/test_organization_rdf.py +3 -3
- udata/tests/reuse/test_reuse_model.py +2 -2
- udata/tests/search/test_adapter.py +12 -12
- udata/tests/search/test_results.py +4 -4
- udata/tests/site/test_site_api.py +3 -3
- udata/tests/site/test_site_metrics.py +3 -3
- udata/tests/site/test_site_rdf.py +6 -6
- udata/tests/test_activity.py +12 -0
- udata/tests/test_transfer.py +18 -17
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +90 -44
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +91 -45
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +90 -44
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +91 -45
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +90 -44
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +91 -45
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +91 -45
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.dist-info}/METADATA +13 -3
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.dist-info}/RECORD +74 -68
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.dist-info}/entry_points.txt +1 -0
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.dist-info}/LICENSE +0 -0
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.dist-info}/WHEEL +0 -0
- {udata-7.0.5.dev28140.dist-info → udata-7.0.6.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: 2024-
|
|
6
|
-
"PO-Revision-Date: 2024-
|
|
5
|
+
"POT-Creation-Date: 2024-03-20 12:27+0100\n"
|
|
6
|
+
"PO-Revision-Date: 2024-03-20 14:47\n"
|
|
7
7
|
"Last-Translator: Open Data Team <i18n@opendata.team>\n"
|
|
8
8
|
"Language: fr\n"
|
|
9
9
|
"Language-Team: French\n"
|
|
@@ -42,7 +42,7 @@ msgstr "Votre mot de passe a été modifié"
|
|
|
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:430
|
|
46
46
|
msgid "This dataset has been archived"
|
|
47
47
|
msgstr "Ce jeu de données a été archivé"
|
|
48
48
|
|
|
@@ -171,7 +171,7 @@ msgstr "Type de badge (certifié, etc)"
|
|
|
171
171
|
|
|
172
172
|
#: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
|
|
173
173
|
#: udata/core/organization/forms.py:47 udata/core/post/forms.py:15
|
|
174
|
-
#: udata/core/topic/forms.py:
|
|
174
|
+
#: udata/core/topic/forms.py:17 udata/harvest/forms.py:60
|
|
175
175
|
#: udata/templates/api/admin.html:10
|
|
176
176
|
msgid "Name"
|
|
177
177
|
msgstr "Nom"
|
|
@@ -182,7 +182,7 @@ msgstr "Email"
|
|
|
182
182
|
|
|
183
183
|
#: udata/core/contact_point/forms.py:16 udata/core/dataset/forms.py:95
|
|
184
184
|
#: udata/core/dataset/forms.py:153 udata/core/reuse/forms.py:38
|
|
185
|
-
#: udata/core/topic/forms.py:
|
|
185
|
+
#: udata/core/topic/forms.py:15 udata/harvest/forms.py:69
|
|
186
186
|
msgid "Publish as"
|
|
187
187
|
msgstr "Publier en tant que"
|
|
188
188
|
|
|
@@ -224,7 +224,7 @@ msgstr "Titre"
|
|
|
224
224
|
|
|
225
225
|
#: udata/core/dataset/forms.py:56 udata/core/dataset/forms.py:126
|
|
226
226
|
#: udata/core/jobs/forms.py:28 udata/core/organization/forms.py:51
|
|
227
|
-
#: udata/core/reuse/forms.py:21 udata/core/topic/forms.py:
|
|
227
|
+
#: udata/core/reuse/forms.py:21 udata/core/topic/forms.py:19
|
|
228
228
|
#: udata/harvest/forms.py:62
|
|
229
229
|
msgid "Description"
|
|
230
230
|
msgstr "Description"
|
|
@@ -274,7 +274,7 @@ msgstr "La taille du fichier en octets"
|
|
|
274
274
|
msgid "Related dataset"
|
|
275
275
|
msgstr "Jeu de données concerné"
|
|
276
276
|
|
|
277
|
-
#: udata/core/dataset/forms.py:115
|
|
277
|
+
#: udata/core/dataset/forms.py:115 udata/tests/api/test_datasets_api.py:681
|
|
278
278
|
msgid "Wrong contact point id or contact point ownership mismatch"
|
|
279
279
|
msgstr "Mauvais ID de point de contact ou incompatibilité de possession du point de contact"
|
|
280
280
|
|
|
@@ -315,16 +315,17 @@ msgid "The period covered by the data"
|
|
|
315
315
|
msgstr "La période couverte par les données"
|
|
316
316
|
|
|
317
317
|
#: udata/core/dataset/forms.py:144 udata/core/spatial/forms.py:83
|
|
318
|
+
#: udata/core/topic/forms.py:25
|
|
318
319
|
msgid "Spatial coverage"
|
|
319
320
|
msgstr "Couverture spatiale"
|
|
320
321
|
|
|
321
|
-
#: udata/core/dataset/forms.py:145
|
|
322
|
+
#: udata/core/dataset/forms.py:145 udata/core/topic/forms.py:26
|
|
322
323
|
msgid "The geographical area covered by the data."
|
|
323
324
|
msgstr "La zone géographique couverte par les données."
|
|
324
325
|
|
|
325
326
|
#: udata/core/dataset/forms.py:146 udata/core/post/forms.py:26
|
|
326
327
|
#: udata/core/reuse/forms.py:29 udata/core/site/forms.py:13
|
|
327
|
-
#: udata/core/topic/forms.py:
|
|
328
|
+
#: udata/core/topic/forms.py:28
|
|
328
329
|
msgid "Tags"
|
|
329
330
|
msgstr "Mots-clés"
|
|
330
331
|
|
|
@@ -333,7 +334,7 @@ msgid "Some taxonomy keywords"
|
|
|
333
334
|
msgstr "Quelques mots-clés pour la taxonomie"
|
|
334
335
|
|
|
335
336
|
#: udata/core/dataset/forms.py:148 udata/core/reuse/forms.py:32
|
|
336
|
-
#: udata/core/topic/forms.py:
|
|
337
|
+
#: udata/core/topic/forms.py:29
|
|
337
338
|
msgid "Private"
|
|
338
339
|
msgstr "Privé"
|
|
339
340
|
|
|
@@ -473,45 +474,45 @@ msgstr "Fichier uploadé"
|
|
|
473
474
|
msgid "Remote file"
|
|
474
475
|
msgstr "Fichier distant"
|
|
475
476
|
|
|
476
|
-
#: udata/core/dataset/models.py:
|
|
477
|
+
#: udata/core/dataset/models.py:189
|
|
477
478
|
msgid "A schema must contains a name or an URL when a version is provided."
|
|
478
479
|
msgstr "Un schéma doit contenir un nom ou une URL lorsqu'une version est fournie."
|
|
479
480
|
|
|
480
|
-
#: udata/core/dataset/models.py:
|
|
481
|
+
#: udata/core/dataset/models.py:215 udata/tests/api/test_datasets_api.py:772
|
|
481
482
|
msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
|
|
482
483
|
msgstr "Le nom du schéma \"{schema}\" n'est pas une valeur autorisée. Valeurs autorisées : {values}"
|
|
483
484
|
|
|
484
|
-
#: udata/core/dataset/models.py:
|
|
485
|
+
#: udata/core/dataset/models.py:230 udata/tests/api/test_datasets_api.py:778
|
|
485
486
|
msgid "Version \"{version}\" is not an allowed value for the schema \"{name}\". Allowed versions: {values}"
|
|
486
487
|
msgstr "La version \"{version}\" n'est pas une valeur autorisée pour le schéma \"{name}\". Versions autorisées : {values}"
|
|
487
488
|
|
|
488
|
-
#: udata/core/dataset/models.py:
|
|
489
|
+
#: udata/core/dataset/models.py:483 udata/core/dataset/rdf.py:435
|
|
489
490
|
#: udata/tests/dataset/test_dataset_rdf.py:499
|
|
490
491
|
#: udata/tests/dataset/test_dataset_rdf.py:512
|
|
491
492
|
msgid "Nameless resource"
|
|
492
493
|
msgstr "Ressource sans nom"
|
|
493
494
|
|
|
494
|
-
#: udata/core/dataset/models.py:
|
|
495
|
+
#: udata/core/dataset/models.py:558
|
|
495
496
|
msgid "Future date of update"
|
|
496
497
|
msgstr "Future date de mise à jour"
|
|
497
498
|
|
|
498
|
-
#: udata/core/dataset/models.py:
|
|
499
|
+
#: udata/core/dataset/models.py:571 udata/models/datetime_fields.py:59
|
|
499
500
|
msgid "Creation date"
|
|
500
501
|
msgstr "Date de création"
|
|
501
502
|
|
|
502
|
-
#: udata/core/dataset/models.py:
|
|
503
|
+
#: udata/core/dataset/models.py:573 udata/models/datetime_fields.py:61
|
|
503
504
|
msgid "Last modification date"
|
|
504
505
|
msgstr "Date de dernière modification"
|
|
505
506
|
|
|
506
|
-
#: udata/core/dataset/models.py:
|
|
507
|
+
#: udata/core/dataset/models.py:582
|
|
507
508
|
msgid "Pivotal data"
|
|
508
509
|
msgstr "Données pivot"
|
|
509
510
|
|
|
510
|
-
#: udata/core/dataset/models.py:
|
|
511
|
+
#: udata/core/dataset/models.py:621
|
|
511
512
|
msgid "dataset"
|
|
512
513
|
msgstr "jeu de données"
|
|
513
514
|
|
|
514
|
-
#: udata/core/dataset/rdf.py:
|
|
515
|
+
#: udata/core/dataset/rdf.py:433 udata/tests/dataset/test_dataset_rdf.py:486
|
|
515
516
|
msgid "{format} resource"
|
|
516
517
|
msgstr "Ressource {format}"
|
|
517
518
|
|
|
@@ -614,37 +615,49 @@ msgstr "Numéro d'identification d'entreprise"
|
|
|
614
615
|
msgid "Role"
|
|
615
616
|
msgstr "Rôle"
|
|
616
617
|
|
|
617
|
-
#: udata/core/organization/models.py:
|
|
618
|
+
#: udata/core/organization/models.py:23
|
|
618
619
|
msgid "Administrator"
|
|
619
620
|
msgstr "Administrateur"
|
|
620
621
|
|
|
621
|
-
#: udata/core/organization/models.py:
|
|
622
|
+
#: udata/core/organization/models.py:24
|
|
622
623
|
msgid "Editor"
|
|
623
624
|
msgstr "Éditeur"
|
|
624
625
|
|
|
625
|
-
#: udata/core/organization/models.py:
|
|
626
|
+
#: udata/core/organization/models.py:30 udata/features/transfer/models.py:14
|
|
626
627
|
#: udata/harvest/models.py:22 udata/harvest/models.py:32 udata/harvest/models.py:70
|
|
627
628
|
msgid "Pending"
|
|
628
629
|
msgstr "En attente"
|
|
629
630
|
|
|
630
|
-
#: udata/core/organization/models.py:
|
|
631
|
+
#: udata/core/organization/models.py:31 udata/features/transfer/models.py:15
|
|
631
632
|
#: udata/harvest/models.py:71
|
|
632
633
|
msgid "Accepted"
|
|
633
634
|
msgstr "Acceptée"
|
|
634
635
|
|
|
635
|
-
#: udata/core/organization/models.py:
|
|
636
|
+
#: udata/core/organization/models.py:32 udata/features/transfer/models.py:16
|
|
636
637
|
#: udata/harvest/models.py:72
|
|
637
638
|
msgid "Refused"
|
|
638
639
|
msgstr "Refusée"
|
|
639
640
|
|
|
640
|
-
#: udata/core/organization/models.py:
|
|
641
|
+
#: udata/core/organization/models.py:145
|
|
641
642
|
msgid "Public Service"
|
|
642
643
|
msgstr "Service Public"
|
|
643
644
|
|
|
644
|
-
#: udata/core/organization/models.py:
|
|
645
|
+
#: udata/core/organization/models.py:146
|
|
645
646
|
msgid "Certified"
|
|
646
647
|
msgstr "Certifié"
|
|
647
648
|
|
|
649
|
+
#: udata/core/organization/models.py:147
|
|
650
|
+
msgid "Association"
|
|
651
|
+
msgstr "Association"
|
|
652
|
+
|
|
653
|
+
#: udata/core/organization/models.py:148
|
|
654
|
+
msgid "Company"
|
|
655
|
+
msgstr "Entreprise"
|
|
656
|
+
|
|
657
|
+
#: udata/core/organization/models.py:149
|
|
658
|
+
msgid "Local authority"
|
|
659
|
+
msgstr "Collectivité territoriale"
|
|
660
|
+
|
|
648
661
|
#: udata/core/organization/tasks.py:52
|
|
649
662
|
msgid "New membership request"
|
|
650
663
|
msgstr "Nouvelle demande d'adhésion"
|
|
@@ -668,6 +681,21 @@ msgstr "Votre organisation \"%(name)s\" a été certifiée"
|
|
|
668
681
|
msgid "Your organization \"%(name)s\" has been identified as public service"
|
|
669
682
|
msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant un service public"
|
|
670
683
|
|
|
684
|
+
#: udata/core/organization/tasks.py:126
|
|
685
|
+
#, python-format
|
|
686
|
+
msgid "Your organization \"%(name)s\" has been identified as a company"
|
|
687
|
+
msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une entreprise"
|
|
688
|
+
|
|
689
|
+
#: udata/core/organization/tasks.py:146
|
|
690
|
+
#, python-format
|
|
691
|
+
msgid "Your organization \"%(name)s\" has been identified as an association"
|
|
692
|
+
msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une association"
|
|
693
|
+
|
|
694
|
+
#: udata/core/organization/tasks.py:166
|
|
695
|
+
#, python-format
|
|
696
|
+
msgid "Your organization \"%(name)s\" has been identified as a local authority"
|
|
697
|
+
msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une collectivité territoriale"
|
|
698
|
+
|
|
671
699
|
#: udata/core/post/forms.py:16
|
|
672
700
|
msgid "Headline"
|
|
673
701
|
msgstr "Entête"
|
|
@@ -676,11 +704,11 @@ msgstr "Entête"
|
|
|
676
704
|
msgid "Content"
|
|
677
705
|
msgstr "Contenu"
|
|
678
706
|
|
|
679
|
-
#: udata/core/post/forms.py:19 udata/core/topic/forms.py:
|
|
707
|
+
#: udata/core/post/forms.py:19 udata/core/topic/forms.py:21
|
|
680
708
|
msgid "Associated datasets"
|
|
681
709
|
msgstr "Jeux de données associés"
|
|
682
710
|
|
|
683
|
-
#: udata/core/post/forms.py:20 udata/core/topic/forms.py:
|
|
711
|
+
#: udata/core/post/forms.py:20 udata/core/topic/forms.py:22
|
|
684
712
|
msgid "Associated reuses"
|
|
685
713
|
msgstr "Réutilisations associées"
|
|
686
714
|
|
|
@@ -940,7 +968,7 @@ msgstr "Collectivités d'outre-mer françaises"
|
|
|
940
968
|
msgid "French arrondissement"
|
|
941
969
|
msgstr "Arrondissement français"
|
|
942
970
|
|
|
943
|
-
#: udata/core/topic/forms.py:
|
|
971
|
+
#: udata/core/topic/forms.py:30
|
|
944
972
|
msgid "Featured"
|
|
945
973
|
msgstr "Mis en avant"
|
|
946
974
|
|
|
@@ -1016,54 +1044,54 @@ msgstr "Le rôle {role} n'existe pas"
|
|
|
1016
1044
|
msgid "Not a valid UUID"
|
|
1017
1045
|
msgstr "N'est pas un UUID"
|
|
1018
1046
|
|
|
1019
|
-
#: udata/forms/fields.py:
|
|
1047
|
+
#: udata/forms/fields.py:210 udata/tests/api/test_datasets_api.py:766
|
|
1020
1048
|
msgid "Invalid URL"
|
|
1021
1049
|
msgstr "URL invalide"
|
|
1022
1050
|
|
|
1023
|
-
#: udata/forms/fields.py:
|
|
1051
|
+
#: udata/forms/fields.py:414
|
|
1024
1052
|
#, python-format
|
|
1025
1053
|
msgid "Tag \"%(tag)s\" must be between %(min)d and %(max)d characters long."
|
|
1026
1054
|
msgstr "Le mot-clé \"%(tag)s\" doit avoir entre %(min)d et %(max)d caractères."
|
|
1027
1055
|
|
|
1028
|
-
#: udata/forms/fields.py:
|
|
1056
|
+
#: udata/forms/fields.py:454 udata/forms/fields.py:506
|
|
1029
1057
|
msgid "{0} does not exists"
|
|
1030
1058
|
msgstr "{0} n'existe pas"
|
|
1031
1059
|
|
|
1032
|
-
#: udata/forms/fields.py:
|
|
1060
|
+
#: udata/forms/fields.py:480 udata/tests/forms/test_model_field.py:318
|
|
1033
1061
|
#: udata/tests/forms/test_model_field.py:332
|
|
1034
1062
|
msgid "Missing \"id\" field"
|
|
1035
1063
|
msgstr "Champ \"id\" manquant"
|
|
1036
1064
|
|
|
1037
|
-
#: udata/forms/fields.py:
|
|
1065
|
+
#: udata/forms/fields.py:487
|
|
1038
1066
|
msgid "Expect a \"{0}\" class but \"{1}\" was found"
|
|
1039
1067
|
msgstr "Attend une classe \"{0}\" mais \"{1}\" a été trouvée"
|
|
1040
1068
|
|
|
1041
|
-
#: udata/forms/fields.py:
|
|
1069
|
+
#: udata/forms/fields.py:493 udata/tests/forms/test_model_field.py:43
|
|
1042
1070
|
#: udata/tests/forms/test_model_field.py:56
|
|
1043
1071
|
msgid "Expect both class and identifier"
|
|
1044
1072
|
msgstr "Attends à la fois une classe et un identifiant"
|
|
1045
1073
|
|
|
1046
|
-
#: udata/forms/fields.py:
|
|
1074
|
+
#: udata/forms/fields.py:539
|
|
1047
1075
|
msgid "Model for {0} not found"
|
|
1048
1076
|
msgstr "Modèle pour {0} non trouvé"
|
|
1049
1077
|
|
|
1050
|
-
#: udata/forms/fields.py:
|
|
1078
|
+
#: udata/forms/fields.py:574
|
|
1051
1079
|
msgid "Unknown identifiers: {identifiers}"
|
|
1052
1080
|
msgstr "Identifiants inconnus : {identifiers}"
|
|
1053
1081
|
|
|
1054
|
-
#: udata/forms/fields.py:
|
|
1082
|
+
#: udata/forms/fields.py:709
|
|
1055
1083
|
msgid "Unable to parse date range"
|
|
1056
1084
|
msgstr "Incapable de comprendre la date"
|
|
1057
1085
|
|
|
1058
|
-
#: udata/forms/fields.py:
|
|
1086
|
+
#: udata/forms/fields.py:736 udata/forms/fields.py:759
|
|
1059
1087
|
msgid "You must be authenticated"
|
|
1060
1088
|
msgstr "Vous devez être authentifié"
|
|
1061
1089
|
|
|
1062
|
-
#: udata/forms/fields.py:
|
|
1090
|
+
#: udata/forms/fields.py:739
|
|
1063
1091
|
msgid "You can only set yourself as owner"
|
|
1064
1092
|
msgstr "Vous ne pouvez définir que vous-même en tant que propriétaire"
|
|
1065
1093
|
|
|
1066
|
-
#: udata/forms/fields.py:
|
|
1094
|
+
#: udata/forms/fields.py:762
|
|
1067
1095
|
msgid "Permission denied for this organization"
|
|
1068
1096
|
msgstr "Permission refusée pour cette organisation"
|
|
1069
1097
|
|
|
@@ -1211,16 +1239,34 @@ msgstr "Partagez, améliorez et réutilisez les données publiques"
|
|
|
1211
1239
|
msgid "Your account has now been deleted"
|
|
1212
1240
|
msgstr "Votre compte est maintenant supprimé"
|
|
1213
1241
|
|
|
1214
|
-
#: udata/templates/mail/
|
|
1242
|
+
#: udata/templates/mail/badge_added_association.html:6
|
|
1215
1243
|
#, python-format
|
|
1216
|
-
msgid "%(user)s has
|
|
1217
|
-
msgstr "%(user)s a
|
|
1244
|
+
msgid "%(user)s has identified your organization \"%(name)s\" as an association"
|
|
1245
|
+
msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une association"
|
|
1218
1246
|
|
|
1247
|
+
#: udata/templates/mail/badge_added_association.html:27
|
|
1219
1248
|
#: udata/templates/mail/badge_added_certified.html:27
|
|
1249
|
+
#: udata/templates/mail/badge_added_company.html:27
|
|
1250
|
+
#: udata/templates/mail/badge_added_local_authority.html:27
|
|
1220
1251
|
#: udata/templates/mail/badge_added_public_service.html:27
|
|
1221
1252
|
msgid "See the badge"
|
|
1222
1253
|
msgstr "Voir le badge"
|
|
1223
1254
|
|
|
1255
|
+
#: udata/templates/mail/badge_added_certified.html:6
|
|
1256
|
+
#, python-format
|
|
1257
|
+
msgid "%(user)s has certified your organization \"%(name)s\""
|
|
1258
|
+
msgstr "%(user)s a certifié votre organisation \"%(name)s\""
|
|
1259
|
+
|
|
1260
|
+
#: udata/templates/mail/badge_added_company.html:6
|
|
1261
|
+
#, python-format
|
|
1262
|
+
msgid "%(user)s has identified your organization \"%(name)s\" as a company"
|
|
1263
|
+
msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une entreprise"
|
|
1264
|
+
|
|
1265
|
+
#: udata/templates/mail/badge_added_local_authority.html:6
|
|
1266
|
+
#, python-format
|
|
1267
|
+
msgid "%(user)s has identified your organization \"%(name)s\" as a local authority"
|
|
1268
|
+
msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une collectivité territoriale"
|
|
1269
|
+
|
|
1224
1270
|
#: udata/templates/mail/badge_added_public_service.html:6
|
|
1225
1271
|
#, python-format
|
|
1226
1272
|
msgid "%(user)s has identified your organization \"%(name)s\" as public service"
|
|
Binary file
|