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