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,13 +1,15 @@
1
1
  #
2
2
  # Translators:
3
- # Tibor Simko <tibor.simko@cern.ch>, 2021
3
+ # Corina Ionascu <icorina@nipne.ro>, 2024
4
+ # Tibor Simko <tibor.simko@cern.ch>, 2024
5
+ # Nicolaie Constantinescu, 2025
4
6
  #
5
7
  msgid ""
6
8
  msgstr ""
7
9
  "Project-Id-Version: i18next-conv\n"
8
- "POT-Creation-Date: 2022-10-12T06:58:21.832Z\n"
10
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
9
11
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
10
- "Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2021\n"
12
+ "Last-Translator: Nicolaie Constantinescu, 2025\n"
11
13
  "Language-Team: Romanian (https://app.transifex.com/inveniosoftware/teams/23537/ro/)\n"
12
14
  "Content-Type: text/plain; charset=UTF-8\n"
13
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,261 +18,891 @@ msgstr ""
16
18
  "mime-version: 1.0\n"
17
19
 
18
20
  msgid "Basic information"
21
+ msgstr "Informații de bază"
22
+
23
+ msgid "Impersonate user"
24
+ msgstr "Dă-te drept userul"
25
+
26
+ msgid "Impersonate"
27
+ msgstr "Întruchipează"
28
+
29
+ msgid "You must accept this."
30
+ msgstr "Trebuie să accepți asta."
31
+
32
+ msgid "Success"
33
+ msgstr "Succes"
34
+
35
+ msgid ""
36
+ "User impersonated succesfully! You will be redirected in frontpage soon."
19
37
  msgstr ""
38
+ "User întruchipat cu succes! Imediat vei fi redirecționat în pagina de start."
20
39
 
21
- msgid "Copy to clipboard"
40
+ msgid "Unable to impersonate user."
41
+ msgstr "Nu pot întruchipa userul."
42
+
43
+ msgid ""
44
+ "Please read carefully and confirm the following statements before you "
45
+ "proceed."
22
46
  msgstr ""
47
+ "Citește cu atenție și confirmă următoarele enunțuri înainte de a merge mai "
48
+ "departe."
23
49
 
24
- msgid "Copied!"
50
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
51
+ msgstr ""
52
+ "Ești pe cale să-l întruchipezi pe userul <bold>{{email}}(id: {{id}})</bold>."
53
+
54
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
55
+ msgstr ""
56
+ "Tu <bold>TREBUIE</bold> să te deloghezi după ce ai terminat căutările."
57
+
58
+ msgid "Close"
59
+ msgstr "Închide"
60
+
61
+ msgid "Set Quota"
62
+ msgstr "Setează cota"
63
+
64
+ msgid "Set quota in bytes"
65
+ msgstr "Setează cota în bytes"
66
+
67
+ msgid "Note"
68
+ msgstr "Notă"
69
+
70
+ msgid ""
71
+ "This is the default quota that will be applied to any NEW records created by"
72
+ " this user – it will NOT update quota of existing records."
73
+ msgstr ""
74
+
75
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
76
+ msgstr ""
77
+
78
+ msgid "Unable to set quota."
79
+ msgstr ""
80
+
81
+ msgid "Quota size ({{unit}})"
82
+ msgstr ""
83
+
84
+ msgid "Enter quota size..."
85
+ msgstr ""
86
+
87
+ msgid "Max file size ({{unit}})"
88
+ msgstr ""
89
+
90
+ msgid "Enter max file size..."
91
+ msgstr ""
92
+
93
+ msgid "Ticket 1234"
94
+ msgstr ""
95
+
96
+ msgid "Set quota"
97
+ msgstr "Setează cota"
98
+
99
+ msgid "Domain"
100
+ msgstr "Domeniu"
101
+
102
+ msgid "Flagged"
103
+ msgstr "Semnalat"
104
+
105
+ msgid "Organization"
106
+ msgstr "Organizație"
107
+
108
+ msgid "Company"
109
+ msgstr ""
110
+
111
+ msgid "Mail provider"
112
+ msgstr ""
113
+
114
+ msgid "Spammer"
115
+ msgstr ""
116
+
117
+ msgid "TLD"
118
+ msgstr "TLD"
119
+
120
+ msgid "Status"
121
+ msgstr "Status"
122
+
123
+ msgid "New"
124
+ msgstr "Nou"
125
+
126
+ msgid "Moderated"
127
+ msgstr ""
128
+
129
+ msgid "Verified"
130
+ msgstr "Verificat"
131
+
132
+ msgid "Blocked"
133
+ msgstr "Blocat"
134
+
135
+ msgid "Users"
136
+ msgstr "Utilizatori"
137
+
138
+ msgid "Active"
139
+ msgstr "Activ"
140
+
141
+ msgid "Inactive"
142
+ msgstr "Inactiv"
143
+
144
+ msgid "Confirmed"
145
+ msgstr "Confirmat"
146
+
147
+ msgid "Links"
148
+ msgstr ""
149
+
150
+ msgid "Set quota for record {{recordId}}"
151
+ msgstr ""
152
+
153
+ msgid "Delete record"
154
+ msgstr "Șterge înregistrare"
155
+
156
+ msgid "Restore record"
157
+ msgstr "Restaurează înregistrare"
158
+
159
+ msgid "Unavailability statement"
160
+ msgstr ""
161
+
162
+ msgid "Record {{id}} was restored."
163
+ msgstr ""
164
+
165
+ msgid "Unable to restore."
166
+ msgstr ""
167
+
168
+ msgid "Are you sure you want to restore #{{id}}"
169
+ msgstr ""
170
+
171
+ msgid "Published"
172
+ msgstr "Publicat"
173
+
174
+ msgid "Deleted"
175
+ msgstr "Șters"
176
+
177
+ msgid "Scheduled for purge"
25
178
  msgstr ""
26
179
 
180
+ msgid "Empty draft title"
181
+ msgstr ""
182
+
183
+ msgid "version"
184
+ msgstr "versiune"
185
+
186
+ msgid "Owner"
187
+ msgstr "Proprietar"
188
+
189
+ msgid "Created"
190
+ msgstr "Creat"
191
+
27
192
  msgid "Files"
193
+ msgstr "Fișiere"
194
+
195
+ msgid "Stats"
196
+ msgstr "Informații"
197
+
198
+ msgid "Record {{id}} was deleted."
28
199
  msgstr ""
29
200
 
30
- msgid "The record has no files."
201
+ msgid "Unable to delete"
31
202
  msgstr ""
32
203
 
33
- msgid "Creators"
204
+ msgid "Public"
205
+ msgstr "Public"
206
+
207
+ msgid "Hidden"
208
+ msgstr "Ascuns"
209
+
210
+ msgid ""
211
+ "The tombstone is set to hidden but your record is public. Best practice is "
212
+ "to provide a public tombstone when deactivating public records."
34
213
  msgstr ""
35
214
 
36
- msgid "Recommended information"
215
+ msgid ""
216
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
217
+ "restricted. Please make sure no restricted information is shared in the "
218
+ "tombstone below."
37
219
  msgstr ""
38
220
 
39
- msgid "Add contributor"
221
+ msgid "Bibliographic citation"
40
222
  msgstr ""
41
223
 
224
+ msgid ""
225
+ "Input citation text. Blank field will be filled with APA citation by "
226
+ "default."
227
+ msgstr ""
228
+
229
+ msgid "Public note"
230
+ msgstr ""
231
+
232
+ msgid "User {{name}} was approved."
233
+ msgstr ""
234
+
235
+ msgid "User {{name}} is blocked."
236
+ msgstr ""
237
+
238
+ msgid "Error"
239
+ msgstr "Eroare"
240
+
241
+ msgid "User"
242
+ msgstr "Utilizator"
243
+
244
+ msgid "Email"
245
+ msgstr "Email"
246
+
247
+ msgid "Email domain"
248
+ msgstr ""
249
+
250
+ msgid "Actions"
251
+ msgstr "Acțiuni"
252
+
253
+ msgid "Records"
254
+ msgstr "Înregistrări"
255
+
256
+ msgid "Username"
257
+ msgstr "Nume utilizator"
258
+
259
+ msgid "GitHub"
260
+ msgstr "GitHub"
261
+
262
+ msgid "Updated"
263
+ msgstr "Actualizat"
264
+
265
+ msgid "Restore"
266
+ msgstr ""
267
+
268
+ msgid "Restored"
269
+ msgstr ""
270
+
271
+ msgid "Block"
272
+ msgstr ""
273
+
274
+ msgid "Suspend"
275
+ msgstr ""
276
+
277
+ msgid "Suspended"
278
+ msgstr ""
279
+
280
+ msgid "Approve"
281
+ msgstr "Aprobă"
282
+
283
+ msgid "Approved"
284
+ msgstr "Aprobat"
285
+
286
+ msgid "Activate"
287
+ msgstr "Activează"
288
+
289
+ msgid "Activated"
290
+ msgstr ""
291
+
292
+ msgid "Set default quota for {{email}}"
293
+ msgstr ""
294
+
295
+ msgid "Filter results"
296
+ msgstr "Rezultatele filtrării"
297
+
298
+ msgid "Search records in community..."
299
+ msgstr "Caută înregistrările în comunitate..."
300
+
301
+ msgid "Sort by"
302
+ msgstr "Sortează după"
303
+
304
+ msgid " results found"
305
+ msgid_plural " results found"
306
+ msgstr[0] ""
307
+ msgstr[1] ""
308
+ msgstr[2] ""
309
+
310
+ msgid "Search records..."
311
+ msgstr "Caută înregistrările..."
312
+
313
+ msgid "Search"
314
+ msgstr "Caută"
315
+
316
+ msgid "Views"
317
+ msgstr "Panouri"
318
+
319
+ msgid "Downloads"
320
+ msgstr "Descărcări"
321
+
322
+ msgid "Copy to clipboard"
323
+ msgstr "Copiază în clipboard"
324
+
325
+ msgid "Copied!"
326
+ msgstr "Copiat!"
327
+
328
+ msgid "Part of "
329
+ msgstr ""
330
+
331
+ msgid "No creation date found."
332
+ msgstr "N-am găsit data creării."
333
+
334
+ msgid "No description"
335
+ msgstr "Nicio descriere"
336
+
337
+ msgid "No publication date found."
338
+ msgstr "N-am găsit data publicării."
339
+
340
+ msgid "No resource type"
341
+ msgstr "Nu e menționat tipul resursei"
342
+
343
+ msgid "No title"
344
+ msgstr "Fără titlu"
345
+
346
+ msgid "Uploaded on {{uploadDate}}"
347
+ msgstr ""
348
+
349
+ msgid "Published in: {{publishInfo}}"
350
+ msgstr ""
351
+
352
+ msgid "{{count}} more versions exist for this record"
353
+ msgid_plural "{{count}} more versions exist for this record"
354
+ msgstr[0] ""
355
+ msgstr[1] ""
356
+ msgstr[2] ""
357
+
358
+ msgid "Person"
359
+ msgstr "Persoană"
360
+
361
+ msgid "The record has no files."
362
+ msgstr "Înregistrarea nu are fișiere."
363
+
364
+ msgid "Creators"
365
+ msgstr "Creatorii"
366
+
367
+ msgid "Recommended information"
368
+ msgstr "Informații recomandate"
369
+
370
+ msgid "Add contributor"
371
+ msgstr "Adaugă contribuitor"
372
+
42
373
  msgid "Contributors"
374
+ msgstr "Contribuitori"
375
+
376
+ msgid "Edit contributor"
43
377
  msgstr ""
44
378
 
45
- msgid "Alternate identifiers"
379
+ msgid "Funding"
380
+ msgstr "Finanțare"
381
+
382
+ msgid "Awards/Grants"
46
383
  msgstr ""
47
384
 
385
+ msgid "Alternate identifiers"
386
+ msgstr "Identificatori alternativi"
387
+
48
388
  msgid "Related works"
49
- msgstr ""
389
+ msgstr "Lucrări similare"
390
+
391
+ msgid "References"
392
+ msgstr "Referințe"
50
393
 
51
394
  msgid "Visibility"
395
+ msgstr "Vizibilitate"
396
+
397
+ msgid "More"
398
+ msgstr ""
399
+
400
+ msgid "Unable to request the access."
401
+ msgstr ""
402
+
403
+ msgid "Your email address"
404
+ msgstr ""
405
+
406
+ msgid "Email address"
407
+ msgstr "Adresa email"
408
+
409
+ msgid "Your full name"
410
+ msgstr ""
411
+
412
+ msgid "Full name"
413
+ msgstr "Numele complet"
414
+
415
+ msgid "Request message"
416
+ msgstr ""
417
+
418
+ msgid ""
419
+ "I agree to that my full name and email address is shared with the owners of "
420
+ "the record"
421
+ msgstr ""
422
+
423
+ msgid "Request access"
424
+ msgstr "Solicită acces"
425
+
426
+ msgid "Email confirmation needed"
427
+ msgstr ""
428
+
429
+ msgid "We have sent you an email to verify your address."
430
+ msgstr ""
431
+
432
+ msgid ""
433
+ "\n"
434
+ " Please check the email and follow the instructions to complete the access request.\n"
435
+ " "
436
+ msgstr ""
437
+
438
+ msgid "An error occurred while fetching communities."
439
+ msgstr ""
440
+
441
+ msgid "Communities"
442
+ msgstr "Comunități"
443
+
444
+ msgid "View all {{count}} communities"
445
+ msgid_plural "View all {{count}} communities"
446
+ msgstr[0] ""
447
+ msgstr[1] ""
448
+ msgstr[2] ""
449
+
450
+ msgid "Submit to community"
451
+ msgstr ""
452
+
453
+ msgid "Pending submissions"
454
+ msgstr ""
455
+
456
+ msgid "Manage communities"
457
+ msgstr ""
458
+
459
+ msgid "Community management menu dropdown"
52
460
  msgstr ""
53
461
 
54
462
  msgid "Edit"
55
463
  msgstr "Editează"
56
464
 
57
- msgid "An error occurred while generating the citation."
465
+ msgid "Export selection"
58
466
  msgstr ""
59
467
 
60
- msgid "Citation"
468
+ msgid "Download file"
469
+ msgstr "Descarcă fișier"
470
+
471
+ msgid "Export"
472
+ msgstr "Export"
473
+
474
+ msgid "Manage"
475
+ msgstr "Gestionează"
476
+
477
+ msgid "Manage record"
478
+ msgstr "Gestionează înregistrarea"
479
+
480
+ msgid "Manage user"
61
481
  msgstr ""
62
482
 
63
- msgid "Style"
483
+ msgid "Remove branding"
64
484
  msgstr ""
65
485
 
66
- msgid "Version"
486
+ msgid "{{communityTitle}} is a default branding for this record"
67
487
  msgstr ""
68
488
 
69
- msgid "Preview"
489
+ msgid ""
490
+ "Remove this community from appearing on top of the record details page."
70
491
  msgstr ""
71
492
 
72
- msgid "Only published versions are displayed."
493
+ msgid "Set branding"
73
494
  msgstr ""
74
495
 
75
- msgid "View all {{total}} versions"
496
+ msgid "Set {{communityTitle}} as a default branding for this record"
76
497
  msgstr ""
77
498
 
78
- msgid "You don't have permissions to share this record."
499
+ msgid "Set this community to appear on the top of the record details page."
79
500
  msgstr ""
80
501
 
81
- msgid "Share"
502
+ msgid "Pending communities"
82
503
  msgstr ""
83
504
 
84
- msgid "Can view"
505
+ msgid "Search for pending submissions to communities..."
85
506
  msgstr ""
86
507
 
87
- msgid "Can preview"
508
+ msgid "An error occurred while generating the citation."
509
+ msgstr "A apărut o eroare în timpul generării citării."
510
+
511
+ msgid "Style"
512
+ msgstr "Aspect"
513
+
514
+ msgid "This record is not included in any communities yet."
88
515
  msgstr ""
89
516
 
90
- msgid "Can edit"
517
+ msgid "Search for community..."
91
518
  msgstr ""
92
519
 
93
- msgid "Get a link"
520
+ msgid "Record submitted"
94
521
  msgstr ""
95
522
 
96
- msgid "Copy link"
523
+ msgid "Review requested"
97
524
  msgstr ""
98
525
 
99
- msgid "Delete link"
526
+ msgid "Search in all communities"
527
+ msgstr "Caută prin toate comunitățile"
528
+
529
+ msgid "Search in my communities"
530
+ msgstr "Caută în comunitățile din care fac parte"
531
+
532
+ msgid "Select a community"
533
+ msgstr "Selectează o comunitate"
534
+
535
+ msgid "Version {{- version}}"
100
536
  msgstr ""
101
537
 
102
- msgid "Done"
538
+ msgid "Preview"
539
+ msgstr "Previzualizare"
540
+
541
+ msgid "Only published versions are displayed."
542
+ msgstr "Sunt afișate doar versiunile publicate."
543
+
544
+ msgid "An error occurred while fetching the versions."
103
545
  msgstr ""
104
546
 
547
+ msgid "View all {{count}} versions"
548
+ msgid_plural "View all {{count}} versions"
549
+ msgstr[0] ""
550
+ msgstr[1] ""
551
+ msgstr[2] ""
552
+
105
553
  msgid ""
106
- "Anyone with this link <1>can view all versions</1> of this record & files."
554
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
555
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
556
+ "latest one. <5>Read more</5>.</0>"
107
557
  msgstr ""
108
558
 
109
559
  msgid ""
110
- "Anyone with this link <2>can view all published and unpublished versions</2>"
111
- " of this record & files."
560
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
561
+ "The DOI is registered when the first version is published. <4>Read "
562
+ "more</4>.</0>"
112
563
  msgstr ""
113
564
 
114
- msgid "Uploaded on"
565
+ msgid "Remove"
566
+ msgstr "Elimină"
567
+
568
+ msgid "Remove {{communityTitle}} from this record"
115
569
  msgstr ""
116
570
 
117
- msgid "Search"
118
- msgstr "Caută"
571
+ msgid "Remove community"
572
+ msgstr ""
119
573
 
120
- msgid "Search guide"
574
+ msgid "Are you sure you want to remove the record from the community?"
121
575
  msgstr ""
122
576
 
123
- msgid "result(s) found"
577
+ msgid "I understand the consequences:"
124
578
  msgstr ""
125
579
 
126
- msgid "Sort by"
580
+ msgid ""
581
+ "The record can only be re-included in the community by going through a new "
582
+ "review by the community curators."
127
583
  msgstr ""
128
584
 
129
- msgid "View"
585
+ msgid "Something went wrong"
130
586
  msgstr ""
131
587
 
132
- msgid "New community"
588
+ msgid "Cancel removal"
133
589
  msgstr ""
134
590
 
135
- msgid "Get started!"
591
+ msgid "Cancel"
592
+ msgstr "Anulează"
593
+
594
+ msgid "Confirm removal"
136
595
  msgstr ""
137
596
 
138
- msgid "Open"
597
+ msgid ""
598
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
599
+ "their access</4> to the record."
139
600
  msgstr ""
140
601
 
141
- msgid "Closed"
602
+ msgid "Select permissions"
142
603
  msgstr ""
143
604
 
144
- msgid "All done!"
605
+ msgid "Short name for your link (optional)."
145
606
  msgstr ""
146
607
 
147
- msgid "You've caught up with all open requests."
608
+ msgid "Expiration date format: YYYY-MM-DD"
148
609
  msgstr ""
149
610
 
150
- msgid "No creation date found."
611
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
151
612
  msgstr ""
152
613
 
153
- msgid "No description"
614
+ msgid "Create a new link"
154
615
  msgstr ""
155
616
 
156
- msgid "No publication date found."
617
+ msgid "Link title"
157
618
  msgstr ""
158
619
 
159
- msgid "No resource type"
620
+ msgid "Expires at"
160
621
  msgstr ""
161
622
 
162
- msgid "No title"
623
+ msgid "Never"
163
624
  msgstr ""
164
625
 
165
- msgid "Make your first upload!"
626
+ msgid "Access"
627
+ msgstr "Accesează"
628
+
629
+ msgid "Delete"
630
+ msgstr "Şterge"
631
+
632
+ msgid "Copy link"
633
+ msgstr "Copiază un link"
634
+
635
+ msgid "Can view"
636
+ msgstr "Poți vizualiza"
637
+
638
+ msgid "Can view restricted files of all versions of this record."
166
639
  msgstr ""
167
640
 
168
- msgid "New upload"
641
+ msgid "Can preview drafts"
169
642
  msgstr ""
170
643
 
171
- msgid "ORCID profile"
644
+ msgid "Can view drafts and restricted files of all versions of this record."
172
645
  msgstr ""
173
646
 
174
- msgid "ROR profile"
647
+ msgid "Can edit"
648
+ msgstr "Poți edita"
649
+
650
+ msgid ""
651
+ "Can edit drafts and view restricted files of all versions of this record."
175
652
  msgstr ""
176
653
 
177
- msgid "GND profile"
654
+ msgid ""
655
+ "Can view (view access link can be created only after the record is "
656
+ "published)"
178
657
  msgstr ""
179
658
 
180
- msgid "No communities found!"
659
+ msgid "Expires"
660
+ msgstr "Expiră"
661
+
662
+ msgid "This record has no links generated yet."
181
663
  msgstr ""
182
664
 
183
- msgid "No requests found!"
665
+ msgid "Unable to change the access request settings."
184
666
  msgstr ""
185
667
 
186
- msgid "Copied"
668
+ msgid "Allow authenticated users to request access to restricted files."
187
669
  msgstr ""
188
670
 
189
- msgid "Reset search"
671
+ msgid "Allow non-authenticated users to request access to restricted files."
190
672
  msgstr ""
191
673
 
192
- msgid "We couldn't find any matches for "
674
+ msgid "Accept conditions"
193
675
  msgstr ""
194
676
 
195
- msgid "your search"
677
+ msgid "Advanced options"
196
678
  msgstr ""
197
679
 
198
- msgid "Start over"
680
+ msgid "Save"
681
+ msgstr "Salvează"
682
+
683
+ msgid "No user has access to this record yet."
199
684
  msgstr ""
200
685
 
201
- msgid "ProTip"
686
+ msgid "People with access"
202
687
  msgstr ""
203
688
 
204
- msgid "For more tips, check out our "
689
+ msgid "No group has access to this record yet."
205
690
  msgstr ""
206
691
 
207
- msgid "search guide"
692
+ msgid "Groups with access"
208
693
  msgstr ""
209
694
 
210
- msgid "Export"
695
+ msgid "You"
696
+ msgstr "Tu"
697
+
698
+ msgid "Add people"
211
699
  msgstr ""
212
700
 
213
- msgid "Filter results"
701
+ msgid "No selected users"
214
702
  msgstr ""
215
703
 
216
- msgid "In review"
704
+ msgid ""
705
+ "Search for users to grant access (only users with a public profile can be "
706
+ "invited)"
217
707
  msgstr ""
218
708
 
219
- msgid "Declined"
709
+ msgid "Search by email, full name or username"
710
+ msgstr "Caută după email, numele complet sau nume de utilizator"
711
+
712
+ msgid "users"
220
713
  msgstr ""
221
714
 
222
- msgid "Expired"
715
+ msgid "Add groups"
716
+ msgstr "Adaugă grupuri"
717
+
718
+ msgid "Group"
719
+ msgstr "Grup"
720
+
721
+ msgid "No selected groups"
223
722
  msgstr ""
224
723
 
225
- msgid "Draft"
724
+ msgid "Search for groups"
725
+ msgstr "Caută după grupuri"
726
+
727
+ msgid "groups"
226
728
  msgstr ""
227
729
 
228
- msgid "New version draft"
730
+ msgid "Add"
731
+ msgstr "Adaugă"
732
+
733
+ msgid "Notify people"
229
734
  msgstr ""
230
735
 
231
- msgid "Download file"
736
+ msgid "Notification message"
737
+ msgstr ""
738
+
739
+ msgid "You are about to add"
740
+ msgstr ""
741
+
742
+ msgid "Access already granted"
232
743
  msgstr ""
233
744
 
234
- msgid "No link has been created. Click on 'Get a Link' to make a new link."
745
+ msgid "Can manage"
235
746
  msgstr ""
236
747
 
237
748
  msgid ""
238
- "Anyone with an account and this link <1>can edit all versions</1> of this "
239
- "record & files."
749
+ "Can manage access, edit drafts and view restricted files of all versions of "
750
+ "this record."
240
751
  msgstr ""
241
752
 
242
- msgid "Search records..."
753
+ msgid "You don't have permissions to share this record."
754
+ msgstr "Nu ai permisiunile să distribui această înregistrare."
755
+
756
+ msgid "Share"
757
+ msgstr "Distribuie"
758
+
759
+ msgid "People"
760
+ msgstr "Oameni"
761
+
762
+ msgid "Groups"
763
+ msgstr "Grupuri"
764
+
765
+ msgid "Settings"
766
+ msgstr "Setări"
767
+
768
+ msgid "Share access"
243
769
  msgstr ""
244
770
 
245
- msgid "will give you all the publications from 2017 until today."
771
+ msgid "Link expiration"
246
772
  msgstr ""
247
773
 
248
- msgid " for defining advanced search queries."
774
+ msgid "In 1 month"
249
775
  msgstr ""
250
776
 
251
- msgid "Public"
777
+ msgid "In 2 months"
252
778
  msgstr ""
253
779
 
254
- msgid "Restricted"
780
+ msgid "In 6 months"
255
781
  msgstr ""
256
782
 
257
- msgid "Search in my communities..."
783
+ msgid "In 1 year"
258
784
  msgstr ""
259
785
 
260
- msgid "Opened {{difference}} by"
786
+ msgid "Invalid date format."
261
787
  msgstr ""
262
788
 
263
- msgid "Search in my requests..."
789
+ msgid "Access link expiration date cannot be in the past."
264
790
  msgstr ""
265
791
 
266
- msgid "Actions"
792
+ msgid "Access request"
793
+ msgstr "Cerere de acces"
794
+
795
+ msgid "Unable to change the expiration request settings."
267
796
  msgstr ""
268
797
 
269
- msgid "open"
798
+ msgid "Expiration date: "
270
799
  msgstr ""
271
800
 
272
- msgid "unlock"
801
+ msgid ""
802
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
803
+ "empty to set no expiration limit."
804
+ msgstr ""
805
+
806
+ msgid "Link expiration date:"
807
+ msgstr ""
808
+
809
+ msgid "We couldn't find any matches for {{- search}}"
810
+ msgstr ""
811
+
812
+ msgid "Start over"
813
+ msgstr "Ia-o de la capăt"
814
+
815
+ msgid "ProTip"
816
+ msgstr "Sfat profesionist"
817
+
818
+ msgid "Search guide"
819
+ msgstr "Ghid de căutare"
820
+
821
+ msgid ""
822
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
823
+ "search queries.</0>"
273
824
  msgstr ""
274
825
 
826
+ msgid "Search in my communities..."
827
+ msgstr "Caută în comunitățile mele..."
828
+
829
+ msgid "View"
830
+ msgstr "Vizualizare"
831
+
832
+ msgid "Published in: {{publishedIn}}"
833
+ msgstr ""
834
+
835
+ msgid "In review"
836
+ msgstr "În evaluare"
837
+
838
+ msgid "Declined"
839
+ msgstr "Respins"
840
+
841
+ msgid "Expired"
842
+ msgstr "Expirat"
843
+
844
+ msgid "Draft"
845
+ msgstr "Ciornă"
846
+
847
+ msgid "New version draft"
848
+ msgstr "Versiune nouă de ciornă"
849
+
850
+ msgid "open"
851
+ msgstr "deschide"
852
+
853
+ msgid "Open"
854
+ msgstr "Deschis"
855
+
856
+ msgid "unlock"
857
+ msgstr "deblochează"
858
+
859
+ msgid "Get started!"
860
+ msgstr "Începe!"
861
+
862
+ msgid "Make your first upload!"
863
+ msgstr "Fă prima ta încărcare!"
864
+
865
+ msgid "New upload"
866
+ msgstr "Încărcare nouă"
867
+
275
868
  msgid "Search in my uploads..."
869
+ msgstr "Caută în încărcările mele..."
870
+
871
+ msgid "ORCID profile"
872
+ msgstr "Profil ORCID"
873
+
874
+ msgid "ORCID logo"
875
+ msgstr ""
876
+
877
+ msgid "ROR profile"
878
+ msgstr "Profil ROR"
879
+
880
+ msgid "ROR logo"
881
+ msgstr ""
882
+
883
+ msgid "GND profile"
884
+ msgstr "Profil GND"
885
+
886
+ msgid "GND logo"
887
+ msgstr ""
888
+
889
+ msgid "No name"
890
+ msgstr ""
891
+
892
+ msgid "and {{count}} other"
893
+ msgid_plural "and {{count}} other"
894
+ msgstr[0] ""
895
+ msgstr[1] ""
896
+ msgstr[2] ""
897
+
898
+ msgid "and {{count}} others"
899
+ msgid_plural "and {{count}} others"
900
+ msgstr[0] ""
901
+ msgstr[1] ""
902
+ msgstr[2] ""
903
+
904
+ msgctxt ""
905
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
906
+ "until today.</0>"
907
+ msgid "<0><0>metadata.publication"
276
908
  msgstr ""