invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. invenio_app_rdm/__init__.py +1 -1
  2. invenio_app_rdm/administration/moderation/__init__.py +11 -0
  3. invenio_app_rdm/administration/moderation/requests.py +175 -0
  4. invenio_app_rdm/administration/records/records.py +9 -7
  5. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
  6. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
  7. invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
  8. invenio_app_rdm/administration/users/users.py +0 -5
  9. invenio_app_rdm/communities_ui/views/communities.py +9 -5
  10. invenio_app_rdm/config.py +73 -4
  11. invenio_app_rdm/ext.py +2 -2
  12. invenio_app_rdm/fixtures/pages.py +5 -2
  13. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
  14. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
  15. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
  16. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
  17. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
  18. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
  19. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
  20. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
  21. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
  22. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
  23. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
  24. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
  25. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
  26. invenio_app_rdm/records_ui/utils.py +93 -1
  27. invenio_app_rdm/records_ui/views/decorators.py +24 -14
  28. invenio_app_rdm/records_ui/views/deposits.py +100 -27
  29. invenio_app_rdm/records_ui/views/filters.py +11 -4
  30. invenio_app_rdm/records_ui/views/records.py +23 -13
  31. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  32. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
  33. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  34. invenio_app_rdm/requests_ui/views/requests.py +54 -87
  35. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
  36. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
  37. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
  38. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
  39. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
  40. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
  41. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  42. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  43. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
  44. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
  45. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  46. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  47. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  48. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  49. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
  50. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
  51. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
  52. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
  53. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
  54. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
  55. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
  56. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
  57. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
  58. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
  59. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
  60. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
  61. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
  62. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
  63. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
  64. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
  65. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
  66. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  67. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
  68. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
  69. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
  70. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  71. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  72. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
  73. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  74. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
  75. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
  76. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
  77. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
  78. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
  79. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
  80. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
  81. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
  82. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
  83. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
  84. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
  85. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
  86. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
  87. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
  88. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
  89. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
  90. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
  91. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
  92. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
  93. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
  94. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
  95. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
  96. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
  97. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
  98. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
  99. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
  100. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
  101. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
  102. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
  103. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
  104. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
  105. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
  106. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
  107. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
  108. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
  109. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  110. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
  112. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
  113. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
  114. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
  115. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
  116. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
  117. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
  118. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
  119. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
  120. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
  121. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
  122. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
  123. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
  124. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
  125. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
  126. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
  127. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
  128. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
  129. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
  130. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
  131. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
  132. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
  133. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
  134. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
  135. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
  136. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
  137. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
  138. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
  139. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
  140. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
  141. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
  142. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  143. invenio_app_rdm/theme/webpack.py +3 -2
  144. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  145. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
  146. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  147. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
  148. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  149. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
  150. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  151. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
  152. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  153. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
  154. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  155. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
  156. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  157. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
  158. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  159. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
  160. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  161. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
  162. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  163. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
  164. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  165. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
  166. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  167. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
  168. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  169. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
  170. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  171. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
  172. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  173. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
  174. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  175. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
  176. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  177. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  178. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  179. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
  180. invenio_app_rdm/translations/messages.pot +486 -303
  181. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  182. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
  183. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  184. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
  185. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  186. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
  187. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  188. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
  189. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  190. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
  191. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  192. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
  193. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  194. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
  195. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  196. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
  197. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  198. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
  199. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  200. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
  201. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  202. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
  203. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
  204. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
  205. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
  206. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
  207. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
  208. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
  209. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
  210. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
  211. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
  212. tests/__init__.py +0 -8
  213. tests/api/__init__.py +0 -8
  214. tests/api/conftest.py +0 -24
  215. tests/api/test_protect_files_rest.py +0 -73
  216. tests/api/test_record_api.py +0 -175
  217. tests/api/test_stats_api.py +0 -26
  218. tests/conftest.py +0 -390
  219. tests/fixtures/__init__.py +0 -8
  220. tests/fixtures/app_data/oai_sets.yaml +0 -3
  221. tests/fixtures/app_data/pages/about.html +0 -1
  222. tests/fixtures/app_data/pages.yaml +0 -4
  223. tests/fixtures/conftest.py +0 -27
  224. tests/fixtures/test_cli.py +0 -25
  225. tests/fixtures/test_fixtures.py +0 -46
  226. tests/mock_module/__init__.py +0 -7
  227. tests/mock_module/templates/mock_mail.html +0 -27
  228. tests/mock_module/views.py +0 -32
  229. tests/redirector/__init__.py +0 -8
  230. tests/redirector/conftest.py +0 -54
  231. tests/redirector/test_redirector.py +0 -28
  232. tests/test_tasks.py +0 -209
  233. tests/test_utils.py +0 -67
  234. tests/test_version.py +0 -16
  235. tests/test_views.py +0 -43
  236. tests/ui/__init__.py +0 -8
  237. tests/ui/conftest.py +0 -115
  238. tests/ui/test_deposits.py +0 -115
  239. tests/ui/test_export_formats.py +0 -37
  240. tests/ui/test_file_download.py +0 -73
  241. tests/ui/test_filters.py +0 -10
  242. tests/ui/test_robotstxt.py +0 -35
  243. tests/ui/test_signposting_ui.py +0 -95
  244. tests/ui/test_sitemaps.py +0 -85
  245. tests/ui/test_stats_ui.py +0 -92
  246. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
  247. {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
@@ -1,263 +1,283 @@
1
1
  {
2
- "Basic information": "",
3
- "Copy to clipboard": "",
4
- "Copied!": "",
2
+ "Basic information": "Informations de base",
3
+ "Impersonate user": "Utilisateur d'usurpation d'identité",
4
+ "Impersonate": "Imiter",
5
+ "You must accept this.": "Vous devez accepter cela.",
6
+ "Success": "Succès",
7
+ "User impersonated succesfully! You will be redirected in frontpage soon.": "L'utilisateur imité avec succès! Vous serez bientôt redirigé en première page.",
8
+ "Unable to impersonate user.": "Impossible de se faire passer pour un utilisateur.",
9
+ "Please read carefully and confirm the following statements before you proceed.": "Veuillez lire attentivement et confirmer les déclarations suivantes avant de continuer.",
10
+ "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>.": " Vous êtes sur le point de vous faire passer pour un utilisateur <bold>{{email}}(id: {{id}}).",
11
+ "You <bold>MUST</bold> logout after completing your inquiry.": "Vous <bold>DEVEZ</bold> vous déconnecter après avoir terminé votre demande.",
12
+ "Close": "Fermer",
13
+ "Set Quota": "Définir Quota",
14
+ "Set quota in bytes": "Définir le quota en octets",
15
+ "Note": "Note",
16
+ "This is the default quota that will be applied to any NEW records created by this user – it will NOT update quota of existing records.": "Il s'agit du quota par défaut qui sera appliqué à tous les enregistrements NEW créés par cet utilisateur – il ne mettra PAS à jour le quota des enregistrements existants.",
17
+ "Quota of {{id}} was set to {{quota}} {{unit}}": "Quota de {{id}} a été fixé à {{quota}} {{unit}}",
18
+ "Unable to set quota.": "Impossible de définir un quota.",
19
+ "Quota size ({{unit}})": "Taille du quota ({{unit}})",
20
+ "Enter quota size...": "Entrez la taille du quota...",
21
+ "Max file size ({{unit}})": "Taille maximale du fichier ({{unit}})",
22
+ "Enter max file size...": "Entrez la taille maximale du fichier...",
23
+ "Ticket 1234": "Billet 1234",
24
+ "Set quota": "Fixer le quota",
25
+ "Domain": "Domaine",
26
+ "Flagged": "Drapeau",
27
+ "Organization": "Organisation",
28
+ "Company": "Entreprise",
29
+ "Mail provider": "Fournisseur de messagerie",
30
+ "Spammer": "Spammer",
31
+ "TLD": "TLD",
32
+ "Status": "Statut",
33
+ "New": "Nouveau",
34
+ "Moderated": "Modéré",
35
+ "Verified": "Vérifié",
36
+ "Blocked": "Bloqué",
37
+ "Users": "Utilisateurs",
38
+ "Active": "Actif",
39
+ "Inactive": "Inactif",
40
+ "Confirmed": "Confirmé",
41
+ "Links": "Liens",
42
+ "Set quota for record {{recordId}}": "Définir le quota pour l'enregistrement {{recordId}}",
43
+ "Delete record": "Supprimer l'enregistrement",
44
+ "Restore record": "Restaurer l'enregistrement",
45
+ "Unavailability statement": "Déclaration d'indisponibilité",
46
+ "Record {{id}} was restored.": "Le record {{id}} a été restauré.",
47
+ "Unable to restore.": "Impossible de restaurer.",
48
+ "Are you sure you want to restore #{{id}}": "Êtes-vous sûr de vouloir restaurer #{{id}}",
49
+ "Published": "Publié",
50
+ "Deleted": "Supprimé",
51
+ "Scheduled for purge": "Prévu pour purge",
52
+ "Empty draft title": "Titre provisoire vide",
53
+ "version": "version",
54
+ "Owner": "Propriétaire",
55
+ "Created": "Créé",
5
56
  "Files": "Fichiers",
6
- "The record has no files.": "",
7
- "Creators": "",
8
- "Recommended information": "",
9
- "Add contributor": "",
10
- "Contributors": "",
11
- "Alternate identifiers": "",
12
- "Related works": "",
13
- "Visibility": "",
14
- "Edit": "Éditer",
15
- "An error occurred while generating the citation.": "",
16
- "Style": "",
17
- "Preview": "",
18
- "Only published versions are displayed.": "",
19
- "You don't have permissions to share this record.": "",
20
- "Share": "",
21
- "Can view": "",
22
- "Can edit": "",
23
- "Copy link": "",
57
+ "Stats": "Statistiques",
58
+ "Record {{id}} was deleted.": "Le dossier {{id}} a été supprimé.",
59
+ "Unable to delete": "Impossible de supprimer",
60
+ "Public": "Public",
61
+ "Hidden": "Caché",
62
+ "The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "La pierre tombale est cachée mais votre dossier est public. La meilleure pratique consiste à fournir une pierre tombale publique lors de la désactivation des documents publics.",
63
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is restricted. Please make sure no restricted information is shared in the tombstone below.": "FUITE D'INFORMATIONS SUR LES RISQUES: La pierre tombale est rendue publique, mais votre dossier est restreint. Veuillez vous assurer qu'aucune information restreinte n'est partagée dans la pierre tombale ci-dessous.",
64
+ "Bibliographic citation": "Bibliographie citation",
65
+ "Input citation text. Blank field will be filled with APA citation by default.": "Texte de citation. Le champ vide sera rempli avec la citation APA par défaut.",
66
+ "Public note": "Note publique",
67
+ "User {{name}} was approved.": "L'utilisateur {{name}} a été approuvé.",
68
+ "User {{name}} is blocked.": "L'utilisateur {{name}} est bloqué.",
69
+ "Error": "Erreur",
70
+ "User": "Utilisateur",
71
+ "Email": "Email",
72
+ "Email domain": "Domaine d'email",
73
+ "Actions": "Actions",
74
+ "Records": "Notices",
75
+ "Username": "Nom d'utilisateur",
76
+ "GitHub": "GitHub",
77
+ "Updated": "Mis à jour",
78
+ "Restore": "Restaurer",
79
+ "Restored": "Restauré",
80
+ "Block": "Bloquer",
81
+ "Suspend": "Suspendre",
82
+ "Suspended": "Suspendu",
83
+ "Approve": "Approuver",
84
+ "Approved": "Approuvé",
85
+ "Activate": "Activer",
86
+ "Activated": "Activé",
87
+ "Set default quota for {{email}}": "Définir le quota par défaut pour {{email}}",
88
+ "Filter results": "Filtrer les résultats",
89
+ "Search records in community...": "Rechercher des enregistrements dans la communauté...",
90
+ "Sort by": "Trier par",
91
+ " results found": " résultats trouvés",
92
+ " results found_plural": " résultats trouvés",
93
+ "Search records...": "Recherche des enregistrements...",
24
94
  "Search": "Recherche",
25
- "Search guide": "",
26
- "Sort by": "",
27
- "View": "Affichage",
28
- "Get started!": "",
29
- "Open": "Ouvrir",
30
- "No creation date found.": "",
31
- "No description": "",
32
- "No publication date found.": "",
33
- "No resource type": "",
95
+ "Views": "Vues",
96
+ "Downloads": "Téléchargements",
97
+ "Copy to clipboard": "Copier dans le presse-papiers",
98
+ "Copied!": "Copié!",
99
+ "Part of ": "Une partie de",
100
+ "No creation date found.": "Aucune date de création trouvée.",
101
+ "No description": "Aucune description",
102
+ "No publication date found.": "Aucune date de publication trouvée.",
103
+ "No resource type": "Aucun type de ressource",
34
104
  "No title": "Sans titre",
35
- "Make your first upload!": "",
36
- "New upload": "",
37
- "ORCID profile": "",
38
- "ROR profile": "",
39
- "GND profile": "",
40
- "Start over": "",
41
- "ProTip": "",
105
+ "Uploaded on {{uploadDate}}": "Téléchargé sur {{uploadDate}}",
106
+ "Published in: {{publishInfo}}": "Publié dans: {{publishInfo}}",
107
+ "{{count}} more versions exist for this record": "{{count}} plus de versions existent pour cet enregistrement",
108
+ "{{count}} more versions exist for this record_plural": "{{count}} plus de versions existent pour cet enregistrement",
109
+ "Person": "Personne",
110
+ "The record has no files.": "Le dossier n'a pas de fichiers.",
111
+ "Creators": "Créateurs",
112
+ "Recommended information": "Informations recommandées",
113
+ "Add contributor": "Ajouter un contributeur",
114
+ "Contributors": "Contributeurs",
115
+ "Edit contributor": "",
116
+ "Funding": "Financement",
117
+ "Awards/Grants": "Prix/Grants",
118
+ "Alternate identifiers": "Autres identifiants",
119
+ "Related works": "Les travaux connexes",
120
+ "References": "Références",
121
+ "Visibility": "Visibilité",
122
+ "More": "Plus",
123
+ "Unable to request the access.": "Impossible de demander l'accès.",
124
+ "Your email address": "",
125
+ "Email address": "Adresse email",
126
+ "Your full name": "Votre nom complet",
127
+ "Full name": "Nom complet",
128
+ "Request message": "Message de demande",
129
+ "I agree to that my full name and email address is shared with the owners of the record": "J'accepte que mon nom complet et mon adresse e-mail soient partagés avec les propriétaires de l'enregistrement",
130
+ "Request access": "Demander l'accès",
131
+ "Email confirmation needed": "",
132
+ "We have sent you an email to verify your address.": "",
133
+ "\n Please check the email and follow the instructions to complete the access request.\n ": "",
134
+ "An error occurred while fetching communities.": "Une erreur s'est produite lors de la récupération des communautés.",
135
+ "Communities": "Communautés",
136
+ "View all {{count}} communities": "Voir toutes les communautés {{count}}",
137
+ "View all {{count}} communities_plural": "Voir toutes les communautés {{count}}",
138
+ "Submit to community": "Soumettre à la communauté",
139
+ "Pending submissions": "En attente de soumissions",
140
+ "Manage communities": "Gérer les communautés",
141
+ "Community management menu dropdown": "Menu déroulant gestion communautaire",
142
+ "Edit": "Éditer",
143
+ "Export selection": "Exporter la sélection",
144
+ "Download file": "Télécharger le fichier",
42
145
  "Export": "Exporter",
43
- "Filter results": "",
44
- "In review": "",
45
- "Declined": "",
46
- "Expired": "",
47
- "Draft": "",
48
- "New version draft": "",
49
- "Download file": "",
50
- "Search records...": "",
51
- "Search in my communities...": "",
52
- "Actions": "Actions",
53
- "open": "",
54
- "unlock": "",
55
- "Search in my uploads...": "",
56
- "Impersonate user": "",
57
- "You must accept this.": "",
58
- "Success": "",
59
- "User impersonated succesfully! You will be redirected in frontpage soon.": "",
60
- "Unable to impersonate user.": "",
61
- "Please read carefully and confirm the following statements before you proceed.": "",
62
- "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>.": "",
63
- "You <bold>MUST</bold> logout after completing your inquiry.": "",
64
- "Impersonate": "",
65
- "Set Quota": "",
66
- "Set quota in bytes": "",
67
- "Note": "",
68
- "This is the default quota that will be applied to any NEW records created by this user – it will NOT update quota of existing records.": "",
69
- "Quota of {{id}} was set to {{quota}} {{unit}}": "",
70
- "Unable to set quota.": "",
71
- "Quota size ({{unit}})": "",
72
- "Enter quota size...": "",
73
- "Max file size ({{unit}})": "",
74
- "Enter max file size...": "",
75
- "Ticket 1234": "",
76
- "Close": "",
77
- "Set quota": "",
78
- "Domain": "",
79
- "Flagged": "",
80
- "Organization": "",
81
- "Company": "",
82
- "Mail provider": "",
83
- "Spammer": "",
84
- "TLD": "",
85
- "Status": "",
86
- "New": "",
87
- "Moderated": "",
88
- "Verified": "",
89
- "Blocked": "",
90
- "Users": "",
91
- "Active": "",
92
- "Inactive": "",
93
- "Confirmed": "",
94
- "Links": "",
95
- "Set quota for record {{recordId}}": "",
96
- "Delete record": "",
97
- "Restore record": "",
98
- "Unavailability statement": "",
99
- "Record {{id}} was restored.": "",
100
- "Unable to restore.": "",
101
- "Are you sure you want to restore #{{id}}": "",
102
- "Published": "",
103
- "Deleted": "",
104
- "Scheduled for purge": "",
105
- "Empty draft title": "",
106
- "version": "",
107
- "Owner": "",
108
- "Created": "",
109
- "Stats": "",
110
- "Record {{id}} was deleted.": "",
111
- "Unable to delete": "",
112
- "The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "",
113
- "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is restricted. Please make sure no restricted information is shared in the tombstone below.": "",
114
- "Bibliographic citation": "",
115
- "Input citation text. Blank field will be filled with APA citation by default.": "",
116
- "Public note": "",
117
- "User {{name}} was approved.": "",
118
- "User {{name}} is blocked.": "",
119
- "Error": "",
120
- "User": "",
121
- "Email": "",
122
- "Email domain": "",
123
- "Username": "",
124
- "GitHub": "",
125
- "Updated": "",
126
- "Restore": "",
127
- "Restored": "",
128
- "Block": "",
129
- "Suspend": "",
130
- "Suspended": "",
131
- "Approve": "",
132
- "Approved": "",
133
- "Activate": "",
134
- "Activated": "",
135
- "Set default quota for {{email}}": "",
136
- "Search records in community...": "",
137
- " results found": "",
138
- " results found_plural": "",
139
- "Views": "",
140
- "Downloads": "",
141
- "Part of ": "",
142
- "Uploaded on {{uploadDate}}": "",
143
- "Published in: {{publishInfo}}": "",
144
- "{{count}} more versions exist for this record": "",
145
- "{{count}} more versions exist for this record_plural": "",
146
- "References": "",
147
- "More": "",
148
- "Unable to request the access.": "",
149
- "Email address": "",
150
- "Your full name": "",
151
- "Full name": "",
152
- "Request message": "",
153
- "I agree to that my full name and email address is shared with the owners of the record": "",
154
- "Request access": "",
155
- "An error occurred while fetching communities.": "",
156
- "Communities": "",
157
- "View all {{count}} communities": "",
158
- "View all {{count}} communities_plural": "",
159
- "Submit to community": "",
160
- "Pending submissions": "",
161
- "Manage communities": "",
162
- "Community management menu dropdown": "",
163
- "Export selection": "",
164
- "Manage": "",
165
- "Manage record": "",
166
- "Manage user": "",
167
- "Remove branding": "",
168
- "{{communityTitle}} is a default branding for this record": "",
169
- "Remove this community from appearing on top of the record details page.": "",
170
- "Set branding": "",
171
- "Set {{communityTitle}} as a default branding for this record": "",
172
- "Set this community to appear on the top of the record details page.": "",
173
- "Pending communities": "",
174
- "Search for pending submissions to communities...": "",
175
- "This record is not included in any communities yet.": "",
176
- "Search for community...": "",
177
- "Record submitted": "",
178
- "Review requested": "",
179
- "Search in all communities": "",
180
- "Search in my communities": "",
181
- "Select a community": "",
182
- "Version {{- version}}": "",
183
- "An error occurred while fetching the versions.": "",
184
- "View all {{count}} versions": "",
185
- "View all {{count}} versions_plural": "",
186
- "<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>": "<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>",
187
- "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>": "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>",
188
- "Remove": "",
189
- "Remove {{communityTitle}} from this record": "",
190
- "Remove community": "",
191
- "Are you sure you want to remove the record from the community?": "",
192
- "I understand the consequences:": "",
193
- "The record can only be re-included in the community by going through a new review by the community curators.": "",
194
- "Something went wrong": "",
195
- "Cancel removal": "",
196
- "Cancel": "",
197
- "Confirm removal": "",
198
- "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.": "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.",
199
- "Select permissions": "",
200
- "Short name for your link (optional).": "",
201
- "Expiration date format: YYYY-MM-DD": "",
202
- "Expiration date: YYYY-MM-DD or never if blank (optional).": "",
203
- "Create a new link": "",
204
- "Never": "",
205
- "Delete": "",
206
- "Can view restricted files of all versions of this record.": "",
207
- "Can preview drafts": "",
208
- "Can view drafts and restricted files of all versions of this record.": "",
209
- "Can edit drafts and view restricted files of all versions of this record.": "",
210
- "Can view (view access link can be created only after the record is published)": "",
211
- "Link title": "",
212
- "Expires": "",
213
- "Access": "",
214
- "This record has no links generated yet.": "",
215
- "Unable to change the access request settings.": "",
216
- "Allow authenticated users to request access to restricted files.": "",
217
- "Allow non-authenticated users to request access to restricted files.": "",
218
- "Accept conditions": "",
219
- "Advanced options": "",
220
- "Save": "",
221
- "No user has access to this record yet.": "",
222
- "People with access": "",
223
- "No group has access to this record yet.": "",
224
- "Groups with access": "",
225
- "You": "",
226
- "Add people": "",
227
- "No selected users": "",
228
- "Search for users to grant access (only users with a public profile can be invited)": "",
229
- "Search by email, full name or username": "",
230
- "users": "",
231
- "Add groups": "",
232
- "Group": "",
233
- "No selected groups": "",
234
- "Search for groups": "",
235
- "groups": "",
236
- "Add": "",
237
- "Notify people": "",
238
- "Notification message": "",
239
- "You are about to add": "",
240
- "Access already granted": "",
241
- "Can manage": "",
242
- "Can manage access, edit drafts and view restricted files of all versions of this record.": "",
243
- "People": "",
244
- "Groups": "",
245
- "Settings": "",
246
- "Share access": "",
247
- "Link expiration": "",
248
- "In 1 month": "",
249
- "In 2 months": "",
250
- "In 6 months": "",
251
- "In 1 year": "",
252
- "Invalid date format.": "",
253
- "Access link expiration date cannot be in the past.": "",
254
- "Access request": "",
255
- "Unable to change the expiration request settings.": "",
256
- "Expiration date: ": "",
257
- "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave empty to set no expiration limit.": "",
258
- "Link expiration date:": "",
259
- "We couldn't find any matches for {{- search}}": "",
260
- "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>": "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>",
261
- "<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>": "<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>",
262
- "Published in: {{publishedIn}}": ""
146
+ "Manage": "Gérer",
147
+ "Manage record": "Gérer les enregistrements",
148
+ "Manage user": "Gérer l'utilisateur",
149
+ "Remove branding": "Supprimer l'image de marque",
150
+ "{{communityTitle}} is a default branding for this record": "{{communityTitle}} est une marque par défaut pour cet enregistrement",
151
+ "Remove this community from appearing on top of the record details page.": "Supprimez cette communauté d'apparaître en haut de la page des détails de l'enregistrement.",
152
+ "Set branding": "Définir la marque",
153
+ "Set {{communityTitle}} as a default branding for this record": "Définir {{communityTitle}} comme marque par défaut pour cet enregistrement",
154
+ "Set this community to appear on the top of the record details page.": "Définissez cette communauté pour qu'elle apparaisse en haut de la page des détails de l'enregistrement.",
155
+ "Pending communities": "Les communautés en attente",
156
+ "Search for pending submissions to communities...": "Rechercher les soumissions en attente aux communautés...",
157
+ "An error occurred while generating the citation.": "Une erreur s'est produite lors de la génération de la citation.",
158
+ "Style": "Style",
159
+ "This record is not included in any communities yet.": "Ce dossier n'est pas encore inclus dans les communautés.",
160
+ "Search for community...": "Recherche de communauté...",
161
+ "Record submitted": "Dossier soumis",
162
+ "Review requested": "Examen demandé",
163
+ "Search in all communities": "Rechercher dans toutes les communautés",
164
+ "Search in my communities": "Rechercher dans mes communautés",
165
+ "Select a community": "Sélectionnez une communauté",
166
+ "Version {{- version}}": "Version {{-version}}",
167
+ "Preview": "Aperçu",
168
+ "Only published versions are displayed.": "Seules les versions publiées sont affichées.",
169
+ "An error occurred while fetching the versions.": "Une erreur s'est produite lors de la récupération des versions.",
170
+ "View all {{count}} versions": "Voir toutes les versions {{count}}",
171
+ "View all {{count}} versions_plural": "Voir toutes les versions {{count}}",
172
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>": "<0><0>Citer toutes les versions?</0> Vous pouvez citer toutes les versions en utilisant le DOI <3></3>. Ce DOI représente toutes les versions, et se résoudra toujours à la dernière.  <5>En savoir plus</5>.</0>",
173
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>": "<0><0>Citer toutes les versions?</0> Vous pouvez citer toutes les versions en utilisant le DOI. Le DOI est enregistré lors de la première version. <4>En savoir plus</4>.</0>",
174
+ "Remove": "Supprimer",
175
+ "Remove {{communityTitle}} from this record": "Supprimer {{communityTitle}} de cet enregistrement",
176
+ "Remove community": "Supprimer la communauté",
177
+ "Are you sure you want to remove the record from the community?": "Êtes-vous sûr de vouloir supprimer l'enregistrement de la communauté?",
178
+ "I understand the consequences:": "Je comprends les conséquences:",
179
+ "The record can only be re-included in the community by going through a new review by the community curators.": "Le dossier ne peut être ré-inclus dans la communauté qu'en passant par un nouvel examen par les conservateurs de la communauté.",
180
+ "Something went wrong": "Quelque chose s'est mal passé",
181
+ "Cancel removal": "Annuler la suppression",
182
+ "Cancel": "Annuler",
183
+ "Confirm removal": "Confirmer la suppression",
184
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.": "Membres de la communauté<1>\"<1>{{communityTitle}}</1>\"</1>volonté<4>perdre leur accès</4>au dossier.",
185
+ "Select permissions": "Sélectionnez les autorisations",
186
+ "Short name for your link (optional).": "Nom abrégé de votre lien (facultatif).",
187
+ "Expiration date format: YYYY-MM-DD": "Format de date d'expiration: AAAA-MM-JJ",
188
+ "Expiration date: YYYY-MM-DD or never if blank (optional).": "Date d'expiration: AAAA-MM-JJ ou jamais si vide (facultatif).",
189
+ "Create a new link": "Créer un nouveau lien",
190
+ "Link title": "Titre du lien",
191
+ "Expires at": "",
192
+ "Never": "Jamais",
193
+ "Access": "Accès",
194
+ "Delete": "Supprimer",
195
+ "Copy link": "Copier le lien",
196
+ "Can view": "Peut voir",
197
+ "Can view restricted files of all versions of this record.": "Peut afficher les fichiers restreints de toutes les versions de cet enregistrement.",
198
+ "Can preview drafts": "Peut prévisualiser les brouillons",
199
+ "Can view drafts and restricted files of all versions of this record.": "Peut afficher les brouillons et les fichiers restreints de toutes les versions de cet enregistrement.",
200
+ "Can edit": "Peut éditer",
201
+ "Can edit drafts and view restricted files of all versions of this record.": "Peut modifier les brouillons et afficher les fichiers restreints de toutes les versions de cet enregistrement.",
202
+ "Can view (view access link can be created only after the record is published)": "Peut afficher (voir le lien d'accès ne peut être créé qu'après la publication de l'enregistrement)",
203
+ "Expires": "Expire",
204
+ "This record has no links generated yet.": "Cet enregistrement n'a pas encore de liens générés.",
205
+ "Unable to change the access request settings.": "Impossible de modifier les paramètres de la demande d'accès.",
206
+ "Allow authenticated users to request access to restricted files.": "Autoriser les utilisateurs authentifiés à demander l'accès aux fichiers restreints.",
207
+ "Allow non-authenticated users to request access to restricted files.": "Autoriser les utilisateurs non authentifiés à demander l'accès aux fichiers restreints.",
208
+ "Accept conditions": "Accepter les conditions",
209
+ "Advanced options": "Options avancées",
210
+ "Save": "Enregistrer",
211
+ "No user has access to this record yet.": "Aucun utilisateur n'a encore accès à cet enregistrement.",
212
+ "People with access": "Personnes ayant accès",
213
+ "No group has access to this record yet.": "Aucun groupe n'a encore accès à cet enregistrement.",
214
+ "Groups with access": "Groupes avec accès",
215
+ "You": "Vous",
216
+ "Add people": "Ajouter des personnes",
217
+ "No selected users": "Aucun utilisateur sélectionné",
218
+ "Search for users to grant access (only users with a public profile can be invited)": "Recherche d'utilisateurs pour accorder l'accès (seuls les utilisateurs ayant un profil public peuvent être invités)",
219
+ "Search by email, full name or username": "Recherche par email, nom complet ou nom d'utilisateur",
220
+ "users": "utilisateurs",
221
+ "Add groups": "Ajouter des groupes",
222
+ "Group": "Groupe",
223
+ "No selected groups": "Aucun groupe sélectionné",
224
+ "Search for groups": "Recherche de groupes",
225
+ "groups": "groupes",
226
+ "Add": "Ajouter",
227
+ "Notify people": "Prévenez les gens",
228
+ "Notification message": "Message de notification",
229
+ "You are about to add": "Vous êtes sur le point d'ajouter",
230
+ "Access already granted": "Accès déjà accordé",
231
+ "Can manage": "Peut gérer",
232
+ "Can manage access, edit drafts and view restricted files of all versions of this record.": "Peut gérer l'accès, modifier les brouillons et afficher les fichiers restreints de toutes les versions de cet enregistrement.",
233
+ "You don't have permissions to share this record.": "Vous n'avez pas les autorisations pour partager cet enregistrement.",
234
+ "Share": "Partager",
235
+ "People": "Personnes",
236
+ "Groups": "Groupes",
237
+ "Settings": "Paramètres",
238
+ "Share access": "Partager l'accès",
239
+ "Link expiration": "Expiration du lien",
240
+ "In 1 month": "En 1 mois",
241
+ "In 2 months": "En 2 mois",
242
+ "In 6 months": "En 6 mois",
243
+ "In 1 year": "En 1 an",
244
+ "Invalid date format.": "Format date invalide.",
245
+ "Access link expiration date cannot be in the past.": "La date d'expiration du lien d'accès ne peut pas être dans le passé.",
246
+ "Access request": "Demande d'accès",
247
+ "Unable to change the expiration request settings.": "Impossible de modifier les paramètres de la demande d'expiration.",
248
+ "Expiration date: ": "Date d'expiration:",
249
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave empty to set no expiration limit.": "Format: AAAA-MM-JJ. L'accès accordé expirera à la date indiquée. Laissez vide pour ne définir aucune limite d'expiration.",
250
+ "Link expiration date:": "Date d'expiration du lien:",
251
+ "We couldn't find any matches for {{- search}}": "Nous n'avons trouvé aucune correspondance pour {{-search}}",
252
+ "Start over": "Commencer",
253
+ "ProTip": "ProTip",
254
+ "Search guide": "Guide de recherche",
255
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>": "<0>Pour plus de conseils, consultez notre<2>guide de recherche</2>pour définir des requêtes de recherche avancées.</0>",
256
+ "Search in my communities...": "Rechercher dans mes communautés...",
257
+ "View": "Affichage",
258
+ "Published in: {{publishedIn}}": "Publié dans: {{publishedIn}}",
259
+ "In review": "En revue",
260
+ "Declined": "Décliné",
261
+ "Expired": "Expiré",
262
+ "Draft": "Projet",
263
+ "New version draft": "Nouvelle version",
264
+ "open": "ouvert",
265
+ "Open": "Ouvrir",
266
+ "unlock": "déverrouiller",
267
+ "Get started!": "Commencez!",
268
+ "Make your first upload!": "Faites votre premier téléchargement!",
269
+ "New upload": "Nouveau téléchargement",
270
+ "Search in my uploads...": "Rechercher dans mes téléchargements...",
271
+ "ORCID profile": "ORCID profil",
272
+ "ORCID logo": "",
273
+ "ROR profile": "Profil de ROR",
274
+ "ROR logo": "",
275
+ "GND profile": "GND profil",
276
+ "GND logo": "",
277
+ "No name": "",
278
+ "and {{count}} other": "",
279
+ "and {{count}} other_plural": "",
280
+ "and {{count}} others": "",
281
+ "and {{count}} others_plural": "",
282
+ "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>": "metadata.publication_date:[2017-01-01 À *] vous donnera toutes les publications de 2017 à aujourd'hui."
263
283
  }