udata 12.0.2.dev15__py3-none-any.whl → 13.0.1.dev21__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.

Files changed (258) hide show
  1. udata/api/__init__.py +1 -0
  2. udata/api_fields.py +10 -4
  3. udata/app.py +11 -10
  4. udata/auth/__init__.py +9 -10
  5. udata/auth/mails.py +137 -45
  6. udata/auth/views.py +5 -12
  7. udata/commands/__init__.py +2 -3
  8. udata/commands/info.py +1 -3
  9. udata/commands/tests/test_fixtures.py +6 -3
  10. udata/core/access_type/api.py +18 -0
  11. udata/core/access_type/constants.py +98 -0
  12. udata/core/access_type/models.py +44 -0
  13. udata/core/activity/models.py +1 -1
  14. udata/core/badges/models.py +1 -1
  15. udata/core/badges/tasks.py +35 -1
  16. udata/core/badges/tests/test_commands.py +2 -4
  17. udata/core/badges/tests/test_model.py +2 -2
  18. udata/core/badges/tests/test_tasks.py +55 -0
  19. udata/core/constants.py +1 -0
  20. udata/core/contact_point/models.py +8 -0
  21. udata/core/dataservices/api.py +3 -3
  22. udata/core/dataservices/apiv2.py +3 -1
  23. udata/core/dataservices/constants.py +0 -29
  24. udata/core/dataservices/models.py +44 -44
  25. udata/core/dataservices/rdf.py +2 -1
  26. udata/core/dataservices/search.py +5 -9
  27. udata/core/dataservices/tasks.py +33 -0
  28. udata/core/dataset/api_fields.py +11 -0
  29. udata/core/dataset/apiv2.py +11 -0
  30. udata/core/dataset/constants.py +0 -1
  31. udata/core/dataset/forms.py +29 -0
  32. udata/core/dataset/models.py +16 -4
  33. udata/core/dataset/rdf.py +2 -1
  34. udata/core/dataset/search.py +2 -2
  35. udata/core/dataset/tasks.py +86 -8
  36. udata/core/discussions/mails.py +63 -0
  37. udata/core/discussions/tasks.py +4 -18
  38. udata/core/metrics/__init__.py +0 -6
  39. udata/core/organization/api.py +3 -1
  40. udata/core/organization/mails.py +144 -0
  41. udata/core/organization/models.py +2 -1
  42. udata/core/organization/search.py +1 -1
  43. udata/core/organization/tasks.py +21 -49
  44. udata/core/pages/tests/test_api.py +0 -2
  45. udata/core/reuse/api.py +27 -1
  46. udata/core/reuse/mails.py +21 -0
  47. udata/core/reuse/models.py +10 -1
  48. udata/core/reuse/search.py +1 -1
  49. udata/core/reuse/tasks.py +2 -3
  50. udata/core/site/models.py +2 -6
  51. udata/core/spatial/tests/test_api.py +17 -20
  52. udata/core/spatial/tests/test_models.py +3 -3
  53. udata/core/user/mails.py +54 -0
  54. udata/core/user/models.py +2 -3
  55. udata/core/user/tasks.py +8 -23
  56. udata/core/user/tests/test_user_model.py +2 -6
  57. udata/entrypoints.py +0 -5
  58. udata/features/identicon/tests/test_backends.py +3 -13
  59. udata/forms/fields.py +3 -3
  60. udata/forms/widgets.py +2 -2
  61. udata/frontend/__init__.py +3 -32
  62. udata/harvest/actions.py +4 -9
  63. udata/harvest/api.py +5 -14
  64. udata/harvest/backends/__init__.py +20 -11
  65. udata/harvest/backends/base.py +2 -2
  66. udata/harvest/backends/ckan/harvesters.py +2 -1
  67. udata/harvest/backends/dcat.py +3 -0
  68. udata/harvest/backends/maaf.py +1 -0
  69. udata/harvest/commands.py +6 -4
  70. udata/harvest/forms.py +9 -6
  71. udata/harvest/tasks.py +3 -5
  72. udata/harvest/tests/ckan/test_ckan_backend.py +300 -337
  73. udata/harvest/tests/ckan/test_ckan_backend_errors.py +94 -99
  74. udata/harvest/tests/ckan/test_ckan_backend_filters.py +128 -122
  75. udata/harvest/tests/ckan/test_dkan_backend.py +39 -51
  76. udata/harvest/tests/dcat/datara--5a26b0f6-0ccf-46ad-ac58-734054b91977.rdf.xml +255 -0
  77. udata/harvest/tests/dcat/datara--f40c3860-7236-4b30-a141-23b8ae33f7b2.rdf.xml +289 -0
  78. udata/harvest/tests/factories.py +1 -1
  79. udata/harvest/tests/test_actions.py +11 -9
  80. udata/harvest/tests/test_api.py +4 -5
  81. udata/harvest/tests/test_base_backend.py +5 -4
  82. udata/harvest/tests/test_dcat_backend.py +50 -19
  83. udata/harvest/tests/test_models.py +2 -4
  84. udata/harvest/tests/test_notifications.py +2 -4
  85. udata/harvest/tests/test_tasks.py +2 -3
  86. udata/mail.py +90 -53
  87. udata/migrations/2025-01-05-dataservices-fields-changes.py +8 -14
  88. udata/migrations/2025-10-21-remove-ckan-harvest-modified-at.py +28 -0
  89. udata/migrations/2025-10-29-harvesters-sources-integrity.py +27 -0
  90. udata/mongo/taglist_field.py +3 -3
  91. udata/rdf.py +32 -15
  92. udata/sentry.py +3 -4
  93. udata/settings.py +7 -2
  94. udata/tags.py +5 -5
  95. udata/tasks.py +3 -3
  96. udata/templates/mail/message.html +65 -0
  97. udata/templates/mail/message.txt +16 -0
  98. udata/tests/__init__.py +40 -58
  99. udata/tests/api/__init__.py +87 -2
  100. udata/tests/api/test_activities_api.py +17 -23
  101. udata/tests/api/test_auth_api.py +2 -4
  102. udata/tests/api/test_contact_points.py +48 -54
  103. udata/tests/api/test_dataservices_api.py +57 -37
  104. udata/tests/api/test_datasets_api.py +146 -49
  105. udata/tests/api/test_me_api.py +4 -6
  106. udata/tests/api/test_organizations_api.py +19 -38
  107. udata/tests/api/test_reports_api.py +0 -4
  108. udata/tests/api/test_reuses_api.py +92 -19
  109. udata/tests/api/test_security_api.py +124 -0
  110. udata/tests/api/test_swagger.py +2 -3
  111. udata/tests/api/test_tags_api.py +6 -7
  112. udata/tests/api/test_transfer_api.py +0 -2
  113. udata/tests/api/test_user_api.py +8 -10
  114. udata/tests/apiv2/test_datasets.py +0 -4
  115. udata/tests/apiv2/test_me_api.py +0 -2
  116. udata/tests/apiv2/test_organizations.py +0 -2
  117. udata/tests/apiv2/test_swagger.py +2 -3
  118. udata/tests/apiv2/test_topics.py +0 -2
  119. udata/tests/cli/test_cli_base.py +14 -12
  120. udata/tests/cli/test_db_cli.py +51 -54
  121. udata/tests/contact_point/test_contact_point_models.py +2 -2
  122. udata/tests/dataservice/test_csv_adapter.py +2 -5
  123. udata/tests/dataservice/test_dataservice_rdf.py +8 -6
  124. udata/tests/dataservice/test_dataservice_tasks.py +36 -38
  125. udata/tests/dataset/test_csv_adapter.py +2 -5
  126. udata/tests/dataset/test_dataset_actions.py +2 -4
  127. udata/tests/dataset/test_dataset_commands.py +2 -4
  128. udata/tests/dataset/test_dataset_events.py +3 -3
  129. udata/tests/dataset/test_dataset_model.py +6 -7
  130. udata/tests/dataset/test_dataset_rdf.py +201 -12
  131. udata/tests/dataset/test_dataset_recommendations.py +2 -2
  132. udata/tests/dataset/test_dataset_tasks.py +66 -68
  133. udata/tests/dataset/test_resource_preview.py +39 -48
  134. udata/tests/dataset/test_transport_tasks.py +2 -2
  135. udata/tests/features/territories/__init__.py +0 -6
  136. udata/tests/features/territories/test_territories_api.py +25 -24
  137. udata/tests/forms/test_current_user_field.py +2 -2
  138. udata/tests/forms/test_dict_field.py +2 -4
  139. udata/tests/forms/test_extras_fields.py +2 -3
  140. udata/tests/forms/test_image_field.py +2 -2
  141. udata/tests/forms/test_model_field.py +2 -4
  142. udata/tests/forms/test_publish_as_field.py +2 -4
  143. udata/tests/forms/test_user_forms.py +26 -29
  144. udata/tests/frontend/test_auth.py +2 -3
  145. udata/tests/frontend/test_csv.py +5 -6
  146. udata/tests/frontend/test_error_handlers.py +2 -3
  147. udata/tests/frontend/test_hooks.py +5 -7
  148. udata/tests/frontend/test_markdown.py +3 -4
  149. udata/tests/helpers.py +2 -7
  150. udata/tests/metrics/test_metrics.py +52 -48
  151. udata/tests/metrics/test_tasks.py +154 -150
  152. udata/tests/organization/test_csv_adapter.py +2 -5
  153. udata/tests/organization/test_notifications.py +2 -4
  154. udata/tests/organization/test_organization_model.py +3 -4
  155. udata/tests/organization/test_organization_rdf.py +2 -8
  156. udata/tests/plugin.py +6 -110
  157. udata/tests/reuse/test_reuse_model.py +3 -4
  158. udata/tests/site/test_site_api.py +0 -2
  159. udata/tests/site/test_site_csv_exports.py +0 -2
  160. udata/tests/site/test_site_metrics.py +2 -4
  161. udata/tests/site/test_site_model.py +2 -2
  162. udata/tests/site/test_site_rdf.py +4 -7
  163. udata/tests/test_activity.py +3 -3
  164. udata/tests/test_api_fields.py +6 -9
  165. udata/tests/test_cors.py +0 -2
  166. udata/tests/test_dcat_commands.py +2 -3
  167. udata/tests/test_discussions.py +2 -7
  168. udata/tests/test_mail.py +150 -114
  169. udata/tests/test_migrations.py +413 -419
  170. udata/tests/test_model.py +10 -11
  171. udata/tests/test_notifications.py +2 -3
  172. udata/tests/test_owned.py +3 -3
  173. udata/tests/test_rdf.py +19 -15
  174. udata/tests/test_routing.py +5 -5
  175. udata/tests/test_storages.py +6 -5
  176. udata/tests/test_tags.py +2 -4
  177. udata/tests/test_topics.py +2 -4
  178. udata/tests/test_transfer.py +4 -5
  179. udata/tests/topic/test_topic_tasks.py +25 -27
  180. udata/tests/user/test_user_rdf.py +2 -8
  181. udata/tests/user/test_user_tasks.py +3 -5
  182. udata/tests/workers/test_jobs_commands.py +2 -2
  183. udata/tests/workers/test_tasks_routing.py +27 -27
  184. udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
  185. udata/translations/ar/LC_MESSAGES/udata.po +369 -435
  186. udata/translations/de/LC_MESSAGES/udata.mo +0 -0
  187. udata/translations/de/LC_MESSAGES/udata.po +371 -437
  188. udata/translations/es/LC_MESSAGES/udata.mo +0 -0
  189. udata/translations/es/LC_MESSAGES/udata.po +369 -435
  190. udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
  191. udata/translations/fr/LC_MESSAGES/udata.po +381 -447
  192. udata/translations/it/LC_MESSAGES/udata.mo +0 -0
  193. udata/translations/it/LC_MESSAGES/udata.po +371 -437
  194. udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
  195. udata/translations/pt/LC_MESSAGES/udata.po +371 -437
  196. udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
  197. udata/translations/sr/LC_MESSAGES/udata.po +372 -438
  198. udata/translations/udata.pot +379 -440
  199. udata/utils.py +14 -2
  200. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/METADATA +1 -2
  201. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/RECORD +205 -242
  202. udata/templates/mail/account_deleted.html +0 -5
  203. udata/templates/mail/account_deleted.txt +0 -6
  204. udata/templates/mail/account_inactivity.html +0 -40
  205. udata/templates/mail/account_inactivity.txt +0 -31
  206. udata/templates/mail/badge_added_association.html +0 -33
  207. udata/templates/mail/badge_added_association.txt +0 -11
  208. udata/templates/mail/badge_added_certified.html +0 -33
  209. udata/templates/mail/badge_added_certified.txt +0 -11
  210. udata/templates/mail/badge_added_company.html +0 -33
  211. udata/templates/mail/badge_added_company.txt +0 -11
  212. udata/templates/mail/badge_added_local_authority.html +0 -33
  213. udata/templates/mail/badge_added_local_authority.txt +0 -11
  214. udata/templates/mail/badge_added_public_service.html +0 -33
  215. udata/templates/mail/badge_added_public_service.txt +0 -11
  216. udata/templates/mail/discussion_closed.html +0 -47
  217. udata/templates/mail/discussion_closed.txt +0 -16
  218. udata/templates/mail/inactive_account_deleted.html +0 -5
  219. udata/templates/mail/inactive_account_deleted.txt +0 -6
  220. udata/templates/mail/membership_refused.html +0 -20
  221. udata/templates/mail/membership_refused.txt +0 -11
  222. udata/templates/mail/membership_request.html +0 -46
  223. udata/templates/mail/membership_request.txt +0 -12
  224. udata/templates/mail/new_discussion.html +0 -44
  225. udata/templates/mail/new_discussion.txt +0 -15
  226. udata/templates/mail/new_discussion_comment.html +0 -45
  227. udata/templates/mail/new_discussion_comment.txt +0 -16
  228. udata/templates/mail/new_member.html +0 -27
  229. udata/templates/mail/new_member.txt +0 -11
  230. udata/templates/mail/new_reuse.html +0 -37
  231. udata/templates/mail/new_reuse.txt +0 -9
  232. udata/templates/mail/test.html +0 -6
  233. udata/templates/mail/test.txt +0 -6
  234. udata/templates/mail/user_mail_card.html +0 -26
  235. udata/templates/security/email/base.html +0 -105
  236. udata/templates/security/email/base.txt +0 -6
  237. udata/templates/security/email/button.html +0 -3
  238. udata/templates/security/email/change_notice.html +0 -22
  239. udata/templates/security/email/change_notice.txt +0 -8
  240. udata/templates/security/email/confirmation_instructions.html +0 -20
  241. udata/templates/security/email/confirmation_instructions.txt +0 -7
  242. udata/templates/security/email/login_instructions.html +0 -19
  243. udata/templates/security/email/login_instructions.txt +0 -7
  244. udata/templates/security/email/reset_instructions.html +0 -24
  245. udata/templates/security/email/reset_instructions.txt +0 -9
  246. udata/templates/security/email/reset_notice.html +0 -11
  247. udata/templates/security/email/reset_notice.txt +0 -4
  248. udata/templates/security/email/welcome.html +0 -24
  249. udata/templates/security/email/welcome.txt +0 -9
  250. udata/templates/security/email/welcome_existing.html +0 -32
  251. udata/templates/security/email/welcome_existing.txt +0 -14
  252. udata/terms.md +0 -6
  253. udata/tests/frontend/__init__.py +0 -23
  254. udata/tests/metrics/conftest.py +0 -15
  255. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/WHEEL +0 -0
  256. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/entry_points.txt +0 -0
  257. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/licenses/LICENSE +0 -0
  258. {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.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-10-08 15:31+0200\n"
6
- "PO-Revision-Date: 2025-10-14 08:42\n"
5
+ "POT-Creation-Date: 2025-11-05 10:05+0100\n"
6
+ "PO-Revision-Date: 2025-11-05 15:55\n"
7
7
  "Last-Translator: Open Data Team <i18n@opendata.team>\n"
8
8
  "Language: fr\n"
9
9
  "Language-Team: French\n"
@@ -30,11 +30,11 @@ msgstr "Veuillez confirmer votre adresse e-mail"
30
30
  msgid "Login instructions"
31
31
  msgstr "Instructions de connexion"
32
32
 
33
- #: udata/settings.py:132
33
+ #: udata/auth/mails.py:125 udata/settings.py:132
34
34
  msgid "Your password has been reset"
35
35
  msgstr "Votre mot de passe a été réinitialisé"
36
36
 
37
- #: udata/settings.py:133
37
+ #: udata/auth/mails.py:137 udata/settings.py:133
38
38
  msgid "Your password has been changed"
39
39
  msgstr "Votre mot de passe a été modifié"
40
40
 
@@ -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:547
45
+ #: udata/settings.py:544
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:1155 udata/tests/test_model.py:403
54
+ #: udata/tests/api/test_datasets_api.py:1169 udata/tests/test_model.py:402
55
55
  #: udata/uris.py:56
56
56
  #, python-brace-format
57
57
  msgid "Invalid URL \"{url}\""
@@ -85,7 +85,7 @@ msgstr "{0} est une IP de masque"
85
85
  msgid "is a local URL"
86
86
  msgstr "est une URL locale"
87
87
 
88
- #: udata/tests/test_model.py:421 udata/uris.py:159
88
+ #: udata/tests/test_model.py:420 udata/uris.py:159
89
89
  msgid "is a private URL"
90
90
  msgstr "est une URL privée"
91
91
 
@@ -168,6 +168,60 @@ msgstr "Les adresses emails ne sont pas identiques"
168
168
  msgid "Change email"
169
169
  msgstr "Modifier l'adresse email"
170
170
 
171
+ #: udata/auth/mails.py:67 udata/auth/mails.py:71 udata/auth/mails.py:96
172
+ #: udata/auth/mails.py:99
173
+ msgid "Confirm your email address"
174
+ msgstr "Confirmez votre adresse e-mail"
175
+
176
+ #: udata/auth/mails.py:69
177
+ #, python-format
178
+ msgid "Welcome to %(site)s!"
179
+ msgstr "Bienvenue sur %(site)s !"
180
+
181
+ #: udata/auth/mails.py:70 udata/auth/mails.py:98
182
+ msgid "Please confirm your email address."
183
+ msgstr "Veuillez confirmer votre adresse e-mail."
184
+
185
+ #: udata/auth/mails.py:80
186
+ msgid "Your email address is already associated with an account"
187
+ msgstr "Votre adresse e-mail est déjà associée à un compte"
188
+
189
+ #: udata/auth/mails.py:83
190
+ #, python-format
191
+ msgid "Someone (you?) tried to create an account on %(site)s with your email."
192
+ msgstr "Quelqu'un (vous? ) a essayé de créer un compte sur %(site)s avec votre email."
193
+
194
+ #: udata/auth/mails.py:86
195
+ msgid "If you forgot your password, you can reset it."
196
+ msgstr "Si vous avez oublié votre mot de passe, vous pouvez le réinitialiser."
197
+
198
+ #: udata/auth/mails.py:87 udata/auth/mails.py:109 udata/auth/mails.py:116
199
+ #: udata/auth/mails.py:144
200
+ msgid "Reset your password"
201
+ msgstr "Réinitialisez votre mot de passe"
202
+
203
+ #: udata/auth/mails.py:112
204
+ #, python-format
205
+ msgid "Someone requested a password reset for your %(site)s account."
206
+ msgstr "Quelqu'un a demandé une réinitialisation du mot de passe pour votre compte %(site)s."
207
+
208
+ #: udata/auth/mails.py:115
209
+ msgid "If this wasn't you, please ignore this email."
210
+ msgstr "Si ce n'était pas vous, veuillez ignorer cet e-mail."
211
+
212
+ #: udata/auth/mails.py:127
213
+ msgid "Your data.gouv.fr password has been reset."
214
+ msgstr "Votre mot de passe data.gouv.fr a été réinitialisé."
215
+
216
+ #: udata/auth/mails.py:140
217
+ #, python-format
218
+ msgid "Your %(site)s account password has been changed."
219
+ msgstr "Le mot de passe de votre compte %(site)s a été modifié."
220
+
221
+ #: udata/auth/mails.py:143
222
+ msgid "If you did not change your password, please reset it."
223
+ msgstr "Si vous n'avez pas changé votre mot de passe, veuillez le réinitialiser."
224
+
171
225
  #: udata/auth/password_validation.py:26
172
226
  #, python-brace-format
173
227
  msgid "Password must be at least {pass_length} characters long"
@@ -189,10 +243,6 @@ msgstr "Le mot de passe doit contenir des majuscules"
189
243
  msgid "Password must contain symbols"
190
244
  msgstr "Le mot de passe doit contenir des caractères spéciaux"
191
245
 
192
- #: udata/auth/views.py:52
193
- msgid "Confirm change of email instructions"
194
- msgstr "Instructions pour confirmer le changement d'email"
195
-
196
246
  #: udata/commands/init.py:32
197
247
  msgid "Do you want to create a superadmin user?"
198
248
  msgstr "Souhaitez-vous créer un super utilisateur ?"
@@ -214,7 +264,7 @@ msgid "Your udata instance is ready!"
214
264
  msgstr "Votre instance udata est prête !"
215
265
 
216
266
  #: udata/core/owned.py:64 udata/forms/fields.py:759
217
- #: udata/tests/api/test_dataservices_api.py:550
267
+ #: udata/tests/api/test_dataservices_api.py:547
218
268
  msgid "You can only set yourself as owner"
219
269
  msgstr "Vous ne pouvez définir que vous-même en tant que propriétaire"
220
270
 
@@ -223,7 +273,7 @@ msgid "Unknown organization"
223
273
  msgstr "Organisation inconnue"
224
274
 
225
275
  #: udata/core/owned.py:77 udata/forms/fields.py:791
226
- #: udata/tests/api/test_dataservices_api.py:563
276
+ #: udata/tests/api/test_dataservices_api.py:560
227
277
  msgid "Permission denied for this organization"
228
278
  msgstr "Permission refusée pour cette organisation"
229
279
 
@@ -242,7 +292,6 @@ msgstr "Un point de contact existe déjà avec ces informations."
242
292
  #: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
243
293
  #: udata/core/organization/forms.py:46 udata/core/post/forms.py:15
244
294
  #: udata/core/topic/forms.py:37 udata/harvest/forms.py:78
245
- #: udata/templates/api/admin.html:10
246
295
  msgid "Name"
247
296
  msgstr "Nom"
248
297
 
@@ -259,7 +308,7 @@ msgid "The organization web contact form"
259
308
  msgstr "Formulaire de contact web de l'organisation"
260
309
 
261
310
  #: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:115
262
- #: udata/core/dataset/forms.py:189 udata/core/discussions/forms.py:13
311
+ #: udata/core/dataset/forms.py:191 udata/core/discussions/forms.py:13
263
312
  #: udata/core/discussions/forms.py:29 udata/core/topic/forms.py:35
264
313
  #: udata/harvest/forms.py:87
265
314
  msgid "Publish as"
@@ -281,7 +330,39 @@ msgstr "Créateur"
281
330
  msgid "Publisher"
282
331
  msgstr "Éditeur"
283
332
 
284
- #: udata/core/contact_point/models.py:26 udata/tests/api/test_contact_points.py:142
333
+ #: udata/core/contact_point/models.py:12
334
+ msgid "Rights Holder"
335
+ msgstr "Détenteur des droits"
336
+
337
+ #: udata/core/contact_point/models.py:13
338
+ msgid "Custodian"
339
+ msgstr "Gestionnaire"
340
+
341
+ #: udata/core/contact_point/models.py:14
342
+ msgid "Distributor"
343
+ msgstr "Distributeur"
344
+
345
+ #: udata/core/contact_point/models.py:15
346
+ msgid "Originator"
347
+ msgstr "Producteur"
348
+
349
+ #: udata/core/contact_point/models.py:16
350
+ msgid "Principal Investigator"
351
+ msgstr "Investigateur principal"
352
+
353
+ #: udata/core/contact_point/models.py:17
354
+ msgid "Processor"
355
+ msgstr "Exécutant"
356
+
357
+ #: udata/core/contact_point/models.py:18
358
+ msgid "Resource Provider"
359
+ msgstr "Fournisseur"
360
+
361
+ #: udata/core/contact_point/models.py:19
362
+ msgid "User"
363
+ msgstr "Utilisateur"
364
+
365
+ #: udata/core/contact_point/models.py:34 udata/tests/api/test_contact_points.py:136
285
366
  msgid "At least an email or a contact form is required for a contact point"
286
367
  msgstr "Au moins un e-mail ou un formulaire de contact est requis pour un point de contact"
287
368
 
@@ -309,12 +390,12 @@ msgstr "Vous ne pouvez définir qu'une seule condition pour une audience donnée
309
390
  msgid "dataservice"
310
391
  msgstr "API"
311
392
 
312
- #: udata/core/dataservices/models.py:270 udata/core/dataset/models.py:605
393
+ #: udata/core/dataservices/models.py:270 udata/core/dataset/models.py:575
313
394
  #: udata/mongo/datetime_fields.py:60
314
395
  msgid "Creation date"
315
396
  msgstr "Date de création"
316
397
 
317
- #: udata/core/dataservices/models.py:276 udata/core/dataset/models.py:610
398
+ #: udata/core/dataservices/models.py:276 udata/core/dataset/models.py:580
318
399
  #: udata/mongo/datetime_fields.py:66
319
400
  msgid "Last modification date"
320
401
  msgstr "Date de dernière modification"
@@ -343,7 +424,7 @@ msgstr "a mis à jour une ressource"
343
424
  msgid "removed a resource from a dataset"
344
425
  msgstr "a supprimé une ressource d'un jeu de données"
345
426
 
346
- #: udata/core/dataset/api.py:328
427
+ #: udata/core/dataset/api.py:332
347
428
  msgid "Latest datasets"
348
429
  msgstr "Derniers jeux de données"
349
430
 
@@ -504,7 +585,11 @@ msgstr "Non planifié"
504
585
  msgid "Other"
505
586
  msgstr "Autre"
506
587
 
507
- #: udata/core/dataset/constants.py:74
588
+ #: udata/core/dataset/constants.py:74 udata/tests/test_mail.py:17
589
+ #: udata/tests/test_mail.py:32 udata/tests/test_mail.py:45
590
+ #: udata/tests/test_mail.py:61 udata/tests/test_mail.py:75
591
+ #: udata/tests/test_mail.py:93 udata/tests/test_mail.py:108
592
+ #: udata/tests/test_mail.py:130 udata/tests/test_mail.py:150
508
593
  msgid "Unknown"
509
594
  msgstr "Inconnu"
510
595
 
@@ -552,16 +637,13 @@ msgstr "Nom du schéma"
552
637
  msgid "Version of the schema"
553
638
  msgstr "Version du schéma"
554
639
 
555
- #: udata/core/dataset/forms.py:64 udata/core/dataset/forms.py:146
640
+ #: udata/core/dataset/forms.py:64 udata/core/dataset/forms.py:148
556
641
  #: udata/core/discussions/forms.py:14 udata/core/discussions/forms.py:25
557
642
  #: udata/core/site/forms.py:12 udata/core/topic/forms.py:13
558
- #: udata/templates/mail/discussion_closed.html:26
559
- #: udata/templates/mail/new_discussion.html:25
560
- #: udata/templates/mail/new_discussion_comment.html:26
561
643
  msgid "Title"
562
644
  msgstr "Titre"
563
645
 
564
- #: udata/core/dataset/forms.py:67 udata/core/dataset/forms.py:150
646
+ #: udata/core/dataset/forms.py:67 udata/core/dataset/forms.py:152
565
647
  #: udata/core/jobs/forms.py:28 udata/core/organization/forms.py:50
566
648
  #: udata/core/topic/forms.py:14 udata/core/topic/forms.py:38
567
649
  #: udata/harvest/forms.py:80
@@ -612,148 +694,144 @@ msgstr "La taille du fichier en octets"
612
694
  msgid "Related dataset"
613
695
  msgstr "Jeu de données concerné"
614
696
 
615
- #: udata/core/dataset/forms.py:138 udata/tests/api/test_datasets_api.py:1067
697
+ #: udata/core/dataset/forms.py:140 udata/tests/api/test_datasets_api.py:1081
616
698
  msgid "Wrong contact point id or contact point ownership mismatch"
617
699
  msgstr "Mauvais ID de point de contact ou incompatibilité de possession du point de contact"
618
700
 
619
- #: udata/core/dataset/forms.py:148 udata/core/organization/forms.py:48
701
+ #: udata/core/dataset/forms.py:150 udata/core/organization/forms.py:48
620
702
  msgid "Acronym"
621
703
  msgstr "Sigle"
622
704
 
623
- #: udata/core/dataset/forms.py:148
705
+ #: udata/core/dataset/forms.py:150
624
706
  msgid "An optional acronym"
625
707
  msgstr "Un acronyme facultatif"
626
708
 
627
- #: udata/core/dataset/forms.py:152
709
+ #: udata/core/dataset/forms.py:154
628
710
  msgid "The details about the dataset (collection process, specifics...)."
629
711
  msgstr "Les détails sur le jeu de données (processus de collecte, spécificités...)."
630
712
 
631
- #: udata/core/dataset/forms.py:155
713
+ #: udata/core/dataset/forms.py:157
632
714
  msgid "Short description"
633
715
  msgstr "Description courte"
634
716
 
635
- #: udata/core/dataset/forms.py:157
717
+ #: udata/core/dataset/forms.py:159
636
718
  msgid "A short description of the dataset."
637
719
  msgstr "Une courte description du jeu de données."
638
720
 
639
- #: udata/core/dataset/forms.py:159
721
+ #: udata/core/dataset/forms.py:161
640
722
  msgid "License"
641
723
  msgstr "Licence"
642
724
 
643
- #: udata/core/dataset/forms.py:161
725
+ #: udata/core/dataset/forms.py:163
644
726
  msgid "Update frequency"
645
727
  msgstr "Fréquence de mise à jour"
646
728
 
647
- #: udata/core/dataset/forms.py:171
729
+ #: udata/core/dataset/forms.py:173
648
730
  msgid "The frequency at which data are updated."
649
731
  msgstr "La fréquence à laquelle les données sont mises à jour."
650
732
 
651
- #: udata/core/dataset/forms.py:173
733
+ #: udata/core/dataset/forms.py:175
652
734
  msgid "Expected frequency date"
653
735
  msgstr "Date de mise à jour prévue"
654
736
 
655
- #: udata/core/dataset/forms.py:177
737
+ #: udata/core/dataset/forms.py:179
656
738
  msgid "Temporal coverage"
657
739
  msgstr "Couverture temporelle"
658
740
 
659
- #: udata/core/dataset/forms.py:177
741
+ #: udata/core/dataset/forms.py:179
660
742
  msgid "The period covered by the data"
661
743
  msgstr "La période couverte par les données"
662
744
 
663
- #: udata/core/dataset/forms.py:180 udata/core/spatial/forms.py:85
745
+ #: udata/core/dataset/forms.py:182 udata/core/spatial/forms.py:85
664
746
  #: udata/core/topic/forms.py:86
665
747
  msgid "Spatial coverage"
666
748
  msgstr "Couverture spatiale"
667
749
 
668
- #: udata/core/dataset/forms.py:180 udata/core/topic/forms.py:86
750
+ #: udata/core/dataset/forms.py:182 udata/core/topic/forms.py:86
669
751
  msgid "The geographical area covered by the data."
670
752
  msgstr "La zone géographique couverte par les données."
671
753
 
672
- #: udata/core/dataset/forms.py:182 udata/core/post/forms.py:26
754
+ #: udata/core/dataset/forms.py:184 udata/core/post/forms.py:26
673
755
  #: udata/core/site/forms.py:13 udata/core/topic/forms.py:15
674
756
  #: udata/core/topic/forms.py:89
675
757
  msgid "Tags"
676
758
  msgstr "Mots-clés"
677
759
 
678
- #: udata/core/dataset/forms.py:182
760
+ #: udata/core/dataset/forms.py:184
679
761
  msgid "Some taxonomy keywords"
680
762
  msgstr "Quelques mots-clés pour la taxonomie"
681
763
 
682
- #: udata/core/dataset/forms.py:184 udata/core/topic/forms.py:90
764
+ #: udata/core/dataset/forms.py:186 udata/core/topic/forms.py:90
683
765
  msgid "Private"
684
766
  msgstr "Privé"
685
767
 
686
- #: udata/core/dataset/forms.py:185
768
+ #: udata/core/dataset/forms.py:187
687
769
  msgid "Restrict the dataset visibility to you or your organization only."
688
770
  msgstr "Restreint la visibilité du jeu de données à vous ou votre organisation seulement."
689
771
 
690
- #: udata/core/dataset/models.py:67
772
+ #: udata/core/dataset/models.py:66
691
773
  msgid "Pivotal data"
692
774
  msgstr "Données pivot"
693
775
 
694
- #: udata/core/dataset/models.py:68
776
+ #: udata/core/dataset/models.py:67
695
777
  msgid "Reference data public service"
696
778
  msgstr "Service public de la donnée de référence"
697
779
 
698
- #: udata/core/dataset/models.py:69
780
+ #: udata/core/dataset/models.py:68
699
781
  msgid "Inspire"
700
782
  msgstr "INSPIRE"
701
783
 
702
- #: udata/core/dataset/models.py:70
784
+ #: udata/core/dataset/models.py:69
703
785
  msgid "High value datasets"
704
786
  msgstr "Données de forte valeur"
705
787
 
706
- #: udata/core/dataset/models.py:71
788
+ #: udata/core/dataset/models.py:70
707
789
  msgid "Certified statistic series"
708
790
  msgstr "Séries statistiques labellisées"
709
791
 
710
- #: udata/core/dataset/models.py:72
792
+ #: udata/core/dataset/models.py:71
711
793
  msgid "Statistical series of general interest"
712
794
  msgstr "Séries statistiques reconnues d’intérêt général"
713
795
 
714
- #: udata/core/dataset/models.py:152
796
+ #: udata/core/dataset/models.py:151
715
797
  msgid "A schema must contains a name or an URL when a version is provided."
716
798
  msgstr "Un schéma doit contenir un nom ou une URL lorsqu'une version est fournie."
717
799
 
718
- #: udata/core/dataset/models.py:184 udata/tests/api/test_datasets_api.py:1163
719
- #: udata/tests/api/test_datasets_api.py:1174
800
+ #: udata/core/dataset/models.py:183 udata/tests/api/test_datasets_api.py:1177
801
+ #: udata/tests/api/test_datasets_api.py:1188
720
802
  #, python-brace-format
721
803
  msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
722
804
  msgstr "Le nom du schéma \"{schema}\" n'est pas une valeur autorisée. Valeurs autorisées : {values}"
723
805
 
724
- #: udata/core/dataset/models.py:203 udata/tests/api/test_datasets_api.py:1186
806
+ #: udata/core/dataset/models.py:202 udata/tests/api/test_datasets_api.py:1200
725
807
  #, python-brace-format
726
808
  msgid "Version \"{version}\" is not an allowed value for the schema \"{name}\". Allowed versions: {values}"
727
809
  msgstr "La version \"{version}\" n'est pas une valeur autorisée pour le schéma \"{name}\". Versions autorisées : {values}"
728
810
 
729
- #: udata/core/dataset/models.py:481 udata/core/dataset/rdf.py:595
730
- #: udata/tests/dataset/test_dataset_rdf.py:722
731
- #: udata/tests/dataset/test_dataset_rdf.py:735
811
+ #: udata/core/dataset/models.py:451 udata/core/dataset/rdf.py:595
812
+ #: udata/tests/dataset/test_dataset_rdf.py:908
813
+ #: udata/tests/dataset/test_dataset_rdf.py:921
732
814
  msgid "Nameless resource"
733
815
  msgstr "Ressource sans nom"
734
816
 
735
- #: udata/core/dataset/models.py:584
817
+ #: udata/core/dataset/models.py:554
736
818
  msgid "Future date of update"
737
819
  msgstr "Future date de mise à jour"
738
820
 
739
- #: udata/core/dataset/models.py:616
821
+ #: udata/core/dataset/models.py:586
740
822
  msgid "Last update of the dataset resources"
741
823
  msgstr "Dernière mise à jour des ressources de ce jeu de données"
742
824
 
743
- #: udata/core/dataset/models.py:671
825
+ #: udata/core/dataset/models.py:641
744
826
  msgid "dataset"
745
827
  msgstr "jeu de données"
746
828
 
747
- #: udata/core/dataset/rdf.py:593 udata/tests/dataset/test_dataset_rdf.py:692
748
- #: udata/tests/dataset/test_dataset_rdf.py:709
829
+ #: udata/core/dataset/rdf.py:593 udata/tests/dataset/test_dataset_rdf.py:878
830
+ #: udata/tests/dataset/test_dataset_rdf.py:895
749
831
  #, python-brace-format
750
832
  msgid "{format} resource"
751
833
  msgstr "Ressource {format}"
752
834
 
753
- #: udata/core/dataset/tasks.py:104
754
- msgid "You need to update some frequency-based datasets"
755
- msgstr "Vous devez publier certains jeux de données avec une fréquence de mise à jour"
756
-
757
835
  #: udata/core/discussions/forms.py:16 udata/core/discussions/forms.py:31
758
836
  #: udata/core/discussions/forms.py:37 udata/core/organization/forms.py:83
759
837
  #: udata/core/organization/forms.py:87 udata/harvest/forms.py:97
@@ -764,20 +842,52 @@ msgstr "Commentaire"
764
842
  msgid "Subject"
765
843
  msgstr "Sujet"
766
844
 
767
- #: udata/core/discussions/tasks.py:26
845
+ #: udata/core/discussions/mails.py:9
846
+ #, python-format
847
+ msgid "A new discussion has been opened on your %(type)s"
848
+ msgstr "Une nouvelle discussion a été ouverte sur votre %(type)s"
849
+
850
+ #: udata/core/discussions/mails.py:15
768
851
  #, python-format
769
- msgid "Your %(type)s have a new discussion"
770
- msgstr "Votre %(type)s a une nouvelle discussion"
852
+ msgid "You have a new discussion from %(user_or_org)s on your %(type)s %(object)s"
853
+ msgstr "Vous avez une nouvelle discussion de %(user_or_org)s sur votre %(type)s %(object)s"
854
+
855
+ #: udata/core/discussions/mails.py:21 udata/core/discussions/mails.py:40
856
+ #: udata/core/discussions/mails.py:59
857
+ msgid "Discussion title:"
858
+ msgstr "Titre de la discussion :"
771
859
 
772
- #: udata/core/discussions/tasks.py:45
860
+ #: udata/core/discussions/mails.py:22 udata/core/discussions/mails.py:41
861
+ #: udata/core/discussions/mails.py:60
862
+ msgid "Comment:"
863
+ msgstr "Commentaire :"
864
+
865
+ #: udata/core/discussions/mails.py:23 udata/core/discussions/mails.py:42
866
+ msgid "Reply"
867
+ msgstr "Répondre"
868
+
869
+ #: udata/core/discussions/mails.py:30
870
+ msgid "A new comment has been added to a discussion"
871
+ msgstr "Un nouveau commentaire a été ajouté à une discussion"
872
+
873
+ #: udata/core/discussions/mails.py:34
773
874
  #, python-format
774
- msgid "%(user)s commented your discussion"
775
- msgstr "%(user)s a commenté votre discussion"
875
+ msgid "You have a new comment from %(user_or_org)s on your %(type)s %(object)s"
876
+ msgstr "Vous avez un nouveau commentaire de %(user_or_org)s sur votre %(type)s %(object)s"
776
877
 
777
- #: udata/core/discussions/tasks.py:61
878
+ #: udata/core/discussions/mails.py:49
778
879
  msgid "A discussion has been closed"
779
880
  msgstr "Une discussion a été clôturée"
780
881
 
882
+ #: udata/core/discussions/mails.py:53
883
+ #, python-format
884
+ msgid "The discussion you participated in on the %(type)s %(object)s has been closed by %(user_or_org)s."
885
+ msgstr "La discussion à laquelle vous avez participé sur %(type)s %(object)s a été clôturée par %(user_or_org)s."
886
+
887
+ #: udata/core/discussions/mails.py:61
888
+ msgid "View the discussion"
889
+ msgstr "Voir la discussion"
890
+
781
891
  #: udata/core/jobs/forms.py:29
782
892
  msgid "Tasks"
783
893
  msgstr "Tâches"
@@ -828,17 +938,17 @@ msgid "Refused"
828
938
  msgstr "Refusée"
829
939
 
830
940
  #: udata/core/organization/forms.py:25
831
- #: udata/tests/api/test_organizations_api.py:164
941
+ #: udata/tests/api/test_organizations_api.py:159
832
942
  msgid "A siret number is made of 14 digits"
833
943
  msgstr "Un numéro siret est composé de 14 chiffres"
834
944
 
835
945
  #: udata/core/organization/forms.py:36
836
- #: udata/tests/api/test_organizations_api.py:176
946
+ #: udata/tests/api/test_organizations_api.py:171
837
947
  msgid "A siret number is only made of digits"
838
948
  msgstr "Un numéro siret est composé uniquement de chiffres"
839
949
 
840
950
  #: udata/core/organization/forms.py:39
841
- #: udata/tests/api/test_organizations_api.py:170
951
+ #: udata/tests/api/test_organizations_api.py:165
842
952
  msgid "Invalid Siret number"
843
953
  msgstr "Numéro siret invalide"
844
954
 
@@ -870,6 +980,102 @@ msgstr "Numéro d'identification d'entreprise"
870
980
  msgid "Business identification number"
871
981
  msgstr "Numéro d'identification d'entreprise"
872
982
 
983
+ #: udata/core/organization/mails.py:9
984
+ msgid "New membership request"
985
+ msgstr "Nouvelle demande d'adhésion"
986
+
987
+ #: udata/core/organization/mails.py:13
988
+ #, python-format
989
+ msgid "You received a membership request from %(user)s for your organization %(org)s"
990
+ msgstr "Vous avez reçu une demande d'adhésion de %(user)s pour votre organisation %(org)s"
991
+
992
+ #: udata/core/organization/mails.py:18
993
+ msgid "Reason for the request:"
994
+ msgstr "Raison de la demande :"
995
+
996
+ #: udata/core/organization/mails.py:19
997
+ msgid "See the request"
998
+ msgstr "Voir la demande"
999
+
1000
+ #: udata/core/organization/mails.py:26
1001
+ msgid "Membership refused"
1002
+ msgstr "Demande d'adhésion refusée"
1003
+
1004
+ #: udata/core/organization/mails.py:30
1005
+ #, python-format
1006
+ msgid "Your membership for the organization %(org)s has been refused"
1007
+ msgstr "Votre adhésion à l'organisation %(org)s a été refusée"
1008
+
1009
+ #: udata/core/organization/mails.py:40
1010
+ msgid "Your invitation to join an organization has been accepted"
1011
+ msgstr "Votre invitation à rejoindre une organisation a été acceptée"
1012
+
1013
+ #: udata/core/organization/mails.py:44
1014
+ #, python-format
1015
+ msgid "Good news! Your request to join the organization %(org)s has been approved."
1016
+ msgstr "Bonne nouvelle ! Votre demande d'adhésion à l'organisation %(org)s a été approuvée."
1017
+
1018
+ #: udata/core/organization/mails.py:49 udata/core/organization/mails.py:66
1019
+ #: udata/core/organization/mails.py:82 udata/core/organization/mails.py:97
1020
+ #: udata/core/organization/mails.py:112 udata/core/organization/mails.py:127
1021
+ #: udata/core/organization/mails.py:142
1022
+ msgid "View the organization"
1023
+ msgstr "Voir l'organisation"
1024
+
1025
+ #: udata/core/organization/mails.py:57
1026
+ msgid "You have been added as a member of an organization"
1027
+ msgstr "Vous avez été ajouté en tant que membre d'une organisation"
1028
+
1029
+ #: udata/core/organization/mails.py:61
1030
+ #, python-format
1031
+ msgid "Good news! You are now a member of %(org)s."
1032
+ msgstr "Bonne nouvelle ! Vous êtes maintenant membre de %(org)s."
1033
+
1034
+ #: udata/core/organization/mails.py:74
1035
+ msgid "Your organization has been certified"
1036
+ msgstr "Votre organisation a été certifiée"
1037
+
1038
+ #: udata/core/organization/mails.py:78
1039
+ #, python-format
1040
+ msgid "Good news! Your organization %(org)s has been certified by our team. A badge is now associated with your organization."
1041
+ msgstr "Bonne nouvelle ! Votre organisation %(org)s a été certifiée par notre équipe. Un badge est maintenant associé à votre organisation."
1042
+
1043
+ #: udata/core/organization/mails.py:89
1044
+ msgid "Your organization has been identified as a public service"
1045
+ msgstr "Votre organisation a été identifiée comme un service public"
1046
+
1047
+ #: udata/core/organization/mails.py:93
1048
+ #, python-format
1049
+ msgid "Good news! Your organization %(org)s has been identified by our team as a public service. A badge is now associated with your organization."
1050
+ msgstr "Bonne nouvelle ! Votre organisation %(org)s a été identifiée par notre équipe comme un service public. Un badge est maintenant associé à votre organisation."
1051
+
1052
+ #: udata/core/organization/mails.py:104
1053
+ msgid "Your organization has been identified as a local authority"
1054
+ msgstr "Votre organisation a été identifiée comme étant une collectivité territoriale"
1055
+
1056
+ #: udata/core/organization/mails.py:108
1057
+ #, python-format
1058
+ msgid "Good news! Your organization %(org)s has been identified by our team as a local authority. A badge is now associated with your organization."
1059
+ msgstr "Bonne nouvelle ! Votre organisation %(org)s a été identifiée par notre équipe comme une collectivité territoriale. Un badge est maintenant associé à votre organisation."
1060
+
1061
+ #: udata/core/organization/mails.py:119
1062
+ msgid "Your organization has been identified as a company"
1063
+ msgstr "Votre organisation a été identifiée comme entreprise"
1064
+
1065
+ #: udata/core/organization/mails.py:123
1066
+ #, python-format
1067
+ msgid "Your organization %(org)s has been identified by our team as a company. A badge is now associated with your organization."
1068
+ msgstr "Votre organisation %(org)s a été identifiée par notre équipe comme une entreprise. Un badge est maintenant associé à votre organisation."
1069
+
1070
+ #: udata/core/organization/mails.py:134
1071
+ msgid "Your organization has been identified as an association"
1072
+ msgstr "Votre organisation a été identifiée comme une association"
1073
+
1074
+ #: udata/core/organization/mails.py:138
1075
+ #, python-format
1076
+ msgid "Your organization %(org)s has been identified by our team as an association. A badge is now associated with your organization."
1077
+ msgstr "Votre organisation %(org)s a été identifiée par notre équipe comme une association. Un badge est maintenant associé à votre organisation."
1078
+
873
1079
  #: udata/core/organization/models.py:38
874
1080
  msgid "Public Service"
875
1081
  msgstr "Service Public"
@@ -890,44 +1096,6 @@ msgstr "Entreprise"
890
1096
  msgid "Local authority"
891
1097
  msgstr "Collectivité territoriale"
892
1098
 
893
- #: udata/core/organization/tasks.py:52
894
- msgid "New membership request"
895
- msgstr "Nouvelle demande d'adhésion"
896
-
897
- #: udata/core/organization/tasks.py:62 udata/core/organization/tasks.py:74
898
- #, python-format
899
- msgid "You are now a member of the organization \"%(org)s\""
900
- msgstr "Vous êtes maintenant membre de l'organisation \"%(org)s\""
901
-
902
- #: udata/core/organization/tasks.py:65
903
- msgid "Membership refused"
904
- msgstr "Demande d'adhésion refusée"
905
-
906
- #: udata/core/organization/tasks.py:85
907
- #, python-format
908
- msgid "Your organization \"%(name)s\" has been certified"
909
- msgstr "Votre organisation \"%(name)s\" a été certifiée"
910
-
911
- #: udata/core/organization/tasks.py:102
912
- #, python-format
913
- msgid "Your organization \"%(name)s\" has been identified as public service"
914
- msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant un service public"
915
-
916
- #: udata/core/organization/tasks.py:119
917
- #, python-format
918
- msgid "Your organization \"%(name)s\" has been identified as a company"
919
- msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une entreprise"
920
-
921
- #: udata/core/organization/tasks.py:132
922
- #, python-format
923
- msgid "Your organization \"%(name)s\" has been identified as an association"
924
- msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une association"
925
-
926
- #: udata/core/organization/tasks.py:150
927
- #, python-format
928
- msgid "Your organization \"%(name)s\" has been identified as a local authority"
929
- msgstr "Votre organisation \"%(name)s\" a été identifiée comme étant une collectivité territoriale"
930
-
931
1099
  #: udata/core/post/api.py:118
932
1100
  msgid "Latests posts"
933
1101
  msgstr "Derniers articles"
@@ -1048,7 +1216,7 @@ msgstr "Visualisation"
1048
1216
  msgid "Connected device"
1049
1217
  msgstr "Objet connecté"
1050
1218
 
1051
- #: udata/core/reuse/constants.py:15 udata/tests/reuse/test_reuse_model.py:110
1219
+ #: udata/core/reuse/constants.py:15 udata/tests/reuse/test_reuse_model.py:109
1052
1220
  msgid "Health"
1053
1221
  msgstr "Santé"
1054
1222
 
@@ -1104,6 +1272,23 @@ msgstr "Droit et justice"
1104
1272
  msgid "Open data tools"
1105
1273
  msgstr "Outils open data"
1106
1274
 
1275
+ #: udata/core/reuse/mails.py:9
1276
+ msgid "New reuse on your dataset"
1277
+ msgstr "Nouvelle réutilisation de votre jeu de données"
1278
+
1279
+ #: udata/core/reuse/mails.py:13
1280
+ #, python-format
1281
+ msgid "A new reuse has been published by %(user_or_org)s on your dataset %(dataset)s"
1282
+ msgstr "Une nouvelle réutilisation a été publiée par %(user_or_org)s sur votre jeu de données %(dataset)s"
1283
+
1284
+ #: udata/core/reuse/mails.py:18
1285
+ msgid "Reuse title:"
1286
+ msgstr "Titre de la réutilisation :"
1287
+
1288
+ #: udata/core/reuse/mails.py:19
1289
+ msgid "View the reuse"
1290
+ msgstr "Voir la réutilisation"
1291
+
1107
1292
  #: udata/core/reuse/models.py:39
1108
1293
  msgid "This URL is already registered"
1109
1294
  msgstr "Cette URL est déjà enregistrée"
@@ -1112,10 +1297,6 @@ msgstr "Cette URL est déjà enregistrée"
1112
1297
  msgid "reuse"
1113
1298
  msgstr "réutilisation"
1114
1299
 
1115
- #: udata/core/reuse/tasks.py:48
1116
- msgid "New reuse"
1117
- msgstr "Nouvelle réutilisation"
1118
-
1119
1300
  #: udata/core/site/forms.py:13
1120
1301
  msgid "Some SEO keywords"
1121
1302
  msgstr "Des mots-clés pour le SEO"
@@ -1241,7 +1422,7 @@ msgstr "a supprimé un élément d'une thématique"
1241
1422
  msgid "Element"
1242
1423
  msgstr "Élément"
1243
1424
 
1244
- #: udata/core/topic/forms.py:26
1425
+ #: udata/core/topic/forms.py:26 udata/tests/apiv2/test_topics.py:720
1245
1426
  msgid "A topic element must have a title or an element."
1246
1427
  msgstr "Un élément de thématique doit avoir un titre ou un élément."
1247
1428
 
@@ -1293,10 +1474,48 @@ msgstr "À propos"
1293
1474
  msgid "Roles"
1294
1475
  msgstr "Rôles"
1295
1476
 
1296
- #: udata/core/user/models.py:298 udata/tests/api/test_me_api.py:297
1477
+ #: udata/core/user/mails.py:10 udata/tests/api/test_me_api.py:295
1297
1478
  msgid "Account deletion"
1298
1479
  msgstr "Suppression de compte"
1299
1480
 
1481
+ #: udata/core/user/mails.py:11
1482
+ msgid "Your account has now been deleted"
1483
+ msgstr "Votre compte est maintenant supprimé"
1484
+
1485
+ #: udata/core/user/mails.py:18
1486
+ #, python-format
1487
+ msgid "Deletion of your inactive %(site)s account"
1488
+ msgstr "Suppression de votre compte %(site)s inactif"
1489
+
1490
+ #: udata/core/user/mails.py:22
1491
+ #, python-format
1492
+ msgid "Your account on %(site)s has been deleted due to inactivity"
1493
+ msgstr "Votre compte sur %(site)s a été supprimé pour cause d'inactivité"
1494
+
1495
+ #: udata/core/user/mails.py:33 udata/tests/user/test_user_tasks.py:36
1496
+ #, python-brace-format
1497
+ msgid "Inactivity of your {site} account"
1498
+ msgstr "Inactivité de votre compte {site}"
1499
+
1500
+ #: udata/core/user/mails.py:36
1501
+ #, python-format
1502
+ msgid "We have noticed that your account associated to (%(user_email)s) has been inactive for %(inactivity_years)d years or more on %(site)s, the open platform for public data."
1503
+ msgstr "Nous avons constaté que votre compte associé à l'adresse (%(user_email)s) est inactif depuis plus de %(inactivity_years)d ans sur %(site)s, la plateforme des données publiques."
1504
+
1505
+ #: udata/core/user/mails.py:42
1506
+ msgid "If you want to keep your account, please log in with your account."
1507
+ msgstr "Si vous souhaitez conserver votre compte, veuillez vous connecter avec votre compte."
1508
+
1509
+ #: udata/core/user/mails.py:46
1510
+ #, python-format
1511
+ msgid "Without logging in, your account will be deleted within %(notify_delay)d days."
1512
+ msgstr "Sans connexion de votre part, votre compte va être supprimé d'ici %(notify_delay)d jours."
1513
+
1514
+ #: udata/core/user/mails.py:50
1515
+ #, python-format
1516
+ msgid "This account is not tied to your other administration accounts and you can always re-create an account on the %(site)s platform if necessary."
1517
+ msgstr "Ce compte n'est pas relié à vos autres comptes de l'administration et vous aurez toujours la possibilité de recréer un compte sur la plateforme %(site)s."
1518
+
1300
1519
  #: udata/core/user/permissions.py:5
1301
1520
  msgid "System administrator"
1302
1521
  msgstr "Administrateur système"
@@ -1309,19 +1528,9 @@ msgstr "Editorialiste"
1309
1528
  msgid "Site moderator"
1310
1529
  msgstr "Moderateur"
1311
1530
 
1312
- #: udata/core/user/tasks.py:19
1313
- msgid "Test mail"
1314
- msgstr "Mail de test"
1315
-
1316
- #: udata/core/user/tasks.py:45 udata/tests/user/test_user_tasks.py:36
1317
- #, python-brace-format
1318
- msgid "Inactivity of your {site} account"
1319
- msgstr "Inactivité de votre compte {site}"
1320
-
1321
- #: udata/core/user/tasks.py:88 udata/tests/user/test_user_tasks.py:109
1322
- #, python-brace-format
1323
- msgid "Deletion of your inactive {site} account"
1324
- msgstr "Suppression de votre compte {site} inactif"
1531
+ #: udata/flask_mongoengine/fields.py:85
1532
+ msgid "Not a valid choice"
1533
+ msgstr "Choix invalide"
1325
1534
 
1326
1535
  #: udata/forms/fields.py:127
1327
1536
  msgid "Please input a date/time value"
@@ -1350,8 +1559,8 @@ msgstr "Le mot-clé \"%(tag)s\" doit avoir entre %(min)d et %(max)d caractères.
1350
1559
  msgid "{0} does not exists"
1351
1560
  msgstr "{0} n'existe pas"
1352
1561
 
1353
- #: udata/forms/fields.py:494 udata/tests/forms/test_model_field.py:333
1354
- #: udata/tests/forms/test_model_field.py:349
1562
+ #: udata/forms/fields.py:494 udata/tests/forms/test_model_field.py:331
1563
+ #: udata/tests/forms/test_model_field.py:347
1355
1564
  msgid "Missing \"id\" field"
1356
1565
  msgstr "Champ \"id\" manquant"
1357
1566
 
@@ -1360,8 +1569,8 @@ msgstr "Champ \"id\" manquant"
1360
1569
  msgid "Expect a \"{0}\" class but \"{1}\" was found"
1361
1570
  msgstr "Attend une classe \"{0}\" mais \"{1}\" a été trouvée"
1362
1571
 
1363
- #: udata/forms/fields.py:507 udata/tests/forms/test_model_field.py:41
1364
- #: udata/tests/forms/test_model_field.py:56
1572
+ #: udata/forms/fields.py:507 udata/tests/forms/test_model_field.py:39
1573
+ #: udata/tests/forms/test_model_field.py:54
1365
1574
  msgid "Expect both class and identifier"
1366
1575
  msgstr "Attends à la fois une classe et un identifiant"
1367
1576
 
@@ -1380,7 +1589,7 @@ msgid "Unable to parse date range"
1380
1589
  msgstr "Incapable de comprendre la date"
1381
1590
 
1382
1591
  #: udata/forms/fields.py:752 udata/forms/fields.py:784
1383
- #: udata/tests/forms/test_publish_as_field.py:214
1592
+ #: udata/tests/forms/test_publish_as_field.py:212
1384
1593
  msgid "Cannot change owner after creation. Please use transfer feature."
1385
1594
  msgstr "Impossible de modifier le propriétaire après la création. Veuillez utiliser la fonctionnalité de transfert."
1386
1595
 
@@ -1469,87 +1678,20 @@ msgstr "Mot-clé"
1469
1678
  msgid "A CKAN tag name"
1470
1679
  msgstr "Un nom de mot-clé CKAN"
1471
1680
 
1472
- #: udata/templates/404.html:6
1681
+ #: udata/templates/404.html:6 udata/tests/frontend/test_error_handlers.py:22
1682
+ #: udata/tests/frontend/test_error_handlers.py:48
1473
1683
  msgid "Page not found"
1474
1684
  msgstr "Page non trouvée"
1475
1685
 
1476
- #: udata/templates/404.html:39
1686
+ #: udata/templates/404.html:39 udata/tests/frontend/test_error_handlers.py:22
1687
+ #: udata/tests/frontend/test_error_handlers.py:48
1477
1688
  msgid "The page you are looking for does not exist."
1478
1689
  msgstr "La page que vous cherchez ne peut être trouvée."
1479
1690
 
1480
- #: udata/templates/404.html:40
1691
+ #: udata/templates/404.html:40 udata/tests/frontend/test_error_handlers.py:26
1481
1692
  msgid "Back to home"
1482
1693
  msgstr "Retour à la page d'accueil"
1483
1694
 
1484
- #: udata/templates/admin.html:7
1485
- msgid "Admin"
1486
- msgstr "Admin"
1487
-
1488
- #: udata/templates/base.html:7
1489
- msgid "You must be connected to do this action."
1490
- msgstr "Vous devez être connecté pour effectuer cette action."
1491
-
1492
- #: udata/templates/api/admin.html:11
1493
- msgid "Maintainer"
1494
- msgstr "Mainteneur"
1495
-
1496
- #: udata/templates/api/admin.html:31
1497
- msgid "Edit"
1498
- msgstr "Modifier"
1499
-
1500
- #: udata/templates/api/admin.html:34
1501
- msgid "Delete"
1502
- msgstr "Supprimer"
1503
-
1504
- #: udata/templates/api/admin.html:42
1505
- msgid "No OAuth clients"
1506
- msgstr "Aucun client OAuth"
1507
-
1508
- #: udata/templates/api/admin.html:53
1509
- msgid "Add a client"
1510
- msgstr "Ajouter un client"
1511
-
1512
- #: udata/templates/api/oauth_authorize.html:23
1513
- #, python-format
1514
- msgid "%(app)s want to access your %(site)s account."
1515
- msgstr "%(app)s voudrait accéder à votre compte %(site)s."
1516
-
1517
- #: udata/templates/api/oauth_authorize.html:35
1518
- msgid "Details"
1519
- msgstr "Détails"
1520
-
1521
- #: udata/templates/api/oauth_authorize.html:45
1522
- msgid "Access your profile"
1523
- msgstr "Accéder à votre profil"
1524
-
1525
- #: udata/templates/api/oauth_authorize.html:46
1526
- msgid "Read your profile, the orgnization you belong to, your publications"
1527
- msgstr "Lire votre profil, les organisations auxquelles vous appartenez, vos publications"
1528
-
1529
- #: udata/templates/api/oauth_authorize.html:54
1530
- msgid "Publish data"
1531
- msgstr "Publier des données"
1532
-
1533
- #: udata/templates/api/oauth_authorize.html:55
1534
- msgid "Publish datasets, reuses, follow or unfollow"
1535
- msgstr "Publier des jeux de données, des réutilisations, s'abonner"
1536
-
1537
- #: udata/templates/api/oauth_authorize.html:65
1538
- msgid "Accept"
1539
- msgstr "Accepter"
1540
-
1541
- #: udata/templates/api/oauth_authorize.html:67
1542
- msgid "Refuse"
1543
- msgstr "Refuser"
1544
-
1545
- #: udata/templates/api/oauth_error.html:15
1546
- msgid "OAuth Authentication Error"
1547
- msgstr "Erreur d'authentification OAuth"
1548
-
1549
- #: udata/templates/api/oauth_error.html:20 udata/templates/macros/metadata.html:2
1550
- msgid "Home"
1551
- msgstr "Accueil"
1552
-
1553
1695
  #: udata/templates/comments/dataset_archived.txt:1
1554
1696
  msgid "This dataset has been archived by our administration team.\n\n"
1555
1697
  "An archived dataset is considered out of date by a combination of factors.\n"
@@ -1560,183 +1702,32 @@ msgstr "Ce jeu de données a été archivé par notre équipe d'administration.\
1560
1702
  "Il n'apparaît pas dans les résultats de recherche et une mise en page spéciale sur la page du jeu de données avertit les visiteurs.\n\n"
1561
1703
  "Si vous pensez que c'est une erreur, vous pouvez répondre à ce message ou nous écrire à validation@data.gouv.fr."
1562
1704
 
1563
- #: udata/templates/macros/metadata.html:3
1564
- msgid "Share, improve and reuse public data"
1565
- msgstr "Partagez, améliorez et réutilisez les données publiques"
1566
-
1567
- #: udata/templates/mail/account_deleted.html:4
1568
- msgid "Your account has now been deleted"
1569
- msgstr "Votre compte est maintenant supprimé"
1570
-
1571
- #: udata/templates/mail/account_inactivity.html:6
1572
- #, python-format
1573
- msgid "We have noticed that your account associated to (%(user_email)s) has been inactive for %(inactivity_years)d years or more on %(site)s, the open platform for public data."
1574
- msgstr "Nous avons constaté que votre compte associé à l'adresse (%(user_email)s) est inactif depuis plus de %(inactivity_years)d ans sur %(site)s, la plateforme des données publiques."
1575
-
1576
- #: udata/templates/mail/account_inactivity.html:17
1577
- #, python-format
1578
- msgid "If you want to keep your account, please log in with your account on %(home)s."
1579
- msgstr "Si vous souhaitez conserver votre compte, veuillez vous connecter avec votre compte sur %(home)s."
1580
-
1581
- #: udata/templates/mail/account_inactivity.html:25
1582
- #, python-format
1583
- msgid "Without logging in, your account will be deleted within %(notify_delay)d days."
1584
- msgstr "Sans connexion de votre part, votre compte va être supprimé d'ici %(notify_delay)d jours."
1585
-
1586
- #: udata/templates/mail/account_inactivity.html:33
1587
- #, python-format
1588
- msgid "This account is not tied to your other administration accounts and you can always re-create an account on the %(site)s platform if necessary."
1589
- msgstr "Ce compte n'est pas relié à vos autres comptes de l'administration et vous aurez toujours la possibilité de recréer un compte sur la plateforme %(site)s."
1590
-
1591
- #: udata/templates/mail/badge_added_association.html:6
1592
- #, python-format
1593
- msgid "%(user)s has identified your organization \"%(name)s\" as an association"
1594
- msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une association"
1595
-
1596
- #: udata/templates/mail/badge_added_association.html:27
1597
- #: udata/templates/mail/badge_added_certified.html:27
1598
- #: udata/templates/mail/badge_added_company.html:27
1599
- #: udata/templates/mail/badge_added_local_authority.html:27
1600
- #: udata/templates/mail/badge_added_public_service.html:27
1601
- msgid "See the badge"
1602
- msgstr "Voir le badge"
1603
-
1604
- #: udata/templates/mail/badge_added_certified.html:6
1605
- #, python-format
1606
- msgid "%(user)s has certified your organization \"%(name)s\""
1607
- msgstr "%(user)s a certifié votre organisation \"%(name)s\""
1608
-
1609
- #: udata/templates/mail/badge_added_company.html:6
1610
- #, python-format
1611
- msgid "%(user)s has identified your organization \"%(name)s\" as a company"
1612
- msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une entreprise"
1613
-
1614
- #: udata/templates/mail/badge_added_local_authority.html:6
1615
- #, python-format
1616
- msgid "%(user)s has identified your organization \"%(name)s\" as a local authority"
1617
- msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant une collectivité territoriale"
1618
-
1619
- #: udata/templates/mail/badge_added_public_service.html:6
1620
- #, python-format
1621
- msgid "%(user)s has identified your organization \"%(name)s\" as public service"
1622
- msgstr "%(user)s a identifié votre organisation \"%(name)s\" comme étant un service public"
1623
-
1624
- #: udata/templates/mail/base.html:45 udata/templates/security/email/base.html:45
1705
+ #: udata/templates/mail/base.html:45
1625
1706
  msgid "on your browser."
1626
1707
  msgstr "dans votre navigateur."
1627
1708
 
1628
- #: udata/templates/mail/base.html:48 udata/templates/security/email/base.html:48
1709
+ #: udata/templates/mail/base.html:48
1629
1710
  #, python-format
1630
1711
  msgid "View this email %(link)s"
1631
1712
  msgstr "Voir cet email %(link)s"
1632
1713
 
1633
- #: udata/templates/mail/base.html:76 udata/templates/security/email/base.html:76
1714
+ #: udata/templates/mail/base.html:76 udata/templates/mail/message.html:41
1634
1715
  #, python-format
1635
1716
  msgid "Hi %(user)s"
1636
1717
  msgstr "Bonjour %(user)s"
1637
1718
 
1638
- #: udata/templates/mail/base.html:87 udata/templates/security/email/base.html:87
1719
+ #: udata/templates/mail/base.html:87
1639
1720
  msgid "See you soon on the platform"
1640
1721
  msgstr "A bientôt sur la plateforme"
1641
1722
 
1642
- #: udata/templates/mail/base.html:88 udata/templates/security/email/base.html:88
1723
+ #: udata/templates/mail/base.html:88 udata/templates/mail/message.html:63
1643
1724
  #, python-format
1644
1725
  msgid "The %(site)s team"
1645
1726
  msgstr "L'équipe de %(site)s"
1646
1727
 
1647
- #: udata/templates/mail/discussion_closed.html:6
1648
- #, python-format
1649
- msgid "%(user)s closed an discussion on your %(type)s %(subject)s"
1650
- msgstr "%(user)s a fermé une discussion sur %(type)s %(subject)s"
1651
-
1652
- #: udata/templates/mail/discussion_closed.html:32
1653
- #: udata/templates/mail/new_discussion.html:30
1654
- #: udata/templates/mail/new_discussion_comment.html:31
1655
- msgid "Message"
1656
- msgstr "Message"
1657
-
1658
- #: udata/templates/mail/discussion_closed.html:41
1659
- #: udata/templates/mail/new_discussion.html:38
1660
- #: udata/templates/mail/new_discussion_comment.html:39
1661
- msgid "See the discussion"
1662
- msgstr "Voir la discussion"
1663
-
1664
- #: udata/templates/mail/frequency_reminder.html:6
1665
- msgid "Some of your datasets need to be updated according to the frequency you set:"
1666
- msgstr "Certains de vos jeux de données doivent être publiés d'après la fréquence de mise à jour que vous avez définie :"
1667
-
1668
- #: udata/templates/mail/frequency_reminder.html:12
1669
- #, python-format
1670
- msgid "Dataset \"%(dataset_title)s\" last update is on %(published_date)s."
1671
- msgstr "La dernière mise à jour du jeu de données \"%(dataset_title)s\" était le %(published_date)s."
1672
-
1673
- #: udata/templates/mail/frequency_reminder.html:17
1674
- #, python-format
1675
- msgid "Given the set frequency (%(dataset_frequency)s) update was due %(due_update_days)s days ago."
1676
- msgstr "D'après la fréquence choisie (%(dataset_frequency)s) la mise à jour aurait dû avoir lieu il y a %(due_update_days)s jours."
1677
-
1678
- #: udata/templates/mail/frequency_reminder.html:25
1679
- msgid "Update the dataset and associated resources"
1680
- msgstr "Mettez à jour le jeu de données et les ressources associées"
1681
-
1682
- #: udata/templates/mail/inactive_account_deleted.html:4
1683
- #, python-format
1684
- msgid "Your account on %(site)s has been deleted due to inactivity"
1685
- msgstr "Votre compte sur %(site)s a été supprimé pour cause d'inactivité"
1686
-
1687
- #: udata/templates/mail/membership_refused.html:7
1688
- #, python-format
1689
- msgid "Your membership for the organization \"%(org)s\" has been refused"
1690
- msgstr "Votre demande d'adhésion à l'organisation \"%(org)s\" a été refusée"
1691
-
1692
- #: udata/templates/mail/membership_refused.html:18
1693
- msgid "Refusal reason"
1694
- msgstr "Motif de refus"
1695
-
1696
- #: udata/templates/mail/membership_request.html:8
1697
- #, python-format
1698
- msgid "As an administrator of \"%(org)s\" you are being informed than a new membership request from %(user)s is pending for validation"
1699
- msgstr "En tant qu'administrateur de \"%(org)s\" vous êtes informé qu'une nouvelle demande d'adhésion de %(user)s est en attente de validation"
1700
-
1701
- #: udata/templates/mail/membership_request.html:40
1702
- msgid "See the request"
1703
- msgstr "Voir la demande"
1704
-
1705
- #: udata/templates/mail/new_discussion.html:6
1706
- #, python-format
1707
- msgid "%(user)s submitted a new discussion on your %(type)s %(subject)s"
1708
- msgstr "%(user)s a soumis une nouvelle discussion sur votre %(type)s %(subject)s"
1709
-
1710
- #: udata/templates/mail/new_discussion_comment.html:6
1711
- #, python-format
1712
- msgid "%(user)s commented an discussion on your %(type)s %(subject)s"
1713
- msgstr "%(user)s a commenté une discussion sur votre %(type)s %(subject)s"
1714
-
1715
- #: udata/templates/mail/new_member.html:7
1716
- #, python-format
1717
- msgid "Congratulations, you are now a member of the organization \"%(org)s\""
1718
- msgstr "Félicitations, vous êtes maintenant membre de l'organisation \"%(org)s\""
1719
-
1720
- #: udata/templates/mail/new_member.html:21
1721
- msgid "See the organization page"
1722
- msgstr "Voir la page de l'organisation"
1723
-
1724
- #: udata/templates/mail/new_reuse.html:7
1725
- #, python-format
1726
- msgid "A new reuse of your dataset %(dataset)s has been published"
1727
- msgstr "Une nouvelle réutilisation de votre jeu de données %(dataset)s a été publiée"
1728
-
1729
- #: udata/templates/mail/new_reuse.html:31
1730
- msgid "See the reuse"
1731
- msgstr "Voir la réutilisation"
1732
-
1733
- #: udata/templates/mail/test.html:4
1734
- msgid "This is a test mail"
1735
- msgstr "Ceci est un mail de test"
1736
-
1737
- #: udata/templates/mail/test.html:5
1738
- msgid "If you read this, your mail configuration is working"
1739
- msgstr "Si vous lisez ceci, votre configuration fonctionne"
1728
+ #: udata/templates/mail/message.html:62
1729
+ msgid "Have a great day"
1730
+ msgstr "Très bonne journée"
1740
1731
 
1741
1732
  #: udata/templates/security/change_password.html:9
1742
1733
  #: udata/templates/security/change_password.html:16
@@ -1803,91 +1794,29 @@ msgstr "Renvoyer les instructions de confirmation"
1803
1794
  msgid "Submit"
1804
1795
  msgstr "Soumettre"
1805
1796
 
1806
- #: udata/templates/security/email/change_notice.html:6
1807
- msgid "Your password has been changed."
1808
- msgstr "Votre mot de passe a été changé."
1809
-
1810
- #: udata/templates/security/email/change_notice.html:10
1811
- msgid "If you did not change your password, click below to reset it."
1812
- msgstr "Si vous n’avez pas modifié votre mot de passe, cliquez ci-dessous pour le réinitialiser."
1813
-
1814
- #: udata/templates/security/email/change_notice.html:15
1815
- msgid "Reset password"
1816
- msgstr "Réinitialiser votre mot de passe"
1817
-
1818
- #: udata/templates/security/email/confirmation_instructions.html:6
1819
- msgid "Please confirm your email through the link below:"
1820
- msgstr "Veuillez confirmer votre adresse email en suivant le lien ci-dessous :"
1821
-
1822
- #: udata/templates/security/email/confirmation_instructions.html:14
1823
- msgid "Confirm my account"
1824
- msgstr "Confirmer mon compte"
1825
-
1826
- #: udata/templates/security/email/login_instructions.html:6
1827
- msgid "You can log into your account through the link below:"
1828
- msgstr "Vous pouvez vous connecter à votre compte via le lien ci-dessous :"
1829
-
1830
- #: udata/templates/security/email/login_instructions.html:13
1831
- msgid "Login now"
1832
- msgstr "Se connecter maintenant"
1833
-
1834
- #: udata/templates/security/email/reset_instructions.html:7
1835
- #, python-format
1836
- msgid "Someone has requested a password reset for your %(site)s account. If you didn't, please ignore this email."
1837
- msgstr "Quelqu'un a demandé une réinitialisation du mot de passe votre compte %(site)s. Si ce n'est pas vous, veuillez ignorer cet email."
1838
-
1839
- #: udata/templates/security/email/reset_instructions.html:10
1840
- msgid "To reset your password, please confirm your request through the link below:"
1841
- msgstr "Pour réinitialiser votre mot de passe, veuillez confirmer votre demande avec le lien ci-dessous:"
1842
-
1843
- #: udata/templates/security/email/reset_instructions.html:18
1844
- msgid "Reset my password"
1845
- msgstr "Réinitialiser mon mot de passe"
1846
-
1847
- #: udata/templates/security/email/reset_notice.html:7
1848
- #, python-format
1849
- msgid "Your password for %(site)s has been reset."
1850
- msgstr "Votre mot de passe pour %(site)s a été réinitialisé."
1851
-
1852
- #: udata/templates/security/email/welcome.html:7
1853
- #, python-format
1854
- msgid "Welcome to %(site)s!"
1855
- msgstr "Bienvenue sur %(site)s !"
1856
-
1857
- #: udata/templates/security/email/welcome.html:10
1858
- msgid "To activate your account, please confirm your email address through the link below:"
1859
- msgstr "Pour activer votre compte, veuillez confirmer votre adresse email par le lien ci-dessous:"
1860
-
1861
- #: udata/templates/security/email/welcome.html:18
1862
- msgid "Confirm now"
1863
- msgstr "Confirmer maintenant"
1864
-
1865
- #: udata/templates/security/email/welcome_existing.html:7
1866
- #, python-format
1867
- msgid "Hello %(email)s!"
1868
- msgstr "Bonjour %(email)s !"
1869
-
1870
- #: udata/templates/security/email/welcome_existing.html:10
1871
- msgid "Someone (you?) tried to register this email - which is already in our system."
1872
- msgstr "Quelqu'un (vous ?) a essayé de créer un compte avec cet e-mail qui est déjà dans notre système."
1797
+ #: udata/tests/test_mail.py:17 udata/tests/test_mail.py:32
1798
+ #: udata/tests/test_mail.py:45 udata/tests/test_mail.py:61
1799
+ msgid "Some text"
1800
+ msgstr "Du texte"
1873
1801
 
1874
- #: udata/templates/security/email/welcome_existing.html:14
1802
+ #: udata/tests/test_mail.py:76 udata/tests/test_mail.py:151
1875
1803
  #, python-format
1876
- msgid "This account also has the following username associated with it: %(username)s."
1877
- msgstr "Ce compte a également le nom d'utilisateur suivant qui lui est associé : %(username)s."
1804
+ msgid "Some text %(org)s"
1805
+ msgstr "Du texte %(org)s"
1878
1806
 
1879
- #: udata/templates/security/email/welcome_existing.html:19
1880
- msgid "If you forgot your password you can reset it"
1881
- msgstr "Si vous avez oublié votre mot de passe, vous pouvez le réinitialiser"
1807
+ #: udata/tests/test_mail.py:94 udata/tests/test_mail.py:111
1808
+ #: udata/tests/test_mail.py:133
1809
+ msgid "Some text:"
1810
+ msgstr "Du texte :"
1882
1811
 
1883
- #: udata/templates/security/email/welcome_existing.html:25
1884
- msgid "Here"
1885
- msgstr "Ici"
1886
-
1887
- #: udata/tests/forms/test_model_field.py:165
1812
+ #: udata/tests/forms/test_model_field.py:163
1888
1813
  msgid "Expect a \"Target\" class but \"Wrong\" was found"
1889
1814
  msgstr "Attend une classe \"Target\" mais \"Wrong\" a été trouvée"
1890
1815
 
1816
+ #: udata/tests/frontend/test_error_handlers.py:26
1817
+ msgid "Home"
1818
+ msgstr "Accueil"
1819
+
1891
1820
  #: udata/tests/search/test_adapter.py:31
1892
1821
  msgid "Never reused"
1893
1822
  msgstr "Jamais réutilisé"
@@ -1904,3 +1833,8 @@ msgstr "Assez réutilisé"
1904
1833
  msgid "Heavily reused"
1905
1834
  msgstr "Souvent réutilisé"
1906
1835
 
1836
+ #: udata/tests/user/test_user_tasks.py:108
1837
+ #, python-brace-format
1838
+ msgid "Deletion of your inactive {site} account"
1839
+ msgstr "Suppression de votre compte {site} inactif"
1840
+