udata 14.0.3.dev1__py3-none-any.whl → 14.7.3.dev4__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.
Files changed (151) hide show
  1. udata/api/__init__.py +2 -0
  2. udata/api_fields.py +120 -19
  3. udata/app.py +18 -20
  4. udata/auth/__init__.py +4 -7
  5. udata/auth/forms.py +3 -3
  6. udata/auth/views.py +13 -6
  7. udata/commands/dcat.py +1 -1
  8. udata/commands/serve.py +3 -11
  9. udata/core/activity/api.py +5 -6
  10. udata/core/badges/tests/test_tasks.py +0 -2
  11. udata/core/csv.py +5 -0
  12. udata/core/dataservices/api.py +8 -1
  13. udata/core/dataservices/apiv2.py +3 -6
  14. udata/core/dataservices/models.py +5 -2
  15. udata/core/dataservices/rdf.py +2 -1
  16. udata/core/dataservices/tasks.py +6 -2
  17. udata/core/dataset/api.py +30 -4
  18. udata/core/dataset/api_fields.py +1 -1
  19. udata/core/dataset/apiv2.py +1 -1
  20. udata/core/dataset/constants.py +2 -9
  21. udata/core/dataset/models.py +21 -9
  22. udata/core/dataset/permissions.py +31 -0
  23. udata/core/dataset/rdf.py +18 -16
  24. udata/core/dataset/tasks.py +16 -7
  25. udata/core/discussions/api.py +15 -1
  26. udata/core/discussions/models.py +6 -0
  27. udata/core/legal/__init__.py +0 -0
  28. udata/core/legal/mails.py +128 -0
  29. udata/core/organization/api.py +16 -5
  30. udata/core/organization/api_fields.py +3 -3
  31. udata/core/organization/apiv2.py +3 -4
  32. udata/core/organization/mails.py +1 -1
  33. udata/core/organization/models.py +40 -7
  34. udata/core/organization/notifications.py +84 -0
  35. udata/core/organization/permissions.py +1 -1
  36. udata/core/organization/tasks.py +3 -0
  37. udata/core/pages/models.py +49 -0
  38. udata/core/pages/tests/test_api.py +165 -1
  39. udata/core/post/api.py +25 -70
  40. udata/core/post/constants.py +8 -0
  41. udata/core/post/models.py +109 -17
  42. udata/core/post/tests/test_api.py +140 -3
  43. udata/core/post/tests/test_models.py +24 -0
  44. udata/core/reports/api.py +18 -0
  45. udata/core/reports/models.py +42 -2
  46. udata/core/reuse/api.py +8 -0
  47. udata/core/reuse/apiv2.py +3 -6
  48. udata/core/reuse/models.py +1 -1
  49. udata/core/spatial/forms.py +2 -2
  50. udata/core/topic/models.py +8 -2
  51. udata/core/user/api.py +10 -3
  52. udata/core/user/api_fields.py +3 -3
  53. udata/core/user/models.py +33 -8
  54. udata/features/notifications/api.py +7 -18
  55. udata/features/notifications/models.py +59 -0
  56. udata/features/notifications/tasks.py +25 -0
  57. udata/features/transfer/actions.py +2 -0
  58. udata/features/transfer/models.py +17 -0
  59. udata/features/transfer/notifications.py +96 -0
  60. udata/flask_mongoengine/engine.py +0 -4
  61. udata/flask_mongoengine/pagination.py +1 -1
  62. udata/frontend/markdown.py +2 -1
  63. udata/harvest/actions.py +20 -0
  64. udata/harvest/api.py +24 -7
  65. udata/harvest/backends/base.py +27 -1
  66. udata/harvest/backends/ckan/harvesters.py +21 -4
  67. udata/harvest/backends/dcat.py +4 -1
  68. udata/harvest/commands.py +33 -0
  69. udata/harvest/filters.py +17 -6
  70. udata/harvest/models.py +16 -0
  71. udata/harvest/permissions.py +27 -0
  72. udata/harvest/tests/ckan/test_ckan_backend.py +33 -0
  73. udata/harvest/tests/test_actions.py +46 -2
  74. udata/harvest/tests/test_api.py +161 -6
  75. udata/harvest/tests/test_base_backend.py +86 -1
  76. udata/harvest/tests/test_dcat_backend.py +68 -3
  77. udata/harvest/tests/test_filters.py +6 -0
  78. udata/i18n.py +1 -4
  79. udata/mail.py +14 -0
  80. udata/migrations/2021-08-17-harvest-integrity.py +23 -16
  81. udata/migrations/2025-10-31-create-membership-request-notifications.py +55 -0
  82. udata/migrations/2025-12-04-add-uuid-to-discussion-messages.py +28 -0
  83. udata/migrations/2025-12-16-create-transfer-request-notifications.py +69 -0
  84. udata/migrations/2026-01-14-add-default-kind-to-posts.py +17 -0
  85. udata/mongo/slug_fields.py +1 -1
  86. udata/rdf.py +65 -11
  87. udata/routing.py +2 -2
  88. udata/settings.py +11 -0
  89. udata/tasks.py +2 -0
  90. udata/templates/mail/message.html +3 -1
  91. udata/tests/api/__init__.py +7 -17
  92. udata/tests/api/test_activities_api.py +36 -0
  93. udata/tests/api/test_datasets_api.py +69 -0
  94. udata/tests/api/test_organizations_api.py +0 -3
  95. udata/tests/api/test_reports_api.py +157 -0
  96. udata/tests/api/test_user_api.py +1 -1
  97. udata/tests/apiv2/test_dataservices.py +14 -0
  98. udata/tests/apiv2/test_organizations.py +9 -0
  99. udata/tests/apiv2/test_reuses.py +11 -0
  100. udata/tests/cli/test_cli_base.py +0 -1
  101. udata/tests/dataservice/test_dataservice_tasks.py +29 -0
  102. udata/tests/dataset/test_dataset_model.py +13 -1
  103. udata/tests/dataset/test_dataset_rdf.py +164 -5
  104. udata/tests/dataset/test_dataset_tasks.py +25 -0
  105. udata/tests/frontend/test_auth.py +58 -1
  106. udata/tests/frontend/test_csv.py +0 -3
  107. udata/tests/helpers.py +31 -27
  108. udata/tests/organization/test_notifications.py +67 -2
  109. udata/tests/search/test_search_integration.py +70 -0
  110. udata/tests/site/test_site_csv_exports.py +22 -10
  111. udata/tests/test_activity.py +9 -9
  112. udata/tests/test_api_fields.py +10 -0
  113. udata/tests/test_discussions.py +5 -5
  114. udata/tests/test_legal_mails.py +359 -0
  115. udata/tests/test_notifications.py +15 -57
  116. udata/tests/test_notifications_task.py +43 -0
  117. udata/tests/test_owned.py +81 -1
  118. udata/tests/test_transfer.py +181 -2
  119. udata/tests/test_uris.py +33 -0
  120. udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
  121. udata/translations/ar/LC_MESSAGES/udata.po +309 -158
  122. udata/translations/de/LC_MESSAGES/udata.mo +0 -0
  123. udata/translations/de/LC_MESSAGES/udata.po +313 -160
  124. udata/translations/es/LC_MESSAGES/udata.mo +0 -0
  125. udata/translations/es/LC_MESSAGES/udata.po +312 -160
  126. udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
  127. udata/translations/fr/LC_MESSAGES/udata.po +475 -202
  128. udata/translations/it/LC_MESSAGES/udata.mo +0 -0
  129. udata/translations/it/LC_MESSAGES/udata.po +317 -162
  130. udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
  131. udata/translations/pt/LC_MESSAGES/udata.po +315 -161
  132. udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
  133. udata/translations/sr/LC_MESSAGES/udata.po +323 -164
  134. udata/translations/udata.pot +169 -124
  135. udata/uris.py +0 -2
  136. udata/utils.py +23 -0
  137. udata-14.7.3.dev4.dist-info/METADATA +109 -0
  138. {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/RECORD +142 -135
  139. udata/core/post/forms.py +0 -30
  140. udata/flask_mongoengine/json.py +0 -38
  141. udata/templates/mail/base.html +0 -105
  142. udata/templates/mail/base.txt +0 -6
  143. udata/templates/mail/button.html +0 -3
  144. udata/templates/mail/layouts/1-column.html +0 -19
  145. udata/templates/mail/layouts/2-columns.html +0 -20
  146. udata/templates/mail/layouts/center-panel.html +0 -16
  147. udata-14.0.3.dev1.dist-info/METADATA +0 -132
  148. {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/WHEEL +0 -0
  149. {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/entry_points.txt +0 -0
  150. {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/licenses/LICENSE +0 -0
  151. {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/top_level.txt +0 -0
@@ -1,48 +1,45 @@
1
+
1
2
  msgid ""
2
3
  msgstr ""
3
- "Project-Id-Version: udata\n"
4
+ "Project-Id-Version: udata\n"
4
5
  "Report-Msgid-Bugs-To: i18n@opendata.team\n"
5
- "POT-Creation-Date: 2025-11-19 11:00+0100\n"
6
- "PO-Revision-Date: 2025-11-19 12:59\n"
6
+ "POT-Creation-Date: 2026-01-13 10:28+0100\n"
7
+ "PO-Revision-Date: 2025-11-19 12:59+0000\n"
7
8
  "Last-Translator: Open Data Team <i18n@opendata.team>\n"
8
9
  "Language: ar\n"
9
10
  "Language-Team: Arabic\n"
10
- "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
11
+ "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : "
12
+ "n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
11
13
  "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Type: text/plain; charset=utf-8\n"
13
15
  "Content-Transfer-Encoding: 8bit\n"
14
16
  "Generated-By: Babel 2.17.0\n"
15
- "X-Crowdin-Project: udata\n"
16
- "X-Crowdin-Project-ID: 291291\n"
17
- "X-Crowdin-Language: ar\n"
18
- "X-Crowdin-File: /master/udata/translations/udata.pot\n"
19
- "X-Crowdin-File-ID: 6\n"
20
17
 
21
- #: udata/settings.py:127
18
+ #: udata/settings.py:129
22
19
  msgid "Welcome"
23
20
  msgstr "مرحبًا"
24
21
 
25
- #: udata/settings.py:128
22
+ #: udata/settings.py:130
26
23
  msgid "Please confirm your email"
27
24
  msgstr "الرجاء التأكد من البريد الإلكتروني الخاص بك"
28
25
 
29
- #: udata/settings.py:129
26
+ #: udata/settings.py:131
30
27
  msgid "Login instructions"
31
28
  msgstr "تعليمات تسجيل الدخول"
32
29
 
33
- #: udata/auth/mails.py:125 udata/settings.py:130
30
+ #: udata/auth/mails.py:125 udata/settings.py:132
34
31
  msgid "Your password has been reset"
35
32
  msgstr "لقد تم إعادة تعيين كلمة المرور الخاصة بك"
36
33
 
37
- #: udata/auth/mails.py:137 udata/settings.py:131
34
+ #: udata/auth/mails.py:137 udata/settings.py:133
38
35
  msgid "Your password has been changed"
39
36
  msgstr "تم تغيير كلمة المرور الخاصه بك"
40
37
 
41
- #: udata/settings.py:132
38
+ #: udata/settings.py:134
42
39
  msgid "Password reset instructions"
43
40
  msgstr "إرشادات إعادة تعيين كلمة المرور"
44
41
 
45
- #: udata/settings.py:542
42
+ #: udata/settings.py:553
46
43
  msgid "This dataset has been archived"
47
44
  msgstr ""
48
45
 
@@ -51,47 +48,51 @@ msgstr ""
51
48
  msgid "Invalid URL \"{url}\": {reason}"
52
49
  msgstr ""
53
50
 
54
- #: udata/tests/api/test_datasets_api.py:1174 udata/tests/test_model.py:402
51
+ #: udata/tests/api/test_datasets_api.py:1187 udata/tests/test_model.py:402
55
52
  #: udata/uris.py:56
56
53
  #, python-brace-format
57
54
  msgid "Invalid URL \"{url}\""
58
55
  msgstr ""
59
56
 
60
- #: udata/uris.py:130
57
+ #: udata/uris.py:128
61
58
  #, python-brace-format
62
59
  msgid "Invalid scheme {0}, allowed schemes: {1}"
63
60
  msgstr ""
64
61
 
65
- #: udata/uris.py:133
62
+ #: udata/uris.py:131
66
63
  msgid "Credentials in URL are not allowed"
67
64
  msgstr ""
68
65
 
69
- #: udata/uris.py:137
66
+ #: udata/uris.py:135
70
67
  #, python-brace-format
71
68
  msgid "Invalid TLD {0}"
72
69
  msgstr ""
73
70
 
74
- #: udata/uris.py:146
71
+ #: udata/uris.py:144
75
72
  #, python-brace-format
76
73
  msgid "{0} is a multicast IP"
77
74
  msgstr ""
78
75
 
79
- #: udata/uris.py:148
76
+ #: udata/uris.py:146
80
77
  #, python-brace-format
81
78
  msgid "{0} is a mask IP"
82
79
  msgstr ""
83
80
 
84
- #: udata/uris.py:152
81
+ #: udata/uris.py:150
85
82
  msgid "is a local URL"
86
83
  msgstr ""
87
84
 
88
- #: udata/tests/test_model.py:420 udata/uris.py:159
85
+ #: udata/tests/test_model.py:420 udata/uris.py:157
89
86
  msgid "is a private URL"
90
87
  msgstr ""
91
88
 
92
89
  #: udata/api/errors.py:4
93
- msgid "Validation error: your data cannot be updated for now, we have been notified of the error and we will fix it as soon as possible."
94
- msgstr "خطأ في التحقق من صحة: لا يمكن تحديث البيانات الخاصة بك في الوقت الراهن، لقد تم إعلامنا من الخطأ وسوف نقوم بإصلاحه في أقرب وقت ممكن."
90
+ msgid ""
91
+ "Validation error: your data cannot be updated for now, we have been "
92
+ "notified of the error and we will fix it as soon as possible."
93
+ msgstr ""
94
+ "خطأ في التحقق من صحة: لا يمكن تحديث البيانات الخاصة بك في الوقت الراهن، "
95
+ "لقد تم إعلامنا من الخطأ وسوف نقوم بإصلاحه في أقرب وقت ممكن."
95
96
 
96
97
  #: udata/api/oauth2.py:56
97
98
  msgid "Bearer Token"
@@ -144,7 +145,7 @@ msgid "J'accepte les conditions générales d'utilisation"
144
145
  msgstr ""
145
146
 
146
147
  #: udata/auth/forms.py:52
147
- msgid "Vous devez accepter les CGU pour continuer."
148
+ msgid "You must accept the terms of use to continue."
148
149
  msgstr ""
149
150
 
150
151
  #: udata/auth/forms.py:75 udata/tests/forms/test_current_user_field.py:192
@@ -310,35 +311,64 @@ msgid "Environmental protection"
310
311
  msgstr ""
311
312
 
312
313
  #: 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
+ msgid ""
315
+ "Public access to datasets and services would adversely affect the "
316
+ "confidentiality of the proceedings of public authorities, where such "
317
+ "confidentiality is provided for by law."
314
318
  msgstr ""
315
319
 
316
320
  #: 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."
321
+ msgid ""
322
+ "Public access to datasets and services would adversely affect "
323
+ "international relations, public security or national defence."
318
324
  msgstr ""
319
325
 
320
326
  #: 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."
327
+ msgid ""
328
+ "Public access to datasets and services would adversely affect the course "
329
+ "of justice, the ability of any person to receive a fair trial or the "
330
+ "ability of a public authority to conduct an enquiry of a criminal or "
331
+ "disciplinary nature."
322
332
  msgstr ""
323
333
 
324
334
  #: 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."
335
+ msgid ""
336
+ "Public access to datasets and services would adversely affect the "
337
+ "confidentiality of commercial or industrial information, where such "
338
+ "confidentiality is provided for by national or Community law to protect a"
339
+ " legitimate economic interest, including the public interest in "
340
+ "maintaining statistical confidentiality and tax secrecy."
326
341
  msgstr ""
327
342
 
328
343
  #: udata/core/access_type/constants.py:82
329
- msgid "Public access to datasets and services would adversely affect intellectual property rights."
344
+ msgid ""
345
+ "Public access to datasets and services would adversely affect "
346
+ "intellectual property rights."
330
347
  msgstr ""
331
348
 
332
349
  #: 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."
350
+ msgid ""
351
+ "Public access to datasets and services would adversely affect the "
352
+ "confidentiality of personal data and/or files relating to a natural "
353
+ "person where that person has not consented to the disclosure of the "
354
+ "information to the public, where such confidentiality is provided for by "
355
+ "national or Community law."
334
356
  msgstr ""
335
357
 
336
358
  #: 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."
359
+ msgid ""
360
+ "Public access to datasets and services would adversely affect the "
361
+ "interests or protection of any person who supplied the information "
362
+ "requested on a voluntary basis without being under, or capable of being "
363
+ "put under, a legal obligation to do so, unless that person has consented "
364
+ "to the release of the information concerned."
338
365
  msgstr ""
339
366
 
340
367
  #: 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."
368
+ msgid ""
369
+ "Public access to datasets and services would adversely affect the "
370
+ "protection of the environment to which such information relates, such as "
371
+ "the location of rare species."
342
372
  msgstr ""
343
373
 
344
374
  #: udata/core/access_type/models.py:25
@@ -358,8 +388,8 @@ msgid "An existing contact point already exists with these informations."
358
388
  msgstr ""
359
389
 
360
390
  #: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
361
- #: udata/core/organization/forms.py:46 udata/core/post/forms.py:15
362
- #: udata/core/topic/forms.py:37 udata/harvest/forms.py:80
391
+ #: udata/core/organization/forms.py:46 udata/core/topic/forms.py:37
392
+ #: udata/harvest/forms.py:80
363
393
  msgid "Name"
364
394
  msgstr "اسم"
365
395
 
@@ -430,7 +460,8 @@ msgstr ""
430
460
  msgid "User"
431
461
  msgstr ""
432
462
 
433
- #: udata/core/contact_point/models.py:34 udata/tests/api/test_contact_points.py:136
463
+ #: udata/core/contact_point/models.py:34
464
+ #: udata/tests/api/test_contact_points.py:136
434
465
  msgid "At least an email or a contact form is required for a contact point"
435
466
  msgstr ""
436
467
 
@@ -446,7 +477,7 @@ msgstr ""
446
477
  msgid "deleted a dataservice"
447
478
  msgstr ""
448
479
 
449
- #: udata/core/dataservices/api.py:62
480
+ #: udata/core/dataservices/api.py:63
450
481
  msgid "Latest APIs"
451
482
  msgstr ""
452
483
 
@@ -458,12 +489,12 @@ msgstr ""
458
489
  msgid "dataservice"
459
490
  msgstr ""
460
491
 
461
- #: udata/core/dataservices/models.py:266 udata/core/dataset/models.py:580
492
+ #: udata/core/dataservices/models.py:269 udata/core/dataset/models.py:595
462
493
  #: udata/mongo/datetime_fields.py:60
463
494
  msgid "Creation date"
464
495
  msgstr "تاريخ الإنشاء"
465
496
 
466
- #: udata/core/dataservices/models.py:272 udata/core/dataset/models.py:585
497
+ #: udata/core/dataservices/models.py:275 udata/core/dataset/models.py:600
467
498
  #: udata/mongo/datetime_fields.py:66
468
499
  msgid "Last modification date"
469
500
  msgstr "تاريخ التعديل الأخير"
@@ -492,7 +523,16 @@ msgstr ""
492
523
  msgid "removed a resource from a dataset"
493
524
  msgstr ""
494
525
 
495
- #: udata/core/dataset/api.py:332
526
+ #: udata/core/dataset/api.py:344
527
+ #, python-brace-format
528
+ msgid "Datasets search: {q}"
529
+ msgstr ""
530
+
531
+ #: udata/core/dataset/api.py:346
532
+ msgid "Filtered datasets"
533
+ msgstr ""
534
+
535
+ #: udata/core/dataset/api.py:348
496
536
  msgid "Latest datasets"
497
537
  msgstr ""
498
538
 
@@ -648,7 +688,7 @@ msgstr ""
648
688
  msgid "Not planned"
649
689
  msgstr ""
650
690
 
651
- #: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:156
691
+ #: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:149
652
692
  #: udata/core/spatial/constants.py:5
653
693
  msgid "Other"
654
694
  msgstr "آخر"
@@ -661,31 +701,31 @@ msgstr "آخر"
661
701
  msgid "Unknown"
662
702
  msgstr "غير معروف"
663
703
 
664
- #: udata/core/dataset/constants.py:151
704
+ #: udata/core/dataset/constants.py:144
665
705
  msgid "Main file"
666
706
  msgstr ""
667
707
 
668
- #: udata/core/dataset/constants.py:152
708
+ #: udata/core/dataset/constants.py:145
669
709
  msgid "Documentation"
670
710
  msgstr ""
671
711
 
672
- #: udata/core/dataset/constants.py:153
712
+ #: udata/core/dataset/constants.py:146
673
713
  msgid "Update"
674
714
  msgstr ""
675
715
 
676
- #: udata/core/dataset/constants.py:154 udata/core/reuse/constants.py:4
716
+ #: udata/core/dataset/constants.py:147 udata/core/reuse/constants.py:4
677
717
  msgid "API"
678
718
  msgstr "واجهة برمجة تطبيق (API)"
679
719
 
680
- #: udata/core/dataset/constants.py:155
720
+ #: udata/core/dataset/constants.py:148
681
721
  msgid "Code repository"
682
722
  msgstr ""
683
723
 
684
- #: udata/core/dataset/constants.py:163
724
+ #: udata/core/dataset/constants.py:156
685
725
  msgid "Uploaded file"
686
726
  msgstr "الملف الذي تم تحميله"
687
727
 
688
- #: udata/core/dataset/constants.py:164
728
+ #: udata/core/dataset/constants.py:157
689
729
  msgid "Remote file"
690
730
  msgstr "ملف بعيد"
691
731
 
@@ -762,7 +802,7 @@ msgstr "حجم الملف بالبايت"
762
802
  msgid "Related dataset"
763
803
  msgstr "مجموعة البيانات متعلقة"
764
804
 
765
- #: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1086
805
+ #: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1099
766
806
  msgid "Wrong contact point id or contact point ownership mismatch"
767
807
  msgstr ""
768
808
 
@@ -831,9 +871,8 @@ msgstr "التغطية المكانية"
831
871
  msgid "The geographical area covered by the data."
832
872
  msgstr "المنطقة الجغرافية التي تغطيها البيانات."
833
873
 
834
- #: udata/core/dataset/forms.py:211 udata/core/post/forms.py:26
835
- #: udata/core/site/forms.py:13 udata/core/topic/forms.py:15
836
- #: udata/core/topic/forms.py:89
874
+ #: udata/core/dataset/forms.py:211 udata/core/site/forms.py:13
875
+ #: udata/core/topic/forms.py:15 udata/core/topic/forms.py:89
837
876
  msgid "Tags"
838
877
  msgstr "علامات"
839
878
 
@@ -849,65 +888,67 @@ msgstr "خاص"
849
888
  msgid "Restrict the dataset visibility to you or your organization only."
850
889
  msgstr "قم بتقييد رؤية البيانات لك أو لمؤسستك فقط."
851
890
 
852
- #: udata/core/dataset/models.py:69
891
+ #: udata/core/dataset/models.py:71
853
892
  msgid "Pivotal data"
854
893
  msgstr "بيانات محورية"
855
894
 
856
- #: udata/core/dataset/models.py:70
895
+ #: udata/core/dataset/models.py:72
857
896
  msgid "Reference data public service"
858
897
  msgstr ""
859
898
 
860
- #: udata/core/dataset/models.py:71
899
+ #: udata/core/dataset/models.py:73
861
900
  msgid "Inspire"
862
901
  msgstr ""
863
902
 
864
- #: udata/core/dataset/models.py:72
903
+ #: udata/core/dataset/models.py:74
865
904
  msgid "High value datasets"
866
905
  msgstr ""
867
906
 
868
- #: udata/core/dataset/models.py:73
907
+ #: udata/core/dataset/models.py:75
869
908
  msgid "Certified statistic series"
870
909
  msgstr ""
871
910
 
872
- #: udata/core/dataset/models.py:74
911
+ #: udata/core/dataset/models.py:76
873
912
  msgid "Statistical series of general interest"
874
913
  msgstr ""
875
914
 
876
- #: udata/core/dataset/models.py:154
915
+ #: udata/core/dataset/models.py:158
877
916
  msgid "A schema must contains a name or an URL when a version is provided."
878
917
  msgstr ""
879
918
 
880
- #: udata/core/dataset/models.py:186 udata/tests/api/test_datasets_api.py:1182
881
- #: udata/tests/api/test_datasets_api.py:1193
919
+ #: udata/core/dataset/models.py:190 udata/tests/api/test_datasets_api.py:1195
920
+ #: udata/tests/api/test_datasets_api.py:1206
882
921
  #, python-brace-format
883
922
  msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
884
923
  msgstr ""
885
924
 
886
- #: udata/core/dataset/models.py:205 udata/tests/api/test_datasets_api.py:1205
925
+ #: udata/core/dataset/models.py:209 udata/tests/api/test_datasets_api.py:1218
887
926
  #, python-brace-format
888
- msgid "Version \"{version}\" is not an allowed value for the schema \"{name}\". Allowed versions: {values}"
927
+ msgid ""
928
+ "Version \"{version}\" is not an allowed value for the schema \"{name}\". "
929
+ "Allowed versions: {values}"
889
930
  msgstr ""
890
931
 
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
932
+ #: udata/core/dataset/models.py:458 udata/core/dataset/rdf.py:596
933
+ #: udata/tests/dataset/test_dataset_rdf.py:1007
934
+ #: udata/tests/dataset/test_dataset_rdf.py:1020
894
935
  msgid "Nameless resource"
895
936
  msgstr "مورد مجهول"
896
937
 
897
- #: udata/core/dataset/models.py:559
938
+ #: udata/core/dataset/models.py:568
898
939
  msgid "Future date of update"
899
940
  msgstr "تاريخ التحديث في المستقبل"
900
941
 
901
- #: udata/core/dataset/models.py:591
942
+ #: udata/core/dataset/models.py:606
902
943
  msgid "Last update of the dataset resources"
903
944
  msgstr ""
904
945
 
905
- #: udata/core/dataset/models.py:646
946
+ #: udata/core/dataset/models.py:661
906
947
  msgid "dataset"
907
948
  msgstr "مجموعة البيانات"
908
949
 
909
- #: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:882
910
- #: udata/tests/dataset/test_dataset_rdf.py:899
950
+ #: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:977
951
+ #: udata/tests/dataset/test_dataset_rdf.py:994
911
952
  #, python-brace-format
912
953
  msgid "{format} resource"
913
954
  msgstr ""
@@ -961,13 +1002,23 @@ msgstr "وقع إغلاق نقاش"
961
1002
 
962
1003
  #: udata/core/discussions/mails.py:53
963
1004
  #, python-format
964
- msgid "The discussion you participated in on the %(type)s %(object)s has been closed by %(user_or_org)s."
1005
+ msgid ""
1006
+ "The discussion you participated in on the %(type)s %(object)s has been "
1007
+ "closed by %(user_or_org)s."
965
1008
  msgstr ""
966
1009
 
967
1010
  #: udata/core/discussions/mails.py:61
968
1011
  msgid "View the discussion"
969
1012
  msgstr ""
970
1013
 
1014
+ #: udata/core/discussions/models.py:18
1015
+ msgid "message"
1016
+ msgstr ""
1017
+
1018
+ #: udata/core/discussions/models.py:76
1019
+ msgid "discussion"
1020
+ msgstr ""
1021
+
971
1022
  #: udata/core/jobs/forms.py:29
972
1023
  msgid "Tasks"
973
1024
  msgstr "مهام"
@@ -986,6 +1037,65 @@ msgstr "كل {0.period_singular}"
986
1037
  msgid "every {0.every} {0.period}"
987
1038
  msgstr "كل {0.every} {0.period}"
988
1039
 
1040
+ #: udata/core/legal/mails.py:81
1041
+ #, python-format
1042
+ msgid ""
1043
+ "Our %(terms_link)s specify in point %(article)s that the platform is not "
1044
+ "\"intended to disseminate advertising content, promotions of private "
1045
+ "interests, content contrary to public order, illegal content, spam and "
1046
+ "any contribution violating the applicable legal framework. The Editor "
1047
+ "reserves the right, without prior notice, to remove or make inaccessible "
1048
+ "content published on the Platform that has no connection with its "
1049
+ "Purpose. The Editor does not carry out \"a priori\" control over "
1050
+ "publications. As soon as the Editor becomes aware of content contrary to "
1051
+ "these terms of use, it acts quickly to remove or make it inaccessible\"."
1052
+ msgstr ""
1053
+
1054
+ #: udata/core/legal/mails.py:95
1055
+ msgid ""
1056
+ "The platform is not \"intended to disseminate advertising content, "
1057
+ "promotions of private interests, content contrary to public order, "
1058
+ "illegal content, spam and any contribution violating the applicable legal"
1059
+ " framework. The Editor reserves the right, without prior notice, to "
1060
+ "remove or make inaccessible content published on the Platform that has no"
1061
+ " connection with its Purpose. The Editor does not carry out \"a priori\" "
1062
+ "control over publications. As soon as the Editor becomes aware of content"
1063
+ " contrary to these terms of use, it acts quickly to remove or make it "
1064
+ "inaccessible\"."
1065
+ msgstr ""
1066
+
1067
+ #: udata/core/legal/mails.py:107
1068
+ #, python-format
1069
+ msgid ""
1070
+ "You may contest this decision within two months of its notification by "
1071
+ "filing an administrative appeal (recours gracieux ou hiérarchique). You "
1072
+ "may also bring the matter before the administrative court via the "
1073
+ "\"%(telerecours_link)s\" application."
1074
+ msgstr ""
1075
+
1076
+ #: udata/core/legal/mails.py:114
1077
+ msgid "You may contest this decision by contacting us."
1078
+ msgstr ""
1079
+
1080
+ #: udata/core/legal/mails.py:117
1081
+ #, python-format
1082
+ msgid "Your %(content_type)s has been deleted."
1083
+ msgstr ""
1084
+
1085
+ #: udata/core/legal/mails.py:120
1086
+ msgid "Best regards,"
1087
+ msgstr ""
1088
+
1089
+ #: udata/core/legal/mails.py:122
1090
+ #, python-format
1091
+ msgid "%(site)s team member"
1092
+ msgstr ""
1093
+
1094
+ #: udata/core/legal/mails.py:126
1095
+ #, python-format
1096
+ msgid "Deletion of your %(content_type)s"
1097
+ msgstr ""
1098
+
989
1099
  #: udata/core/organization/activities.py:18
990
1100
  msgid "created an organization"
991
1101
  msgstr "أنشأ منظمة"
@@ -1002,18 +1112,19 @@ msgstr ""
1002
1112
  msgid "Editor"
1003
1113
  msgstr "الناشر"
1004
1114
 
1005
- #: udata/core/organization/constants.py:11 udata/features/transfer/models.py:13
1006
- #: udata/harvest/models.py:28 udata/harvest/models.py:40 udata/harvest/models.py:88
1115
+ #: udata/core/organization/constants.py:11 udata/features/transfer/models.py:16
1116
+ #: udata/harvest/models.py:28 udata/harvest/models.py:40
1117
+ #: udata/harvest/models.py:89
1007
1118
  msgid "Pending"
1008
1119
  msgstr "معلق"
1009
1120
 
1010
- #: udata/core/organization/constants.py:12 udata/features/transfer/models.py:14
1011
- #: udata/harvest/models.py:89
1121
+ #: udata/core/organization/constants.py:12 udata/features/transfer/models.py:17
1122
+ #: udata/harvest/models.py:90
1012
1123
  msgid "Accepted"
1013
1124
  msgstr "مقبول"
1014
1125
 
1015
- #: udata/core/organization/constants.py:13 udata/features/transfer/models.py:15
1016
- #: udata/harvest/models.py:90
1126
+ #: udata/core/organization/constants.py:13 udata/features/transfer/models.py:18
1127
+ #: udata/harvest/models.py:91
1017
1128
  msgid "Refused"
1018
1129
  msgstr "مرفوض"
1019
1130
 
@@ -1066,7 +1177,9 @@ msgstr "طلب عضوية جديد"
1066
1177
 
1067
1178
  #: udata/core/organization/mails.py:13
1068
1179
  #, python-format
1069
- msgid "You received a membership request from %(user)s for your organization %(org)s"
1180
+ msgid ""
1181
+ "You received a membership request from %(user)s for your organization "
1182
+ "%(org)s"
1070
1183
  msgstr ""
1071
1184
 
1072
1185
  #: udata/core/organization/mails.py:18
@@ -1092,7 +1205,9 @@ msgstr ""
1092
1205
 
1093
1206
  #: udata/core/organization/mails.py:44
1094
1207
  #, python-format
1095
- msgid "Good news! Your request to join the organization %(org)s has been approved."
1208
+ msgid ""
1209
+ "Good news! Your request to join the organization %(org)s has been "
1210
+ "approved."
1096
1211
  msgstr ""
1097
1212
 
1098
1213
  #: udata/core/organization/mails.py:49 udata/core/organization/mails.py:66
@@ -1117,7 +1232,9 @@ msgstr ""
1117
1232
 
1118
1233
  #: udata/core/organization/mails.py:78
1119
1234
  #, python-format
1120
- msgid "Good news! Your organization %(org)s has been certified by our team. A badge is now associated with your organization."
1235
+ msgid ""
1236
+ "Good news! Your organization %(org)s has been certified by our team. A "
1237
+ "badge is now associated with your organization."
1121
1238
  msgstr ""
1122
1239
 
1123
1240
  #: udata/core/organization/mails.py:89
@@ -1126,7 +1243,9 @@ msgstr ""
1126
1243
 
1127
1244
  #: udata/core/organization/mails.py:93
1128
1245
  #, python-format
1129
- 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."
1246
+ msgid ""
1247
+ "Good news! Your organization %(org)s has been identified by our team as a"
1248
+ " public service. A badge is now associated with your organization."
1130
1249
  msgstr ""
1131
1250
 
1132
1251
  #: udata/core/organization/mails.py:104
@@ -1135,7 +1254,9 @@ msgstr ""
1135
1254
 
1136
1255
  #: udata/core/organization/mails.py:108
1137
1256
  #, python-format
1138
- 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."
1257
+ msgid ""
1258
+ "Good news! Your organization %(org)s has been identified by our team as a"
1259
+ " local authority. A badge is now associated with your organization."
1139
1260
  msgstr ""
1140
1261
 
1141
1262
  #: udata/core/organization/mails.py:119
@@ -1144,7 +1265,9 @@ msgstr ""
1144
1265
 
1145
1266
  #: udata/core/organization/mails.py:123
1146
1267
  #, python-format
1147
- msgid "Your organization %(org)s has been identified by our team as a company. A badge is now associated with your organization."
1268
+ msgid ""
1269
+ "Your organization %(org)s has been identified by our team as a company. A"
1270
+ " badge is now associated with your organization."
1148
1271
  msgstr ""
1149
1272
 
1150
1273
  #: udata/core/organization/mails.py:134
@@ -1153,30 +1276,36 @@ msgstr ""
1153
1276
 
1154
1277
  #: udata/core/organization/mails.py:138
1155
1278
  #, python-format
1156
- msgid "Your organization %(org)s has been identified by our team as an association. A badge is now associated with your organization."
1279
+ msgid ""
1280
+ "Your organization %(org)s has been identified by our team as an "
1281
+ "association. A badge is now associated with your organization."
1157
1282
  msgstr ""
1158
1283
 
1159
- #: udata/core/organization/models.py:39
1284
+ #: udata/core/organization/models.py:40
1160
1285
  msgid "Public Service"
1161
1286
  msgstr "خدمات عامة"
1162
1287
 
1163
- #: udata/core/organization/models.py:40
1288
+ #: udata/core/organization/models.py:41
1164
1289
  msgid "Certified"
1165
1290
  msgstr "معتمد"
1166
1291
 
1167
- #: udata/core/organization/models.py:41
1292
+ #: udata/core/organization/models.py:42
1168
1293
  msgid "Association"
1169
1294
  msgstr ""
1170
1295
 
1171
- #: udata/core/organization/models.py:42
1296
+ #: udata/core/organization/models.py:43
1172
1297
  msgid "Company"
1173
1298
  msgstr ""
1174
1299
 
1175
- #: udata/core/organization/models.py:43
1300
+ #: udata/core/organization/models.py:44
1176
1301
  msgid "Local authority"
1177
1302
  msgstr ""
1178
1303
 
1179
- #: udata/core/post/api.py:118
1304
+ #: udata/core/organization/models.py:183
1305
+ msgid "organization"
1306
+ msgstr ""
1307
+
1308
+ #: udata/core/post/api.py:73
1180
1309
  msgid "Latests posts"
1181
1310
  msgstr ""
1182
1311
 
@@ -1188,43 +1317,19 @@ msgstr ""
1188
1317
  msgid "HTML"
1189
1318
  msgstr ""
1190
1319
 
1191
- #: udata/core/post/forms.py:16
1192
- msgid "Headline"
1193
- msgstr "عنوان"
1194
-
1195
- #: udata/core/post/forms.py:17
1196
- msgid "Content"
1197
- msgstr "محتوى"
1198
-
1199
- #: udata/core/post/forms.py:19
1200
- msgid "Associated datasets"
1201
- msgstr "مجموعة بيانات مرتبطة"
1202
-
1203
- #: udata/core/post/forms.py:20
1204
- msgid "Associated reuses"
1205
- msgstr "استخدامات مرتبطة"
1206
-
1207
- #: udata/core/post/forms.py:22
1208
- msgid "Image"
1209
- msgstr "صورة"
1210
-
1211
- #: udata/core/post/forms.py:23
1212
- msgid "Image credits"
1213
- msgstr "أرصدة الصورة"
1214
-
1215
- #: udata/core/post/forms.py:24
1216
- msgid "Credit URL"
1320
+ #: udata/core/post/constants.py:11
1321
+ msgid "Blocs"
1217
1322
  msgstr ""
1218
1323
 
1219
- #: udata/core/post/forms.py:29
1220
- msgid "body type"
1324
+ #: udata/core/post/constants.py:17
1325
+ msgid "News"
1221
1326
  msgstr ""
1222
1327
 
1223
- #: udata/core/post/forms.py:29
1224
- msgid "Specify your body type (HTML or markdown)"
1328
+ #: udata/core/post/constants.py:18
1329
+ msgid "Page"
1225
1330
  msgstr ""
1226
1331
 
1227
- #: udata/core/post/models.py:55
1332
+ #: udata/core/post/models.py:129
1228
1333
  msgid "post"
1229
1334
  msgstr ""
1230
1335
 
@@ -1264,7 +1369,7 @@ msgstr "قام بتحديث استخدام"
1264
1369
  msgid "deleted a reuse"
1265
1370
  msgstr "قام بحذف استخدام"
1266
1371
 
1267
- #: udata/core/reuse/api.py:141
1372
+ #: udata/core/reuse/api.py:142
1268
1373
  msgid "Latests reuses"
1269
1374
  msgstr ""
1270
1375
 
@@ -1358,7 +1463,9 @@ msgstr ""
1358
1463
 
1359
1464
  #: udata/core/reuse/mails.py:13
1360
1465
  #, python-format
1361
- msgid "A new reuse has been published by %(user_or_org)s on your dataset %(dataset)s"
1466
+ msgid ""
1467
+ "A new reuse has been published by %(user_or_org)s on your dataset "
1468
+ "%(dataset)s"
1362
1469
  msgstr ""
1363
1470
 
1364
1471
  #: udata/core/reuse/mails.py:18
@@ -1579,7 +1686,10 @@ msgstr ""
1579
1686
 
1580
1687
  #: udata/core/user/mails.py:36
1581
1688
  #, python-format
1582
- 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."
1689
+ msgid ""
1690
+ "We have noticed that your account associated to (%(user_email)s) has been"
1691
+ " inactive for %(inactivity_years)d years or more on %(site)s, the open "
1692
+ "platform for public data."
1583
1693
  msgstr ""
1584
1694
 
1585
1695
  #: udata/core/user/mails.py:42
@@ -1588,12 +1698,20 @@ msgstr ""
1588
1698
 
1589
1699
  #: udata/core/user/mails.py:46
1590
1700
  #, python-format
1591
- msgid "Without logging in, your account will be deleted within %(notify_delay)d days."
1701
+ msgid ""
1702
+ "Without logging in, your account will be deleted within %(notify_delay)d "
1703
+ "days."
1592
1704
  msgstr ""
1593
1705
 
1594
1706
  #: udata/core/user/mails.py:50
1595
1707
  #, python-format
1596
- 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."
1708
+ msgid ""
1709
+ "This account is not tied to your other administration accounts and you "
1710
+ "can always re-create an account on the %(site)s platform if necessary."
1711
+ msgstr ""
1712
+
1713
+ #: udata/core/user/models.py:130
1714
+ msgid "account"
1597
1715
  msgstr ""
1598
1716
 
1599
1717
  #: udata/core/user/permissions.py:5
@@ -1682,7 +1800,7 @@ msgstr "يجب ان تكون موثق"
1682
1800
  msgid "This field requires \"%(name)s\" to be set"
1683
1801
  msgstr ""
1684
1802
 
1685
- #: udata/frontend/markdown.py:27
1803
+ #: udata/frontend/markdown.py:28
1686
1804
  msgid "Source"
1687
1805
  msgstr "مصدر"
1688
1806
 
@@ -1734,27 +1852,27 @@ msgstr "تم تخطيه"
1734
1852
  msgid "Archived"
1735
1853
  msgstr ""
1736
1854
 
1737
- #: udata/harvest/backends/dcat.py:434
1855
+ #: udata/harvest/backends/dcat.py:437
1738
1856
  msgid "Remote URL prefix"
1739
1857
  msgstr ""
1740
1858
 
1741
- #: udata/harvest/backends/dcat.py:437
1859
+ #: udata/harvest/backends/dcat.py:440
1742
1860
  msgid "A prefix used to build the remote URL of the harvested items."
1743
1861
  msgstr ""
1744
1862
 
1745
- #: udata/harvest/backends/ckan/harvesters.py:31
1863
+ #: udata/harvest/backends/ckan/harvesters.py:33
1746
1864
  msgid "Organization"
1747
1865
  msgstr ""
1748
1866
 
1749
- #: udata/harvest/backends/ckan/harvesters.py:31
1867
+ #: udata/harvest/backends/ckan/harvesters.py:33
1750
1868
  msgid "A CKAN Organization name"
1751
1869
  msgstr ""
1752
1870
 
1753
- #: udata/harvest/backends/ckan/harvesters.py:32
1871
+ #: udata/harvest/backends/ckan/harvesters.py:34
1754
1872
  msgid "Tag"
1755
1873
  msgstr ""
1756
1874
 
1757
- #: udata/harvest/backends/ckan/harvesters.py:32
1875
+ #: udata/harvest/backends/ckan/harvesters.py:34
1758
1876
  msgid "A CKAN tag name"
1759
1877
  msgstr ""
1760
1878
 
@@ -1773,39 +1891,31 @@ msgid "Back to home"
1773
1891
  msgstr ""
1774
1892
 
1775
1893
  #: udata/templates/comments/dataset_archived.txt:1
1776
- msgid "This dataset has been archived by our administration team.\n\n"
1777
- "An archived dataset is considered out of date by a combination of factors.\n"
1778
- "It does not appear in the search results and has a special layout warning the site's users.\n\n"
1894
+ msgid ""
1895
+ "This dataset has been archived by our administration team.\n"
1896
+ "\n"
1897
+ "An archived dataset is considered out of date by a combination of "
1898
+ "factors.\n"
1899
+ "It does not appear in the search results and has a special layout warning"
1900
+ " the site's users.\n"
1901
+ "\n"
1779
1902
  "If you think this is a mistake, you can contact the site administrator."
1780
1903
  msgstr ""
1781
1904
 
1782
- #: udata/templates/mail/base.html:45
1783
- msgid "on your browser."
1784
- msgstr ""
1785
-
1786
- #: udata/templates/mail/base.html:48
1787
- #, python-format
1788
- msgid "View this email %(link)s"
1789
- msgstr ""
1790
-
1791
- #: udata/templates/mail/base.html:76 udata/templates/mail/message.html:41
1905
+ #: udata/templates/mail/message.html:15
1792
1906
  #, python-format
1793
1907
  msgid "Hi %(user)s"
1794
1908
  msgstr ""
1795
1909
 
1796
- #: udata/templates/mail/base.html:87
1797
- msgid "See you soon on the platform"
1910
+ #: udata/templates/mail/message.html:36
1911
+ msgid "Have a great day"
1798
1912
  msgstr ""
1799
1913
 
1800
- #: udata/templates/mail/base.html:88 udata/templates/mail/message.html:63
1914
+ #: udata/templates/mail/message.html:37
1801
1915
  #, python-format
1802
1916
  msgid "The %(site)s team"
1803
1917
  msgstr ""
1804
1918
 
1805
- #: udata/templates/mail/message.html:62
1806
- msgid "Have a great day"
1807
- msgstr ""
1808
-
1809
1919
  #: udata/templates/security/change_password.html:9
1810
1920
  #: udata/templates/security/change_password.html:16
1811
1921
  msgid "Change Password"
@@ -1819,7 +1929,9 @@ msgid "Reset Password"
1819
1929
  msgstr ""
1820
1930
 
1821
1931
  #: udata/templates/security/forgot_password.html:10
1822
- msgid "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one."
1932
+ msgid ""
1933
+ "Forgotten your password? Enter your email address below, and we'll email "
1934
+ "instructions for setting a new one."
1823
1935
  msgstr ""
1824
1936
 
1825
1937
  #: udata/templates/security/login_user.html:13
@@ -1915,3 +2027,42 @@ msgstr "مستخدم بشكل كبير"
1915
2027
  msgid "Deletion of your inactive {site} account"
1916
2028
  msgstr ""
1917
2029
 
2030
+ #~ msgid "Vous devez accepter les CGU pour continuer."
2031
+ #~ msgstr ""
2032
+
2033
+ #~ msgid "Headline"
2034
+ #~ msgstr "عنوان"
2035
+
2036
+ #~ msgid "Content"
2037
+ #~ msgstr "محتوى"
2038
+
2039
+ #~ msgid "Associated datasets"
2040
+ #~ msgstr "مجموعة بيانات مرتبطة"
2041
+
2042
+ #~ msgid "Associated reuses"
2043
+ #~ msgstr "استخدامات مرتبطة"
2044
+
2045
+ #~ msgid "Image"
2046
+ #~ msgstr "صورة"
2047
+
2048
+ #~ msgid "Image credits"
2049
+ #~ msgstr "أرصدة الصورة"
2050
+
2051
+ #~ msgid "Credit URL"
2052
+ #~ msgstr ""
2053
+
2054
+ #~ msgid "body type"
2055
+ #~ msgstr ""
2056
+
2057
+ #~ msgid "Specify your body type (HTML or markdown)"
2058
+ #~ msgstr ""
2059
+
2060
+ #~ msgid "on your browser."
2061
+ #~ msgstr ""
2062
+
2063
+ #~ msgid "View this email %(link)s"
2064
+ #~ msgstr ""
2065
+
2066
+ #~ msgid "See you soon on the platform"
2067
+ #~ msgstr ""
2068
+