invenio-app-rdm 12.0.0.dev8__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 (479) hide show
  1. invenio_app_rdm/__init__.py +3 -2
  2. invenio_app_rdm/{stats/templates/events/record_view/v7 → administration}/__init__.py +1 -3
  3. invenio_app_rdm/{stats/templates/events/record_view → administration/audit_logs}/__init__.py +6 -4
  4. invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
  5. invenio_app_rdm/administration/domains/__init__.py +22 -0
  6. invenio_app_rdm/administration/domains/domains.py +159 -0
  7. invenio_app_rdm/administration/moderation/__init__.py +11 -0
  8. invenio_app_rdm/administration/moderation/requests.py +175 -0
  9. invenio_app_rdm/administration/records/__init__.py +15 -0
  10. invenio_app_rdm/administration/records/records.py +163 -0
  11. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
  12. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
  13. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
  14. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
  15. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
  16. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
  17. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
  18. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
  19. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
  20. invenio_app_rdm/{stats/templates/aggregations/aggr_record_view/v7 → administration/user_moderation}/__init__.py +4 -3
  21. invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
  22. invenio_app_rdm/administration/users/__init__.py +12 -0
  23. invenio_app_rdm/administration/users/users.py +130 -0
  24. invenio_app_rdm/{stats/templates/events/file_download/v7 → administration/views}/__init__.py +4 -3
  25. invenio_app_rdm/administration/views/ui.py +21 -0
  26. invenio_app_rdm/cli.py +37 -14
  27. invenio_app_rdm/communities_ui/searchapp.py +1 -0
  28. invenio_app_rdm/communities_ui/sitemap.py +63 -0
  29. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
  30. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
  31. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
  32. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/{details → records}/index.html +1 -1
  33. invenio_app_rdm/communities_ui/views/communities.py +183 -8
  34. invenio_app_rdm/communities_ui/views/ui.py +52 -42
  35. invenio_app_rdm/config.py +586 -90
  36. invenio_app_rdm/ext.py +157 -0
  37. invenio_app_rdm/fixtures/__init__.py +2 -2
  38. invenio_app_rdm/fixtures/pages.py +34 -12
  39. invenio_app_rdm/records_ui/searchapp.py +43 -0
  40. invenio_app_rdm/records_ui/sitemap.py +44 -0
  41. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +59 -16
  42. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +236 -141
  43. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
  44. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +4 -3
  45. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
  46. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +22 -20
  47. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
  48. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +290 -230
  49. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
  50. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
  51. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
  52. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +30 -22
  53. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -19
  54. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +19 -16
  55. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
  56. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +9 -5
  57. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
  58. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
  59. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +24 -4
  60. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +2 -2
  61. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
  62. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +15 -5
  63. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +93 -79
  64. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +1 -1
  65. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
  66. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +2 -1
  67. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +54 -39
  68. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +182 -93
  69. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
  70. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +152 -79
  71. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
  72. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
  73. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
  74. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
  75. invenio_app_rdm/records_ui/utils.py +126 -1
  76. invenio_app_rdm/records_ui/views/__init__.py +75 -17
  77. invenio_app_rdm/records_ui/views/decorators.py +309 -38
  78. invenio_app_rdm/records_ui/views/deposits.py +302 -51
  79. invenio_app_rdm/records_ui/views/filters.py +74 -7
  80. invenio_app_rdm/records_ui/views/records.py +256 -90
  81. invenio_app_rdm/redirector/resource.py +1 -0
  82. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +34 -8
  83. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  84. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
  85. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +5 -3
  86. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  87. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
  88. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
  89. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
  90. invenio_app_rdm/requests_ui/views/requests.py +221 -42
  91. invenio_app_rdm/requests_ui/views/ui.py +17 -4
  92. invenio_app_rdm/tasks.py +6 -2
  93. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
  94. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
  95. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
  96. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
  97. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
  98. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
  99. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
  100. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
  101. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
  102. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
  103. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
  104. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
  105. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
  106. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
  107. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
  108. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
  109. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
  110. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
  112. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
  113. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
  114. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
  115. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
  116. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
  117. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
  118. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
  119. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
  120. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
  121. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
  122. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
  123. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
  124. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
  125. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
  126. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
  127. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  128. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  129. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
  130. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
  131. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
  132. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
  133. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
  134. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
  135. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
  136. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
  137. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
  138. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
  139. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
  140. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
  141. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
  142. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
  143. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
  144. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
  145. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +2 -2
  146. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +1 -1
  147. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +1 -1
  148. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +8 -3
  149. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +51 -0
  150. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
  151. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
  152. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
  153. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  154. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  155. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  156. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  157. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +61 -31
  158. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +680 -486
  159. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
  160. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
  161. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +14 -2
  162. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +61 -21
  163. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
  164. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +171 -0
  165. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
  166. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +10 -1
  167. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
  168. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
  169. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
  170. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
  171. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
  172. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
  173. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +55 -51
  174. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +87 -89
  175. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +44 -30
  176. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +39 -20
  177. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +44 -17
  178. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
  179. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +111 -62
  180. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +99 -61
  181. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
  182. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
  183. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +98 -0
  184. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
  185. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +216 -0
  186. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +104 -0
  187. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +230 -0
  188. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
  189. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
  190. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
  191. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
  192. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
  193. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +13 -4
  194. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +238 -0
  195. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
  196. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
  197. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +72 -25
  198. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +10 -6
  199. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +6 -1
  200. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +56 -0
  201. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
  202. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
  203. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
  204. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
  205. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +15 -13
  206. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +1 -1
  207. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
  208. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +77 -9
  209. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +122 -74
  210. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +1 -11
  211. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +27 -412
  212. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +15 -14
  213. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +47 -27
  214. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +43 -27
  215. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +32 -7
  216. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  217. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +15 -4
  218. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
  219. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +15 -0
  220. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +24 -33
  221. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +18 -3
  222. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +19 -3
  223. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +2 -0
  224. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +78 -6
  225. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +21 -0
  226. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +30 -7
  227. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +17 -4
  228. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +2 -0
  229. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +34 -4
  230. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +10 -0
  231. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +48 -4
  232. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +10 -0
  233. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +16 -13
  234. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +156 -97
  235. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +7 -3
  236. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +35 -9
  237. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +28 -6
  238. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +1 -0
  239. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +40 -11
  240. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
  241. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  242. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  243. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +8 -8
  244. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +2 -5
  245. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +4 -2
  246. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +20 -33
  247. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
  248. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  249. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +805 -138
  250. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +306 -86
  251. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +690 -71
  252. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +282 -86
  253. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +700 -81
  254. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +282 -86
  255. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +822 -139
  256. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +294 -86
  257. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +692 -67
  258. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +282 -86
  259. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +819 -139
  260. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -86
  261. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +699 -79
  262. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +282 -86
  263. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
  264. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +315 -2
  265. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +811 -138
  266. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +282 -86
  267. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +747 -134
  268. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +282 -86
  269. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +689 -70
  270. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +282 -86
  271. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +810 -127
  272. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +282 -86
  273. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +696 -71
  274. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +288 -86
  275. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +804 -137
  276. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +282 -86
  277. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -66
  278. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +715 -88
  279. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +282 -86
  280. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +684 -71
  281. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +276 -86
  282. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +690 -71
  283. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +282 -86
  284. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  285. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  286. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +703 -72
  287. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +294 -86
  288. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +690 -71
  289. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +282 -86
  290. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +705 -71
  291. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +294 -86
  292. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +695 -70
  293. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +282 -86
  294. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +718 -86
  295. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +288 -86
  296. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +807 -125
  297. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +294 -86
  298. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +714 -83
  299. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +294 -86
  300. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +809 -142
  301. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +282 -86
  302. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +800 -129
  303. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +282 -86
  304. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +717 -83
  305. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +294 -86
  306. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +737 -124
  307. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +276 -86
  308. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +684 -71
  309. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +276 -86
  310. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -38
  311. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +863 -127
  312. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +15 -0
  313. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +8 -8
  314. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +12 -12
  315. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +33 -75
  316. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +42 -27
  317. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +4 -2
  318. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +144 -113
  319. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
  320. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +11 -6
  321. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
  322. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
  323. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
  324. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
  325. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +15 -16
  326. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +33 -3
  327. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
  328. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
  329. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
  330. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +43 -15
  331. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
  332. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
  333. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  334. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
  335. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
  336. invenio_app_rdm/theme/views.py +80 -28
  337. invenio_app_rdm/theme/webpack.py +38 -7
  338. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  339. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +975 -378
  340. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  341. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +908 -279
  342. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  343. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +913 -284
  344. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  345. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1070 -406
  346. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  347. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +909 -274
  348. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  349. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1018 -407
  350. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  351. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +916 -287
  352. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  353. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +964 -372
  354. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  355. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +939 -363
  356. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  357. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +907 -278
  358. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  359. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1033 -376
  360. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  361. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +908 -279
  362. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  363. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +989 -372
  364. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  365. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +970 -337
  366. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  367. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +908 -279
  368. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  369. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +910 -281
  370. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  371. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  372. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  373. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +911 -282
  374. invenio_app_rdm/translations/messages.pot +982 -289
  375. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  376. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +908 -279
  377. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  378. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +908 -279
  379. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  380. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +907 -278
  381. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  382. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1041 -382
  383. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  384. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1023 -371
  385. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  386. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +917 -288
  387. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  388. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1007 -398
  389. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  390. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +993 -342
  391. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  392. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +984 -353
  393. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  394. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +940 -348
  395. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  396. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +908 -279
  397. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +2 -2
  398. invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +1 -1
  399. invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
  400. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
  401. invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +1 -1
  402. invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +2 -3
  403. invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +0 -2
  404. invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +2 -2
  405. invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +1 -1
  406. invenio_app_rdm/users/schemas.py +27 -0
  407. invenio_app_rdm/users_ui/searchapp.py +9 -1
  408. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +1 -0
  409. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +23 -9
  410. invenio_app_rdm/users_ui/views/__init__.py +1 -1
  411. invenio_app_rdm/users_ui/views/dashboard.py +6 -1
  412. invenio_app_rdm/users_ui/views/ui.py +5 -28
  413. invenio_app_rdm/utils/files.py +1 -1
  414. invenio_app_rdm/views.py +21 -0
  415. invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA +552 -0
  416. invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD +505 -0
  417. {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +1 -1
  418. invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt +44 -0
  419. invenio_app_rdm/admin.py +0 -36
  420. invenio_app_rdm/stats/__init__.py +0 -24
  421. invenio_app_rdm/stats/event_builders.py +0 -112
  422. invenio_app_rdm/stats/permissions.py +0 -33
  423. invenio_app_rdm/stats/templates/aggregations/__init__.py +0 -10
  424. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/__init__.py +0 -10
  425. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/__init__.py +0 -10
  426. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.0.0.json +0 -69
  427. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/__init__.py +0 -10
  428. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.0.0.json +0 -69
  429. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/__init__.py +0 -10
  430. invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/aggr-file-download-v1.0.0.json +0 -69
  431. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/__init__.py +0 -10
  432. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/__init__.py +0 -10
  433. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/aggr-record-view-v1.0.0.json +0 -46
  434. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/__init__.py +0 -10
  435. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/aggr-record-view-v1.0.0.json +0 -46
  436. invenio_app_rdm/stats/templates/aggregations/aggr_record_view/v7/aggr-record-view-v1.0.0.json +0 -46
  437. invenio_app_rdm/stats/templates/events/__init__.py +0 -10
  438. invenio_app_rdm/stats/templates/events/file_download/__init__.py +0 -10
  439. invenio_app_rdm/stats/templates/events/file_download/os-v1/__init__.py +0 -10
  440. invenio_app_rdm/stats/templates/events/file_download/os-v1/file-download-v1.0.0.json +0 -93
  441. invenio_app_rdm/stats/templates/events/file_download/os-v2/__init__.py +0 -10
  442. invenio_app_rdm/stats/templates/events/file_download/os-v2/file-download-v1.0.0.json +0 -93
  443. invenio_app_rdm/stats/templates/events/file_download/v7/file-download-v1.0.0.json +0 -93
  444. invenio_app_rdm/stats/templates/events/record_view/os-v1/__init__.py +0 -10
  445. invenio_app_rdm/stats/templates/events/record_view/os-v1/record-view-v1.0.0.json +0 -70
  446. invenio_app_rdm/stats/templates/events/record_view/os-v2/__init__.py +0 -10
  447. invenio_app_rdm/stats/templates/events/record_view/os-v2/record-view-v1.0.0.json +0 -70
  448. invenio_app_rdm/stats/templates/events/record_view/v7/record-view-v1.0.0.json +0 -70
  449. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -262
  450. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/ComputerTabletRequestsItem.js +0 -74
  451. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/MobileRequestsItem.js +0 -70
  452. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
  453. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/messages.po +0 -272
  454. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/translations.json +0 -87
  455. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/messages.po +0 -272
  456. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/translations.json +0 -87
  457. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/messages.po +0 -272
  458. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/translations.json +0 -87
  459. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/messages.po +0 -272
  460. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/translations.json +0 -87
  461. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
  462. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
  463. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
  464. invenio_app_rdm/theme/static/robots.txt +0 -5
  465. invenio_app_rdm/translations/af/LC_MESSAGES/messages.mo +0 -0
  466. invenio_app_rdm/translations/af/LC_MESSAGES/messages.po +0 -728
  467. invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
  468. invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.po +0 -728
  469. invenio_app_rdm/translations/gl/LC_MESSAGES/messages.mo +0 -0
  470. invenio_app_rdm/translations/gl/LC_MESSAGES/messages.po +0 -728
  471. invenio_app_rdm/translations/rw/LC_MESSAGES/messages.mo +0 -0
  472. invenio_app_rdm/translations/rw/LC_MESSAGES/messages.po +0 -728
  473. invenio_app_rdm-12.0.0.dev8.dist-info/AUTHORS.rst +0 -11
  474. invenio_app_rdm-12.0.0.dev8.dist-info/METADATA +0 -103
  475. invenio_app_rdm-12.0.0.dev8.dist-info/RECORD +0 -402
  476. invenio_app_rdm-12.0.0.dev8.dist-info/entry_points.txt +0 -26
  477. /invenio_app_rdm/{translations/.gitkeep → theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js} +0 -0
  478. {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses}/LICENSE +0 -0
  479. {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,18 @@
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
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
6
8
  #
7
9
  msgid ""
8
10
  msgstr ""
9
11
  "Project-Id-Version: i18next-conv\n"
10
- "POT-Creation-Date: 2022-10-12T06:58:21.832Z\n"
12
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
11
13
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
12
- "Last-Translator: Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2022\n"
13
- "Language-Team: Italian (https://www.transifex.com/inveniosoftware/teams/23537/it/)\n"
14
+ "Last-Translator: Fare Fare <fare@polito.it>, 2025\n"
15
+ "Language-Team: Italian (https://app.transifex.com/inveniosoftware/teams/23537/it/)\n"
14
16
  "Content-Type: text/plain; charset=UTF-8\n"
15
17
  "Content-Transfer-Encoding: 8bit\n"
16
18
  "Language: it\n"
@@ -20,20 +22,344 @@ msgstr ""
20
22
  msgid "Basic information"
21
23
  msgstr ""
22
24
 
23
- msgid "Copy to clipboard"
25
+ msgid "Impersonate user"
24
26
  msgstr ""
25
27
 
26
- 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"
27
175
  msgstr ""
28
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
+
29
189
  msgid "Files"
30
190
  msgstr "File"
31
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
+
32
358
  msgid "The record has no files."
33
359
  msgstr ""
34
360
 
35
361
  msgid "Creators"
36
- msgstr ""
362
+ msgstr "Creatori"
37
363
 
38
364
  msgid "Recommended information"
39
365
  msgstr ""
@@ -44,235 +370,536 @@ msgstr ""
44
370
  msgid "Contributors"
45
371
  msgstr ""
46
372
 
373
+ msgid "Edit contributor"
374
+ msgstr ""
375
+
376
+ msgid "Funding"
377
+ msgstr "Finanziamento"
378
+
379
+ msgid "Awards/Grants"
380
+ msgstr ""
381
+
47
382
  msgid "Alternate identifiers"
48
383
  msgstr ""
49
384
 
50
385
  msgid "Related works"
51
- msgstr ""
386
+ msgstr "Lavori correlati"
387
+
388
+ msgid "References"
389
+ msgstr "Riferimenti"
52
390
 
53
391
  msgid "Visibility"
54
392
  msgstr ""
55
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
+
56
459
  msgid "Edit"
57
460
  msgstr "Modifica"
58
461
 
59
- 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"
60
500
  msgstr ""
61
501
 
62
- msgid "Citation"
502
+ msgid "Search for pending submissions to communities..."
503
+ msgstr ""
504
+
505
+ msgid "An error occurred while generating the citation."
63
506
  msgstr ""
64
507
 
65
508
  msgid "Style"
66
509
  msgstr ""
67
510
 
68
- msgid "Version"
69
- msgstr "Versione"
511
+ msgid "This record is not included in any communities yet."
512
+ msgstr ""
70
513
 
71
- msgid "Preview"
514
+ msgid "Search for community..."
515
+ msgstr ""
516
+
517
+ msgid "Record submitted"
72
518
  msgstr ""
73
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 ""
534
+
535
+ msgid "Preview"
536
+ msgstr "Anteprima"
537
+
74
538
  msgid "Only published versions are displayed."
75
539
  msgstr ""
76
540
 
77
- msgid "View all {{total}} versions"
541
+ msgid "An error occurred while fetching the versions."
78
542
  msgstr ""
79
543
 
80
- 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>"
81
554
  msgstr ""
82
555
 
83
- 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>"
84
560
  msgstr ""
85
561
 
86
- msgid "Can view"
562
+ msgid "Remove"
563
+ msgstr "Rimuovi"
564
+
565
+ msgid "Remove {{communityTitle}} from this record"
87
566
  msgstr ""
88
567
 
89
- msgid "Can preview"
568
+ msgid "Remove community"
90
569
  msgstr ""
91
570
 
92
- 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."
93
580
  msgstr ""
94
581
 
95
- msgid "Get a link"
582
+ msgid "Something went wrong"
96
583
  msgstr ""
97
584
 
585
+ msgid "Cancel removal"
586
+ msgstr ""
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
+
98
629
  msgid "Copy link"
99
630
  msgstr ""
100
631
 
101
- 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."
102
642
  msgstr ""
103
643
 
104
- msgid "Done"
644
+ msgid "Can edit"
105
645
  msgstr ""
106
646
 
107
647
  msgid ""
108
- "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."
109
649
  msgstr ""
110
650
 
111
651
  msgid ""
112
- "Anyone with this link <2>can view all published and unpublished versions</2>"
113
- " of this record & files."
652
+ "Can view (view access link can be created only after the record is "
653
+ "published)"
114
654
  msgstr ""
115
655
 
116
- msgid "Uploaded on"
656
+ msgid "Expires"
117
657
  msgstr ""
118
658
 
119
- msgid "Search"
120
- msgstr "Cerca"
659
+ msgid "This record has no links generated yet."
660
+ msgstr ""
121
661
 
122
- msgid "Search guide"
662
+ msgid "Unable to change the access request settings."
123
663
  msgstr ""
124
664
 
125
- msgid "result(s) found"
665
+ msgid "Allow authenticated users to request access to restricted files."
126
666
  msgstr ""
127
667
 
128
- msgid "Sort by"
668
+ msgid "Allow non-authenticated users to request access to restricted files."
129
669
  msgstr ""
130
670
 
131
- msgid "View"
132
- msgstr "Visualizzazione"
671
+ msgid "Accept conditions"
672
+ msgstr ""
133
673
 
134
- msgid "New community"
135
- msgstr "Nuova comunità"
674
+ msgid "Advanced options"
675
+ msgstr ""
136
676
 
137
- msgid "Get started!"
677
+ msgid "Save"
678
+ msgstr "Memorizza"
679
+
680
+ msgid "No user has access to this record yet."
138
681
  msgstr ""
139
682
 
140
- msgid "Open"
141
- msgstr "Apri"
683
+ msgid "People with access"
684
+ msgstr ""
142
685
 
143
- msgid "Closed"
144
- msgstr "Chiuso"
686
+ msgid "No group has access to this record yet."
687
+ msgstr ""
145
688
 
146
- msgid "All done!"
689
+ msgid "Groups with access"
147
690
  msgstr ""
148
691
 
149
- msgid "You've caught up with all open requests."
692
+ msgid "You"
150
693
  msgstr ""
151
694
 
152
- msgid "No creation date found."
695
+ msgid "Add people"
153
696
  msgstr ""
154
697
 
155
- msgid "No description"
698
+ msgid "No selected users"
156
699
  msgstr ""
157
700
 
158
- msgid "No publication date found."
701
+ msgid ""
702
+ "Search for users to grant access (only users with a public profile can be "
703
+ "invited)"
159
704
  msgstr ""
160
705
 
161
- msgid "No resource type"
706
+ msgid "Search by email, full name or username"
162
707
  msgstr ""
163
708
 
164
- msgid "No title"
165
- msgstr "Senza titolo"
709
+ msgid "users"
710
+ msgstr ""
166
711
 
167
- msgid "Make your first upload!"
712
+ msgid "Add groups"
168
713
  msgstr ""
169
714
 
170
- msgid "New upload"
715
+ msgid "Group"
716
+ msgstr "Gruppo"
717
+
718
+ msgid "No selected groups"
171
719
  msgstr ""
172
720
 
173
- msgid "ORCID profile"
721
+ msgid "Search for groups"
174
722
  msgstr ""
175
723
 
176
- msgid "ROR profile"
724
+ msgid "groups"
177
725
  msgstr ""
178
726
 
179
- msgid "GND profile"
727
+ msgid "Add"
728
+ msgstr "Aggiungi"
729
+
730
+ msgid "Notify people"
180
731
  msgstr ""
181
732
 
182
- msgid "No communities found!"
733
+ msgid "Notification message"
183
734
  msgstr ""
184
735
 
185
- msgid "No requests found!"
736
+ msgid "You are about to add"
186
737
  msgstr ""
187
738
 
188
- msgid "Copied"
739
+ msgid "Access already granted"
189
740
  msgstr ""
190
741
 
191
- msgid "Reset search"
742
+ msgid "Can manage"
192
743
  msgstr ""
193
744
 
194
- msgid "We couldn't find any matches for "
745
+ msgid ""
746
+ "Can manage access, edit drafts and view restricted files of all versions of "
747
+ "this record."
195
748
  msgstr ""
196
749
 
197
- msgid "your search"
750
+ msgid "You don't have permissions to share this record."
198
751
  msgstr ""
199
752
 
200
- msgid "Start over"
753
+ msgid "Share"
201
754
  msgstr ""
202
755
 
203
- msgid "ProTip"
756
+ msgid "People"
204
757
  msgstr ""
205
758
 
206
- msgid "For more tips, check out our "
759
+ msgid "Groups"
760
+ msgstr "Gruppi"
761
+
762
+ msgid "Settings"
763
+ msgstr "Impostazioni"
764
+
765
+ msgid "Share access"
207
766
  msgstr ""
208
767
 
209
- msgid "search guide"
768
+ msgid "Link expiration"
210
769
  msgstr ""
211
770
 
212
- msgid "Export"
213
- msgstr "Esporta"
771
+ msgid "In 1 month"
772
+ msgstr ""
214
773
 
215
- msgid "Filter results"
774
+ msgid "In 2 months"
216
775
  msgstr ""
217
776
 
218
- msgid "In review"
777
+ msgid "In 6 months"
219
778
  msgstr ""
220
779
 
221
- msgid "Declined"
780
+ msgid "In 1 year"
222
781
  msgstr ""
223
782
 
224
- msgid "Expired"
783
+ msgid "Invalid date format."
225
784
  msgstr ""
226
785
 
227
- msgid "Draft"
786
+ msgid "Access link expiration date cannot be in the past."
228
787
  msgstr ""
229
788
 
230
- msgid "New version draft"
789
+ msgid "Access request"
231
790
  msgstr ""
232
791
 
233
- msgid "Download file"
792
+ msgid "Unable to change the expiration request settings."
234
793
  msgstr ""
235
794
 
236
- msgid "No link has been created. Click on 'Get a Link' to make a new link."
795
+ msgid "Expiration date: "
237
796
  msgstr ""
238
797
 
239
798
  msgid ""
240
- "Anyone with an account and this link <1>can edit all versions</1> of this "
241
- "record & files."
799
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
800
+ "empty to set no expiration limit."
242
801
  msgstr ""
243
802
 
244
- msgid "Search records..."
803
+ msgid "Link expiration date:"
245
804
  msgstr ""
246
805
 
247
- msgid "will give you all the publications from 2017 until today."
806
+ msgid "We couldn't find any matches for {{- search}}"
248
807
  msgstr ""
249
808
 
250
- msgid " for defining advanced search queries."
809
+ msgid "Start over"
251
810
  msgstr ""
252
811
 
253
- msgid "Public"
254
- msgstr "Publico"
812
+ msgid "ProTip"
813
+ msgstr ""
255
814
 
256
- msgid "Restricted"
257
- 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 ""
258
822
 
259
823
  msgid "Search in my communities..."
260
824
  msgstr ""
261
825
 
262
- msgid "Opened {{difference}} by"
826
+ msgid "View"
827
+ msgstr "Visualizzazione"
828
+
829
+ msgid "Published in: {{publishedIn}}"
263
830
  msgstr ""
264
831
 
265
- msgid "Search in my requests..."
832
+ msgid "In review"
266
833
  msgstr ""
267
834
 
268
- msgid "Actions"
269
- msgstr "Azioni"
835
+ msgid "Declined"
836
+ msgstr ""
837
+
838
+ msgid "Expired"
839
+ msgstr ""
840
+
841
+ msgid "Draft"
842
+ msgstr ""
843
+
844
+ msgid "New version draft"
845
+ msgstr ""
270
846
 
271
847
  msgid "open"
272
848
  msgstr ""
273
849
 
850
+ msgid "Open"
851
+ msgstr "Apri"
852
+
274
853
  msgid "unlock"
275
854
  msgstr ""
276
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
+
277
865
  msgid "Search in my uploads..."
278
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 ""