invenio-app-rdm 5.0.0.dev0__py2.py3-none-any.whl → 14.0.0b4.dev4__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 (540) hide show
  1. invenio_app_rdm/__init__.py +13 -4
  2. invenio_app_rdm/administration/__init__.py +8 -0
  3. invenio_app_rdm/administration/audit_logs/__init__.py +12 -0
  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 +93 -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/administration/user_moderation/__init__.py +11 -0
  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/administration/views/__init__.py +11 -0
  25. invenio_app_rdm/administration/views/ui.py +21 -0
  26. invenio_app_rdm/cli.py +95 -0
  27. invenio_app_rdm/communities_ui/__init__.py +9 -0
  28. invenio_app_rdm/communities_ui/searchapp.py +27 -0
  29. invenio_app_rdm/communities_ui/sitemap.py +63 -0
  30. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
  31. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
  32. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
  33. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html +24 -0
  34. invenio_app_rdm/communities_ui/views/__init__.py +13 -0
  35. invenio_app_rdm/communities_ui/views/communities.py +206 -0
  36. invenio_app_rdm/communities_ui/views/ui.py +93 -0
  37. invenio_app_rdm/config.py +1167 -100
  38. invenio_app_rdm/ext.py +157 -0
  39. invenio_app_rdm/fixtures/__init__.py +56 -0
  40. invenio_app_rdm/fixtures/data/oai_sets.yaml +6 -0
  41. invenio_app_rdm/fixtures/oai_sets.py +20 -0
  42. invenio_app_rdm/fixtures/pages/.gitkeep +1 -0
  43. invenio_app_rdm/fixtures/pages.py +76 -0
  44. invenio_app_rdm/records_ui/previewer/__init__.py +9 -0
  45. invenio_app_rdm/records_ui/previewer/iiif_simple.py +51 -0
  46. invenio_app_rdm/records_ui/searchapp.py +70 -0
  47. invenio_app_rdm/records_ui/sitemap.py +44 -0
  48. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +64 -15
  49. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +417 -172
  50. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
  51. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +7 -9
  52. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
  53. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +51 -0
  54. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +13 -2
  55. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +330 -22
  56. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +5 -23
  57. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
  58. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
  59. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +34 -0
  60. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +36 -0
  61. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +34 -0
  62. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
  63. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +20 -0
  64. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +78 -0
  65. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
  66. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +42 -0
  67. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +16 -0
  68. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
  69. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +26 -0
  70. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar.html +4 -45
  71. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +112 -90
  72. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +37 -7
  73. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
  74. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +9 -8
  75. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
  76. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +98 -39
  77. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +280 -43
  78. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
  79. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +176 -71
  80. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
  81. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html +21 -0
  82. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
  83. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
  84. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html +3 -89
  85. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
  86. invenio_app_rdm/records_ui/utils.py +127 -2
  87. invenio_app_rdm/records_ui/views/__init__.py +123 -38
  88. invenio_app_rdm/records_ui/views/decorators.py +414 -120
  89. invenio_app_rdm/records_ui/views/deposits.py +569 -75
  90. invenio_app_rdm/records_ui/views/filters.py +125 -34
  91. invenio_app_rdm/records_ui/views/records.py +425 -76
  92. invenio_app_rdm/redirector/__init__.py +8 -0
  93. invenio_app_rdm/redirector/resource.py +106 -0
  94. invenio_app_rdm/redirector/views.py +18 -0
  95. invenio_app_rdm/requests_ui/__init__.py +9 -0
  96. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
  97. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
  98. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
  99. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
  100. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  101. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
  102. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +78 -0
  103. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  104. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
  105. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
  106. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
  107. invenio_app_rdm/requests_ui/views/__init__.py +13 -0
  108. invenio_app_rdm/requests_ui/views/requests.py +374 -0
  109. invenio_app_rdm/requests_ui/views/ui.py +72 -0
  110. invenio_app_rdm/tasks.py +45 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
  112. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
  113. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
  114. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
  115. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
  116. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
  117. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
  118. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
  119. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
  120. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
  121. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
  122. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
  123. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
  124. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
  125. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
  126. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
  127. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
  128. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
  129. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
  130. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
  131. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
  132. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
  133. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
  134. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
  135. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
  136. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
  137. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
  138. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
  139. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
  140. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
  141. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
  142. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
  143. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
  144. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +79 -0
  145. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  146. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  147. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
  148. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
  149. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
  150. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js +0 -0
  151. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
  152. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
  153. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
  154. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
  155. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
  156. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
  157. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
  158. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
  159. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
  160. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
  161. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
  162. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
  163. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
  164. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +84 -0
  165. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
  166. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
  167. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
  168. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
  169. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
  170. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +142 -0
  171. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
  172. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
  173. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  174. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  175. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  176. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  177. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +189 -0
  178. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +795 -440
  179. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
  180. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
  181. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +27 -11
  182. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
  183. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
  184. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
  185. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +179 -0
  186. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
  187. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +36 -15
  188. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
  189. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
  190. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
  191. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
  192. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
  193. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
  194. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +162 -0
  195. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
  196. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
  197. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
  198. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
  199. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
  200. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
  201. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +123 -42
  202. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +153 -78
  203. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
  204. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
  205. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +111 -0
  206. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
  207. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +236 -0
  208. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
  209. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -0
  210. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
  211. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
  212. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
  213. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
  214. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
  215. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareButton.js +62 -0
  216. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -0
  217. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
  218. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
  219. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +102 -28
  220. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
  221. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
  222. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
  223. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -0
  224. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
  225. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
  226. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
  227. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
  228. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +181 -226
  229. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +50 -16
  230. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
  231. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +164 -0
  232. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
  233. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
  234. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
  235. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
  236. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
  237. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
  238. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +130 -0
  239. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  240. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +54 -0
  241. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +74 -0
  242. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
  243. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
  244. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
  245. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +113 -14
  246. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
  247. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
  248. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
  249. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -10
  250. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -4
  251. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
  252. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
  253. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +112 -4
  254. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
  255. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +127 -4
  256. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
  257. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
  258. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
  259. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
  260. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
  261. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
  262. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
  263. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
  264. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
  265. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
  266. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
  267. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +73 -27
  268. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
  269. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +86 -4
  270. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
  271. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
  272. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
  273. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +560 -4
  274. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
  275. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
  276. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
  277. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
  278. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
  279. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
  280. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +10 -0
  281. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
  282. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
  283. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  284. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  285. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.overrides +3 -0
  286. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +6 -0
  287. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
  288. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
  289. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
  290. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
  291. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
  292. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
  293. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
  294. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +175 -0
  295. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
  296. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +37 -0
  297. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  298. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +951 -0
  299. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
  300. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
  301. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
  302. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
  303. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
  304. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
  305. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
  306. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
  307. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
  308. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +966 -0
  309. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +283 -0
  310. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +898 -0
  311. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +283 -0
  312. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1009 -0
  313. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +316 -0
  314. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
  315. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
  316. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
  317. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
  318. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
  319. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
  320. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
  321. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
  322. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
  323. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
  324. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
  325. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
  326. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +20 -0
  327. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
  328. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
  329. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
  330. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
  331. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
  332. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
  333. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  334. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  335. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +907 -0
  336. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
  337. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
  338. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
  339. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
  340. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
  341. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
  342. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
  343. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
  344. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
  345. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
  346. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
  347. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
  348. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
  349. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
  350. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
  351. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
  352. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
  353. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
  354. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
  355. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
  356. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
  357. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
  358. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
  359. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +18 -0
  360. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +1009 -0
  361. invenio_app_rdm/theme/static/icons/licenses/cc-by-icon.svg +52 -0
  362. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-eu-icon.svg +44 -0
  363. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-icon.svg +67 -0
  364. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-eu-icon.svg +57 -0
  365. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-icon.svg +93 -0
  366. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-eu-icon.svg +55 -0
  367. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-icon.svg +55 -0
  368. invenio_app_rdm/theme/static/icons/licenses/cc-by-nd-icon.svg +75 -0
  369. invenio_app_rdm/theme/static/icons/licenses/cc-by-sa-icon.svg +72 -0
  370. invenio_app_rdm/theme/static/icons/licenses/cc-cc0-icon.svg +29 -0
  371. invenio_app_rdm/theme/static/icons/licenses/cc-pddc-icon.svg +25 -0
  372. invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
  373. invenio_app_rdm/theme/static/images/ror-icon.svg +14 -0
  374. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
  375. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
  376. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
  377. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -78
  378. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +41 -176
  379. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +122 -65
  380. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +18 -14
  381. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +130 -38
  382. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +5 -4
  383. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +13 -8
  384. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
  385. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html +197 -0
  386. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
  387. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
  388. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
  389. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +98 -0
  390. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
  391. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
  392. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
  393. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
  394. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
  395. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +63 -0
  396. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
  397. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
  398. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  399. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/latest_record.html +18 -0
  400. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -0
  401. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
  402. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
  403. invenio_app_rdm/theme/views.py +108 -26
  404. invenio_app_rdm/theme/webpack.py +76 -32
  405. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  406. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
  407. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  408. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
  409. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  410. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
  411. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  412. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
  413. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  414. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
  415. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  416. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1410 -0
  417. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  418. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +1364 -0
  419. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  420. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
  421. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  422. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
  423. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  424. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
  425. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  426. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
  427. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  428. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
  429. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  430. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
  431. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  432. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
  433. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  434. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
  435. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  436. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
  437. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  438. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  439. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  440. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +1361 -0
  441. invenio_app_rdm/translations/messages.pot +1371 -51
  442. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  443. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
  444. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  445. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
  446. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  447. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
  448. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  449. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
  450. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  451. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
  452. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  453. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
  454. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  455. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
  456. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  457. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
  458. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  459. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
  460. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  461. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
  462. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  463. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
  464. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
  465. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
  466. invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
  467. invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
  468. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
  469. invenio_app_rdm/upgrade_scripts/migrate_13_0_to_14_0.py +268 -0
  470. invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
  471. invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +26 -10
  472. invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +395 -0
  473. invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +161 -0
  474. invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +153 -0
  475. invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
  476. invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
  477. invenio_app_rdm/users/schemas.py +27 -0
  478. invenio_app_rdm/users_ui/__init__.py +9 -0
  479. invenio_app_rdm/users_ui/searchapp.py +53 -0
  480. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
  481. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
  482. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
  483. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
  484. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
  485. invenio_app_rdm/users_ui/views/__init__.py +14 -0
  486. invenio_app_rdm/users_ui/views/dashboard.py +59 -0
  487. invenio_app_rdm/users_ui/views/ui.py +68 -0
  488. invenio_app_rdm/utils/files.py +120 -0
  489. invenio_app_rdm/views.py +21 -0
  490. invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
  491. invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
  492. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
  493. invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
  494. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contributors.html +0 -32
  495. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creators.html +0 -30
  496. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/licenses.html +0 -35
  497. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search_deposit.html +0 -103
  498. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareButton.js +0 -43
  499. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -188
  500. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/components.js +0 -361
  501. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/index.js +0 -41
  502. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -126
  503. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
  504. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -83
  505. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -95
  506. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -212
  507. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -216
  508. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -41
  509. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -420
  510. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -41
  511. invenio_app_rdm/theme/static/images/logo-bnl.png +0 -0
  512. invenio_app_rdm/theme/static/images/logo-caltechlibrary.png +0 -0
  513. invenio_app_rdm/theme/static/images/logo-cd2h.png +0 -0
  514. invenio_app_rdm/theme/static/images/logo-cern.png +0 -0
  515. invenio_app_rdm/theme/static/images/logo-cottagelabs.png +0 -0
  516. invenio_app_rdm/theme/static/images/logo-data-futures.png +0 -0
  517. invenio_app_rdm/theme/static/images/logo-eko-konnect.png +0 -0
  518. invenio_app_rdm/theme/static/images/logo-geo.svg +0 -1337
  519. invenio_app_rdm/theme/static/images/logo-hzdr.png +0 -0
  520. invenio_app_rdm/theme/static/images/logo-infn.svg +0 -28
  521. invenio_app_rdm/theme/static/images/logo-jrc.svg +0 -1905
  522. invenio_app_rdm/theme/static/images/logo-northwestern-university.png +0 -0
  523. invenio_app_rdm/theme/static/images/logo-openaire.png +0 -0
  524. invenio_app_rdm/theme/static/images/logo-tind.png +0 -0
  525. invenio_app_rdm/theme/static/images/logo-tu-graz.svg +0 -25
  526. invenio_app_rdm/theme/static/images/logo-tu-wien.svg +0 -23
  527. invenio_app_rdm/theme/static/images/logo-tubitak.svg +0 -49
  528. invenio_app_rdm/theme/static/images/logo-uni-hamburg.png +0 -0
  529. invenio_app_rdm/theme/static/images/logo-uni-munster.png +0 -0
  530. invenio_app_rdm/theme/static/images/logo-wacren.png +0 -0
  531. invenio_app_rdm/translations/en/LC_MESSAGES/messages.mo +0 -0
  532. invenio_app_rdm/translations/en/LC_MESSAGES/messages.po +0 -29
  533. invenio_app_rdm/version.py +0 -23
  534. invenio_app_rdm-5.0.0.dev0.dist-info/AUTHORS.rst +0 -11
  535. invenio_app_rdm-5.0.0.dev0.dist-info/METADATA +0 -75
  536. invenio_app_rdm-5.0.0.dev0.dist-info/RECORD +0 -138
  537. invenio_app_rdm-5.0.0.dev0.dist-info/entry_points.txt +0 -13
  538. /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
  539. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
  540. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,910 @@
1
+ #
2
+ # Translators:
3
+ # Tibor Simko <tibor.simko@cern.ch>, 2021
4
+ # Vasyl Ostrovskyi <vasyusya@yahoo.com>, 2025
5
+ # Vitalii Kindrat, 2025
6
+ #
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: i18next-conv\n"
10
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
11
+ "PO-Revision-Date: 2021-07-14 16:07+0000\n"
12
+ "Last-Translator: Vitalii Kindrat, 2025\n"
13
+ "Language-Team: Ukrainian (https://app.transifex.com/inveniosoftware/teams/23537/uk/)\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: uk\n"
17
+ "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
18
+ "mime-version: 1.0\n"
19
+
20
+ msgid "Basic information"
21
+ msgstr "Загальна інформація"
22
+
23
+ msgid "Impersonate user"
24
+ msgstr ""
25
+
26
+ msgid "Impersonate"
27
+ msgstr ""
28
+
29
+ msgid "You must accept this."
30
+ msgstr "Ви повинні прийняти цю умову."
31
+
32
+ msgid "Success"
33
+ msgstr ""
34
+
35
+ msgid ""
36
+ "User impersonated succesfully! You will be redirected in frontpage soon."
37
+ msgstr ""
38
+
39
+ msgid "Unable to impersonate user."
40
+ msgstr ""
41
+
42
+ msgid ""
43
+ "Please read carefully and confirm the following statements before you "
44
+ "proceed."
45
+ msgstr ""
46
+
47
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
48
+ msgstr ""
49
+
50
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
51
+ msgstr ""
52
+
53
+ msgid "Close"
54
+ msgstr "Закрити"
55
+
56
+ msgid "Set Quota"
57
+ msgstr ""
58
+
59
+ msgid "Set quota in bytes"
60
+ msgstr ""
61
+
62
+ msgid "Note"
63
+ msgstr ""
64
+
65
+ msgid ""
66
+ "This is the default quota that will be applied to any NEW records created by"
67
+ " this user – it will NOT update quota of existing records."
68
+ msgstr ""
69
+
70
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
71
+ msgstr ""
72
+
73
+ msgid "Unable to set quota."
74
+ msgstr ""
75
+
76
+ msgid "Quota size ({{unit}})"
77
+ msgstr ""
78
+
79
+ msgid "Enter quota size..."
80
+ msgstr ""
81
+
82
+ msgid "Max file size ({{unit}})"
83
+ msgstr ""
84
+
85
+ msgid "Enter max file size..."
86
+ msgstr ""
87
+
88
+ msgid "Ticket 1234"
89
+ msgstr ""
90
+
91
+ msgid "Set quota"
92
+ msgstr ""
93
+
94
+ msgid "Domain"
95
+ msgstr ""
96
+
97
+ msgid "Flagged"
98
+ msgstr ""
99
+
100
+ msgid "Organization"
101
+ msgstr "Організація"
102
+
103
+ msgid "Company"
104
+ msgstr ""
105
+
106
+ msgid "Mail provider"
107
+ msgstr ""
108
+
109
+ msgid "Spammer"
110
+ msgstr ""
111
+
112
+ msgid "TLD"
113
+ msgstr ""
114
+
115
+ msgid "Status"
116
+ msgstr "Статус"
117
+
118
+ msgid "New"
119
+ msgstr ""
120
+
121
+ msgid "Moderated"
122
+ msgstr ""
123
+
124
+ msgid "Verified"
125
+ msgstr ""
126
+
127
+ msgid "Blocked"
128
+ msgstr ""
129
+
130
+ msgid "Users"
131
+ msgstr ""
132
+
133
+ msgid "Active"
134
+ msgstr ""
135
+
136
+ msgid "Inactive"
137
+ msgstr ""
138
+
139
+ msgid "Confirmed"
140
+ msgstr ""
141
+
142
+ msgid "Links"
143
+ msgstr ""
144
+
145
+ msgid "Set quota for record {{recordId}}"
146
+ msgstr ""
147
+
148
+ msgid "Delete record"
149
+ msgstr ""
150
+
151
+ msgid "Restore record"
152
+ msgstr ""
153
+
154
+ msgid "Unavailability statement"
155
+ msgstr ""
156
+
157
+ msgid "Record {{id}} was restored."
158
+ msgstr ""
159
+
160
+ msgid "Unable to restore."
161
+ msgstr ""
162
+
163
+ msgid "Are you sure you want to restore #{{id}}"
164
+ msgstr ""
165
+
166
+ msgid "Published"
167
+ msgstr "Опубліковано"
168
+
169
+ msgid "Deleted"
170
+ msgstr ""
171
+
172
+ msgid "Scheduled for purge"
173
+ msgstr ""
174
+
175
+ msgid "Empty draft title"
176
+ msgstr ""
177
+
178
+ msgid "version"
179
+ msgstr ""
180
+
181
+ msgid "Owner"
182
+ msgstr "Власник"
183
+
184
+ msgid "Created"
185
+ msgstr "Створено"
186
+
187
+ msgid "Files"
188
+ msgstr "Файли"
189
+
190
+ msgid "Stats"
191
+ msgstr ""
192
+
193
+ msgid "Record {{id}} was deleted."
194
+ msgstr ""
195
+
196
+ msgid "Unable to delete"
197
+ msgstr ""
198
+
199
+ msgid "Public"
200
+ msgstr "Публічний"
201
+
202
+ msgid "Hidden"
203
+ msgstr "Прихований"
204
+
205
+ msgid ""
206
+ "The tombstone is set to hidden but your record is public. Best practice is "
207
+ "to provide a public tombstone when deactivating public records."
208
+ msgstr ""
209
+
210
+ msgid ""
211
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
212
+ "restricted. Please make sure no restricted information is shared in the "
213
+ "tombstone below."
214
+ msgstr ""
215
+
216
+ msgid "Bibliographic citation"
217
+ msgstr ""
218
+
219
+ msgid ""
220
+ "Input citation text. Blank field will be filled with APA citation by "
221
+ "default."
222
+ msgstr ""
223
+
224
+ msgid "Public note"
225
+ msgstr ""
226
+
227
+ msgid "User {{name}} was approved."
228
+ msgstr ""
229
+
230
+ msgid "User {{name}} is blocked."
231
+ msgstr ""
232
+
233
+ msgid "Error"
234
+ msgstr ""
235
+
236
+ msgid "User"
237
+ msgstr ""
238
+
239
+ msgid "Email"
240
+ msgstr "Електронна пошта"
241
+
242
+ msgid "Email domain"
243
+ msgstr ""
244
+
245
+ msgid "Actions"
246
+ msgstr "Дії"
247
+
248
+ msgid "Records"
249
+ msgstr ""
250
+
251
+ msgid "Username"
252
+ msgstr "Назва облікового запису"
253
+
254
+ msgid "GitHub"
255
+ msgstr ""
256
+
257
+ msgid "Updated"
258
+ msgstr ""
259
+
260
+ msgid "Restore"
261
+ msgstr ""
262
+
263
+ msgid "Restored"
264
+ msgstr ""
265
+
266
+ msgid "Block"
267
+ msgstr ""
268
+
269
+ msgid "Suspend"
270
+ msgstr ""
271
+
272
+ msgid "Suspended"
273
+ msgstr ""
274
+
275
+ msgid "Approve"
276
+ msgstr ""
277
+
278
+ msgid "Approved"
279
+ msgstr ""
280
+
281
+ msgid "Activate"
282
+ msgstr "Активувати"
283
+
284
+ msgid "Activated"
285
+ msgstr ""
286
+
287
+ msgid "Set default quota for {{email}}"
288
+ msgstr ""
289
+
290
+ msgid "Filter results"
291
+ msgstr "Фільтрувати результати"
292
+
293
+ msgid "Search records in community..."
294
+ msgstr "Шукати записи у спільноті..."
295
+
296
+ msgid "Sort by"
297
+ msgstr "Впорядкувати за"
298
+
299
+ msgid " results found"
300
+ msgid_plural " results found"
301
+ msgstr[0] ""
302
+ msgstr[1] ""
303
+ msgstr[2] ""
304
+ msgstr[3] ""
305
+
306
+ msgid "Search records..."
307
+ msgstr "Шукати записи..."
308
+
309
+ msgid "Search"
310
+ msgstr "Пошук"
311
+
312
+ msgid "Views"
313
+ msgstr ""
314
+
315
+ msgid "Downloads"
316
+ msgstr ""
317
+
318
+ msgid "Copy to clipboard"
319
+ msgstr "Копіювати до буферу"
320
+
321
+ msgid "Copied!"
322
+ msgstr "Скопійовано!"
323
+
324
+ msgid "Part of "
325
+ msgstr ""
326
+
327
+ msgid "No creation date found."
328
+ msgstr "Не знайдено дату створення"
329
+
330
+ msgid "No description"
331
+ msgstr "Опис відсутній"
332
+
333
+ msgid "No publication date found."
334
+ msgstr "Не знайдено дати публікації."
335
+
336
+ msgid "No resource type"
337
+ msgstr "Не вказано тип ресурсу"
338
+
339
+ msgid "No title"
340
+ msgstr "Не вказано назву"
341
+
342
+ msgid "Uploaded on {{uploadDate}}"
343
+ msgstr ""
344
+
345
+ msgid "Published in: {{publishInfo}}"
346
+ msgstr ""
347
+
348
+ msgid "{{count}} more versions exist for this record"
349
+ msgid_plural "{{count}} more versions exist for this record"
350
+ msgstr[0] ""
351
+ msgstr[1] ""
352
+ msgstr[2] ""
353
+ msgstr[3] ""
354
+
355
+ msgid "Person"
356
+ msgstr "Особа"
357
+
358
+ msgid "The record has no files."
359
+ msgstr "Запис на містить файлів"
360
+
361
+ msgid "Creators"
362
+ msgstr "Автори"
363
+
364
+ msgid "Recommended information"
365
+ msgstr "Рекомендована інформація"
366
+
367
+ msgid "Add contributor"
368
+ msgstr "Додати учасника"
369
+
370
+ msgid "Contributors"
371
+ msgstr "Учасники"
372
+
373
+ msgid "Edit contributor"
374
+ msgstr ""
375
+
376
+ msgid "Funding"
377
+ msgstr "Фінансування"
378
+
379
+ msgid "Awards/Grants"
380
+ msgstr ""
381
+
382
+ msgid "Alternate identifiers"
383
+ msgstr "Альтернативні ідентифікатори"
384
+
385
+ msgid "Related works"
386
+ msgstr "Пов'язані праці"
387
+
388
+ msgid "References"
389
+ msgstr "Посилання"
390
+
391
+ msgid "Visibility"
392
+ msgstr "Видимість"
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 "Електронна пошта"
405
+
406
+ msgid "Your full name"
407
+ msgstr ""
408
+
409
+ msgid "Full name"
410
+ msgstr "Повне ім'я"
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 "Спільноти"
440
+
441
+ msgid "View all {{count}} communities"
442
+ msgid_plural "View all {{count}} communities"
443
+ msgstr[0] ""
444
+ msgstr[1] ""
445
+ msgstr[2] ""
446
+ msgstr[3] ""
447
+
448
+ msgid "Submit to community"
449
+ msgstr ""
450
+
451
+ msgid "Pending submissions"
452
+ msgstr ""
453
+
454
+ msgid "Manage communities"
455
+ msgstr ""
456
+
457
+ msgid "Community management menu dropdown"
458
+ msgstr ""
459
+
460
+ msgid "Edit"
461
+ msgstr "Редагувати"
462
+
463
+ msgid "Export selection"
464
+ msgstr ""
465
+
466
+ msgid "Download file"
467
+ msgstr "Завантажити файл"
468
+
469
+ msgid "Export"
470
+ msgstr "Експортувати"
471
+
472
+ msgid "Manage"
473
+ msgstr ""
474
+
475
+ msgid "Manage record"
476
+ msgstr "Керувати записом"
477
+
478
+ msgid "Manage user"
479
+ msgstr ""
480
+
481
+ msgid "Remove branding"
482
+ msgstr ""
483
+
484
+ msgid "{{communityTitle}} is a default branding for this record"
485
+ msgstr ""
486
+
487
+ msgid ""
488
+ "Remove this community from appearing on top of the record details page."
489
+ msgstr ""
490
+
491
+ msgid "Set branding"
492
+ msgstr ""
493
+
494
+ msgid "Set {{communityTitle}} as a default branding for this record"
495
+ msgstr ""
496
+
497
+ msgid "Set this community to appear on the top of the record details page."
498
+ msgstr ""
499
+
500
+ msgid "Pending communities"
501
+ msgstr ""
502
+
503
+ msgid "Search for pending submissions to communities..."
504
+ msgstr ""
505
+
506
+ msgid "An error occurred while generating the citation."
507
+ msgstr "При створенні цитування виникла помилка."
508
+
509
+ msgid "Style"
510
+ msgstr "Стиль"
511
+
512
+ msgid "This record is not included in any communities yet."
513
+ msgstr ""
514
+
515
+ msgid "Search for community..."
516
+ msgstr ""
517
+
518
+ msgid "Record submitted"
519
+ msgstr ""
520
+
521
+ msgid "Review requested"
522
+ msgstr ""
523
+
524
+ msgid "Search in all communities"
525
+ msgstr "Шукати у всіх спільнотах"
526
+
527
+ msgid "Search in my communities"
528
+ msgstr "Шукати в моїх спільнотах"
529
+
530
+ msgid "Select a community"
531
+ msgstr "Вибрати спільноту"
532
+
533
+ msgid "Version {{- version}}"
534
+ msgstr ""
535
+
536
+ msgid "Preview"
537
+ msgstr "Попередній перегляд"
538
+
539
+ msgid "Only published versions are displayed."
540
+ msgstr "Показуються лише опубліковані версії."
541
+
542
+ msgid "An error occurred while fetching the versions."
543
+ msgstr ""
544
+
545
+ msgid "View all {{count}} versions"
546
+ msgid_plural "View all {{count}} versions"
547
+ msgstr[0] ""
548
+ msgstr[1] ""
549
+ msgstr[2] ""
550
+ msgstr[3] ""
551
+
552
+ msgid ""
553
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
554
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
555
+ "latest one. <5>Read more</5>.</0>"
556
+ msgstr ""
557
+
558
+ msgid ""
559
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
560
+ "The DOI is registered when the first version is published. <4>Read "
561
+ "more</4>.</0>"
562
+ msgstr ""
563
+
564
+ msgid "Remove"
565
+ msgstr "Вилучити"
566
+
567
+ msgid "Remove {{communityTitle}} from this record"
568
+ msgstr ""
569
+
570
+ msgid "Remove community"
571
+ msgstr ""
572
+
573
+ msgid "Are you sure you want to remove the record from the community?"
574
+ msgstr ""
575
+
576
+ msgid "I understand the consequences:"
577
+ msgstr ""
578
+
579
+ msgid ""
580
+ "The record can only be re-included in the community by going through a new "
581
+ "review by the community curators."
582
+ msgstr ""
583
+
584
+ msgid "Something went wrong"
585
+ msgstr ""
586
+
587
+ msgid "Cancel removal"
588
+ msgstr ""
589
+
590
+ msgid "Cancel"
591
+ msgstr "Скасувати"
592
+
593
+ msgid "Confirm removal"
594
+ msgstr ""
595
+
596
+ msgid ""
597
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
598
+ "their access</4> to the record."
599
+ msgstr ""
600
+
601
+ msgid "Select permissions"
602
+ msgstr ""
603
+
604
+ msgid "Short name for your link (optional)."
605
+ msgstr ""
606
+
607
+ msgid "Expiration date format: YYYY-MM-DD"
608
+ msgstr ""
609
+
610
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
611
+ msgstr ""
612
+
613
+ msgid "Create a new link"
614
+ msgstr ""
615
+
616
+ msgid "Link title"
617
+ msgstr ""
618
+
619
+ msgid "Expires at"
620
+ msgstr ""
621
+
622
+ msgid "Never"
623
+ msgstr ""
624
+
625
+ msgid "Access"
626
+ msgstr ""
627
+
628
+ msgid "Delete"
629
+ msgstr "Видалити"
630
+
631
+ msgid "Copy link"
632
+ msgstr "Копіювати посилання"
633
+
634
+ msgid "Can view"
635
+ msgstr "Дозвіл на перегляд"
636
+
637
+ msgid "Can view restricted files of all versions of this record."
638
+ msgstr ""
639
+
640
+ msgid "Can preview drafts"
641
+ msgstr ""
642
+
643
+ msgid "Can view drafts and restricted files of all versions of this record."
644
+ msgstr ""
645
+
646
+ msgid "Can edit"
647
+ msgstr "Дозвіл на редагування"
648
+
649
+ msgid ""
650
+ "Can edit drafts and view restricted files of all versions of this record."
651
+ msgstr ""
652
+
653
+ msgid ""
654
+ "Can view (view access link can be created only after the record is "
655
+ "published)"
656
+ msgstr ""
657
+
658
+ msgid "Expires"
659
+ msgstr "Термін дії"
660
+
661
+ msgid "This record has no links generated yet."
662
+ msgstr ""
663
+
664
+ msgid "Unable to change the access request settings."
665
+ msgstr ""
666
+
667
+ msgid "Allow authenticated users to request access to restricted files."
668
+ msgstr ""
669
+
670
+ msgid "Allow non-authenticated users to request access to restricted files."
671
+ msgstr ""
672
+
673
+ msgid "Accept conditions"
674
+ msgstr ""
675
+
676
+ msgid "Advanced options"
677
+ msgstr ""
678
+
679
+ msgid "Save"
680
+ msgstr "Зберегти"
681
+
682
+ msgid "No user has access to this record yet."
683
+ msgstr ""
684
+
685
+ msgid "People with access"
686
+ msgstr ""
687
+
688
+ msgid "No group has access to this record yet."
689
+ msgstr ""
690
+
691
+ msgid "Groups with access"
692
+ msgstr ""
693
+
694
+ msgid "You"
695
+ msgstr "Ви"
696
+
697
+ msgid "Add people"
698
+ msgstr ""
699
+
700
+ msgid "No selected users"
701
+ msgstr ""
702
+
703
+ msgid ""
704
+ "Search for users to grant access (only users with a public profile can be "
705
+ "invited)"
706
+ msgstr ""
707
+
708
+ msgid "Search by email, full name or username"
709
+ msgstr ""
710
+ "Пошук за електронною адресою, повним імʼям, чи назвою облікового запису"
711
+
712
+ msgid "users"
713
+ msgstr ""
714
+
715
+ msgid "Add groups"
716
+ msgstr "Додати групи"
717
+
718
+ msgid "Group"
719
+ msgstr "Група"
720
+
721
+ msgid "No selected groups"
722
+ msgstr ""
723
+
724
+ msgid "Search for groups"
725
+ msgstr "Пошук груп"
726
+
727
+ msgid "groups"
728
+ msgstr ""
729
+
730
+ msgid "Add"
731
+ msgstr "Додати"
732
+
733
+ msgid "Notify people"
734
+ msgstr ""
735
+
736
+ msgid "Notification message"
737
+ msgstr ""
738
+
739
+ msgid "You are about to add"
740
+ msgstr ""
741
+
742
+ msgid "Access already granted"
743
+ msgstr ""
744
+
745
+ msgid "Can manage"
746
+ msgstr ""
747
+
748
+ msgid ""
749
+ "Can manage access, edit drafts and view restricted files of all versions of "
750
+ "this record."
751
+ msgstr ""
752
+
753
+ msgid "You don't have permissions to share this record."
754
+ msgstr "Ви не маєте повноважень поширювати цей запис."
755
+
756
+ msgid "Share"
757
+ msgstr "Поширити"
758
+
759
+ msgid "People"
760
+ msgstr "Люди"
761
+
762
+ msgid "Groups"
763
+ msgstr "Групи"
764
+
765
+ msgid "Settings"
766
+ msgstr "Налаштування"
767
+
768
+ msgid "Share access"
769
+ msgstr ""
770
+
771
+ msgid "Link expiration"
772
+ msgstr ""
773
+
774
+ msgid "In 1 month"
775
+ msgstr ""
776
+
777
+ msgid "In 2 months"
778
+ msgstr ""
779
+
780
+ msgid "In 6 months"
781
+ msgstr ""
782
+
783
+ msgid "In 1 year"
784
+ msgstr ""
785
+
786
+ msgid "Invalid date format."
787
+ msgstr ""
788
+
789
+ msgid "Access link expiration date cannot be in the past."
790
+ msgstr ""
791
+
792
+ msgid "Access request"
793
+ msgstr ""
794
+
795
+ msgid "Unable to change the expiration request settings."
796
+ msgstr ""
797
+
798
+ msgid "Expiration date: "
799
+ msgstr ""
800
+
801
+ msgid ""
802
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
803
+ "empty to set no expiration limit."
804
+ msgstr ""
805
+
806
+ msgid "Link expiration date:"
807
+ msgstr ""
808
+
809
+ msgid "We couldn't find any matches for {{- search}}"
810
+ msgstr ""
811
+
812
+ msgid "Start over"
813
+ msgstr "Розпочати заново"
814
+
815
+ msgid "ProTip"
816
+ msgstr "Порада"
817
+
818
+ msgid "Search guide"
819
+ msgstr "Посібник з пошуку"
820
+
821
+ msgid ""
822
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
823
+ "search queries.</0>"
824
+ msgstr ""
825
+
826
+ msgid "Search in my communities..."
827
+ msgstr "Шукати в моїх спільнотах..."
828
+
829
+ msgid "View"
830
+ msgstr "Переглянути"
831
+
832
+ msgid "Published in: {{publishedIn}}"
833
+ msgstr ""
834
+
835
+ msgid "In review"
836
+ msgstr "На розгляді"
837
+
838
+ msgid "Declined"
839
+ msgstr "Відхилено"
840
+
841
+ msgid "Expired"
842
+ msgstr "Застаріло"
843
+
844
+ msgid "Draft"
845
+ msgstr "Чернетка"
846
+
847
+ msgid "New version draft"
848
+ msgstr "Чернетка нової версії"
849
+
850
+ msgid "open"
851
+ msgstr ""
852
+
853
+ msgid "Open"
854
+ msgstr "Відкриті"
855
+
856
+ msgid "unlock"
857
+ msgstr ""
858
+
859
+ msgid "Get started!"
860
+ msgstr "Розпочніть!"
861
+
862
+ msgid "Make your first upload!"
863
+ msgstr "Зробіть перший внесок до репозитарію!"
864
+
865
+ msgid "New upload"
866
+ msgstr "Нове завантаження"
867
+
868
+ msgid "Search in my uploads..."
869
+ msgstr "Шукати в моїх завантаженнях..."
870
+
871
+ msgid "ORCID profile"
872
+ msgstr "Профіль ORCID"
873
+
874
+ msgid "ORCID logo"
875
+ msgstr ""
876
+
877
+ msgid "ROR profile"
878
+ msgstr "Профіль ROR"
879
+
880
+ msgid "ROR logo"
881
+ msgstr ""
882
+
883
+ msgid "GND profile"
884
+ msgstr "Профіль GND"
885
+
886
+ msgid "GND logo"
887
+ msgstr ""
888
+
889
+ msgid "No name"
890
+ msgstr ""
891
+
892
+ msgid "and {{count}} other"
893
+ msgid_plural "and {{count}} other"
894
+ msgstr[0] ""
895
+ msgstr[1] ""
896
+ msgstr[2] ""
897
+ msgstr[3] ""
898
+
899
+ msgid "and {{count}} others"
900
+ msgid_plural "and {{count}} others"
901
+ msgstr[0] ""
902
+ msgstr[1] ""
903
+ msgstr[2] ""
904
+ msgstr[3] ""
905
+
906
+ msgctxt ""
907
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
908
+ "until today.</0>"
909
+ msgid "<0><0>metadata.publication"
910
+ msgstr ""