invenio-app-rdm 8.0.0.dev9__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 (515) 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 +1072 -182
  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 +46 -232
  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 +63 -18
  49. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +316 -169
  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 +4 -3
  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 +22 -20
  54. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
  55. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +299 -167
  56. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
  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 +20 -15
  61. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +18 -41
  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 +9 -5
  64. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
  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 +33 -6
  67. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +5 -9
  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 +15 -5
  70. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +112 -90
  71. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +21 -19
  72. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
  73. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +3 -2
  74. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
  75. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +69 -48
  76. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +234 -49
  77. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
  78. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +170 -71
  79. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
  80. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html +21 -0
  81. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
  82. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
  83. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html +3 -1
  84. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
  85. invenio_app_rdm/records_ui/utils.py +127 -2
  86. invenio_app_rdm/records_ui/views/__init__.py +114 -38
  87. invenio_app_rdm/records_ui/views/decorators.py +395 -117
  88. invenio_app_rdm/records_ui/views/deposits.py +414 -104
  89. invenio_app_rdm/records_ui/views/filters.py +118 -11
  90. invenio_app_rdm/records_ui/views/records.py +395 -66
  91. invenio_app_rdm/redirector/__init__.py +8 -0
  92. invenio_app_rdm/redirector/resource.py +106 -0
  93. invenio_app_rdm/redirector/views.py +18 -0
  94. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
  95. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
  96. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
  97. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
  98. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  99. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
  100. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +78 -0
  101. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  102. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
  103. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
  104. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
  105. invenio_app_rdm/requests_ui/views/__init__.py +1 -3
  106. invenio_app_rdm/requests_ui/views/requests.py +345 -53
  107. invenio_app_rdm/requests_ui/views/ui.py +38 -9
  108. invenio_app_rdm/tasks.py +45 -0
  109. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
  110. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
  112. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
  113. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
  114. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
  115. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
  116. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
  117. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
  118. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
  119. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
  120. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
  121. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
  122. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
  123. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
  124. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
  125. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
  126. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
  127. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
  128. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
  129. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
  130. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
  131. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
  132. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
  133. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
  134. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
  135. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
  136. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
  137. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
  138. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
  139. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
  140. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
  141. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
  142. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +79 -0
  143. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  144. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  145. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
  146. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
  147. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
  148. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js +0 -0
  149. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
  150. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
  151. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
  152. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
  153. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
  154. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
  155. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
  156. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
  157. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
  158. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
  159. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
  160. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
  161. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
  162. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +84 -0
  163. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
  164. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
  165. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
  166. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
  167. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
  168. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +61 -39
  169. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
  170. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
  171. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  172. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  173. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  174. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  175. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +189 -0
  176. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +788 -307
  177. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
  178. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
  179. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +27 -13
  180. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
  181. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
  182. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
  183. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +179 -0
  184. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
  185. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +30 -16
  186. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
  187. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
  188. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
  189. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
  190. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
  191. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
  192. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +68 -73
  193. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
  194. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
  195. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
  196. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
  197. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
  198. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
  199. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +123 -43
  200. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +143 -79
  201. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
  202. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
  203. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +111 -0
  204. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
  205. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +236 -0
  206. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
  207. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -0
  208. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
  209. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
  210. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
  211. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
  212. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
  213. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +23 -6
  214. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -0
  215. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
  216. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
  217. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +92 -124
  218. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
  219. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
  220. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
  221. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -0
  222. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
  223. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
  224. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
  225. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
  226. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +165 -299
  227. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +48 -20
  228. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
  229. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +164 -0
  230. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
  231. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
  232. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
  233. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
  234. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
  235. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
  236. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +85 -74
  237. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  238. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +26 -70
  239. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -5
  240. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
  241. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
  242. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
  243. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +110 -17
  244. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
  245. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
  246. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
  247. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -8
  248. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -9
  249. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
  250. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
  251. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +103 -15
  252. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
  253. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +121 -13
  254. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
  255. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
  256. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
  257. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
  258. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
  259. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
  260. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
  261. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
  262. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
  263. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
  264. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
  265. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +68 -37
  266. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
  267. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +80 -7
  268. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
  269. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
  270. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
  271. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +557 -5
  272. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
  273. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
  274. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
  275. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
  276. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
  277. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
  278. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +4 -5
  279. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
  280. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
  281. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  282. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  283. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.overrides +3 -23
  284. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +3 -5
  285. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
  286. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
  287. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
  288. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
  289. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
  290. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
  291. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
  292. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +164 -10
  293. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
  294. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
  295. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  296. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +951 -0
  297. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
  298. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
  299. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
  300. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
  301. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
  302. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
  303. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
  304. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
  305. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
  306. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +830 -160
  307. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -88
  308. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +883 -4
  309. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +259 -65
  310. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
  311. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +290 -63
  312. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
  313. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
  314. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
  315. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
  316. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
  317. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
  318. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
  319. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
  320. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
  321. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
  322. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
  323. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
  324. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -6
  325. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
  326. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
  327. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
  328. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
  329. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
  330. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
  331. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  332. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  333. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +907 -0
  334. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
  335. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
  336. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
  337. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
  338. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
  339. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
  340. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
  341. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
  342. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
  343. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
  344. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
  345. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
  346. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
  347. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
  348. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
  349. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
  350. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
  351. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
  352. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
  353. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
  354. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
  355. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
  356. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
  357. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -8
  358. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +872 -142
  359. invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
  360. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
  361. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
  362. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
  363. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -79
  364. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +40 -57
  365. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +114 -76
  366. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +16 -13
  367. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +151 -61
  368. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +3 -3
  369. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +12 -7
  370. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
  371. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html +197 -0
  372. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
  373. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
  374. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
  375. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +98 -0
  376. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
  377. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
  378. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
  379. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
  380. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
  381. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +63 -0
  382. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
  383. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
  384. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  385. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/latest_record.html +18 -0
  386. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -0
  387. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
  388. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
  389. invenio_app_rdm/theme/views.py +106 -37
  390. invenio_app_rdm/theme/webpack.py +72 -36
  391. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  392. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
  393. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  394. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
  395. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  396. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
  397. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  398. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
  399. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  400. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
  401. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  402. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1085 -372
  403. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  404. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +987 -367
  405. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  406. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
  407. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  408. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
  409. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  410. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
  411. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  412. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
  413. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  414. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
  415. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  416. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
  417. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  418. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
  419. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  420. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
  421. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  422. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
  423. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  424. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  425. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  426. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +1361 -0
  427. invenio_app_rdm/translations/messages.pot +1046 -271
  428. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  429. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
  430. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  431. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
  432. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  433. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
  434. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  435. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
  436. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  437. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
  438. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  439. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
  440. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  441. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
  442. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  443. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
  444. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  445. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
  446. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  447. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
  448. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  449. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
  450. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
  451. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
  452. invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
  453. invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
  454. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
  455. invenio_app_rdm/upgrade_scripts/migrate_13_0_to_14_0.py +268 -0
  456. invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
  457. invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +4 -6
  458. invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +30 -43
  459. invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +1 -5
  460. invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +7 -11
  461. invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
  462. invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
  463. invenio_app_rdm/users/schemas.py +27 -0
  464. invenio_app_rdm/users_ui/__init__.py +9 -0
  465. invenio_app_rdm/users_ui/searchapp.py +53 -0
  466. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
  467. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
  468. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
  469. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
  470. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
  471. invenio_app_rdm/users_ui/views/__init__.py +14 -0
  472. invenio_app_rdm/users_ui/views/dashboard.py +59 -0
  473. invenio_app_rdm/users_ui/views/ui.py +68 -0
  474. invenio_app_rdm/utils/files.py +120 -0
  475. invenio_app_rdm/views.py +21 -0
  476. invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
  477. invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
  478. {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
  479. invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
  480. invenio_app_rdm/admin.py +0 -36
  481. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/dashboard.html +0 -47
  482. invenio_app_rdm/records_ui/views/utils.py +0 -27
  483. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/Image.js +0 -36
  484. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -257
  485. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/base.js +0 -140
  486. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/communities.js +0 -200
  487. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/requests.js +0 -394
  488. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/uploads.js +0 -287
  489. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/index.js +0 -155
  490. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm_requests/menuTabInit.js +0 -24
  491. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -158
  492. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
  493. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -88
  494. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -97
  495. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/details.less +0 -53
  496. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/sidebar.less +0 -47
  497. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -423
  498. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -305
  499. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -52
  500. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -492
  501. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -60
  502. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm_requests/theme.less +0 -22
  503. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -63
  504. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
  505. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -39
  506. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
  507. invenio_app_rdm/theme/templates/semantic-ui/invenio_requests/community-submission/index.html +0 -67
  508. invenio_app_rdm/version.py +0 -23
  509. invenio_app_rdm-8.0.0.dev9.dist-info/AUTHORS.rst +0 -11
  510. invenio_app_rdm-8.0.0.dev9.dist-info/METADATA +0 -74
  511. invenio_app_rdm-8.0.0.dev9.dist-info/RECORD +0 -179
  512. invenio_app_rdm-8.0.0.dev9.dist-info/entry_points.txt +0 -14
  513. /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
  514. {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
  515. {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,283 @@
1
+ {
2
+ "Basic information": "Alapvető információ",
3
+ "Impersonate user": "Felhasználó azonosítása",
4
+ "Impersonate": "Azonosít",
5
+ "You must accept this.": "El kell fogadnia ezt.",
6
+ "Success": "Siker",
7
+ "User impersonated succesfully! You will be redirected in frontpage soon.": "Felhasználó sikeres azonosítása! Hamarosan visszairányítjuk a főoldalra.",
8
+ "Unable to impersonate user.": "A felhasználó azonosítása sikertelen.",
9
+ "Please read carefully and confirm the following statements before you proceed.": "Mielőtt továbblépne, kérjük, olvassa el figyelmesen és hagyja jóvá a következő pontokat.",
10
+ "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>.": "A <bold>{{email}}(id: {{id}})</bold> felhasználó azonosítása következik.",
11
+ "You <bold>MUST</bold> logout after completing your inquiry.": "A lekérdezés befejezése után ki <bold>KELL</bold> jelentkeznie.",
12
+ "Close": "Bezárás",
13
+ "Set Quota": "Kvóta beállítása",
14
+ "Set quota in bytes": "Kvóta beállítása byte-ban",
15
+ "Note": "Jegyzet",
16
+ "This is the default quota that will be applied to any NEW records created by this user – it will NOT update quota of existing records.": "Ez az alapértelmezett kvóta, amely az adott felhasználó által létrehozott minden ÚJ rekordra vonatkozik - a meglévő rekordok kvótáját NEM frissíti.",
17
+ "Quota of {{id}} was set to {{quota}} {{unit}}": " {{id}} kvótája {{quota}} {{unit}}-ra módosult.",
18
+ "Unable to set quota.": "Kvóta beállítása sikertelen.",
19
+ "Quota size ({{unit}})": "A kvóta mérete ({{unit}})",
20
+ "Enter quota size...": "Adja meg a kvóta méretét...",
21
+ "Max file size ({{unit}})": "Maximális fájlméret ({{unit}})",
22
+ "Enter max file size...": "Adja meg a maximális fájlméretet...",
23
+ "Ticket 1234": "1234-es jegy",
24
+ "Set quota": "Kvóta beállítása",
25
+ "Domain": "Domain",
26
+ "Flagged": "Megjelölve",
27
+ "Organization": "Szervezet",
28
+ "Company": "Szervezet",
29
+ "Mail provider": "E-mail szolgáltató",
30
+ "Spammer": "Spamküldő",
31
+ "TLD": "TLD",
32
+ "Status": "Állapot",
33
+ "New": "Új",
34
+ "Moderated": "Moderálva",
35
+ "Verified": "Ellenőrizve",
36
+ "Blocked": "Letiltva",
37
+ "Users": "Felhasználók",
38
+ "Active": "Aktív",
39
+ "Inactive": "Inaktív",
40
+ "Confirmed": "Megerősítve",
41
+ "Links": "Linkek",
42
+ "Set quota for record {{recordId}}": "Kvóta beállítása a rekordhoz {{recordId}}",
43
+ "Delete record": "Rekord törlése",
44
+ "Restore record": "Rekord visszaállítása",
45
+ "Unavailability statement": "Elérhetetlenségi nyilatkozat",
46
+ "Record {{id}} was restored.": "Rekord {{id}} visszaállítva.",
47
+ "Unable to restore.": "Nem állítható vissza.",
48
+ "Are you sure you want to restore #{{id}}": "Biztosan vissza akarja állítani a/az #{{id}}-t?",
49
+ "Published": "Publikálva",
50
+ "Deleted": "Törölve",
51
+ "Scheduled for purge": "Törlésre ütemezve",
52
+ "Empty draft title": "Üres vázlatcím",
53
+ "version": "verzió",
54
+ "Owner": "Tulajdonos",
55
+ "Created": "Létrehozva",
56
+ "Files": "Fájlok",
57
+ "Stats": "Statisztikák",
58
+ "Record {{id}} was deleted.": "Rekord {{id}} törölve.",
59
+ "Unable to delete": "Nem törölhető",
60
+ "Public": "Nyilvános",
61
+ "Hidden": "Elrejtve",
62
+ "The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "A rekord törölt verziója rejtett, miközben az új rekord nyilvános. Javasolt a törölt verzió nyilvánossá tétele az új rekord deaktiválásakor.",
63
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is restricted. Please make sure no restricted information is shared in the tombstone below.": "INFORMÁCIÓSZIVÁRGÁS VESZÉLYE: A rekord törölt verziója nyilvános, miközben az új rekord korlátozott. Kérjük, ellenőrizze, hogy a törölt rekord ne tartalmazzon védett adatot.",
64
+ "Bibliographic citation": "Bibliográfiai hivatkozás",
65
+ "Input citation text. Blank field will be filled with APA citation by default.": "Beviteli hivatkozás szövege. Az üres mezőt alapértelmezés szerint APA hivatkozási stílussal tölti ki a rendszer.",
66
+ "Public note": "Nyilvános jegyzet",
67
+ "User {{name}} was approved.": "{{név}} felhasználó jóváhagyásra került.",
68
+ "User {{name}} is blocked.": "{{name}} felhasználó le lett tiltva.",
69
+ "Error": "Hiba",
70
+ "User": "Felhasználó",
71
+ "Email": "Email",
72
+ "Email domain": "Email domain",
73
+ "Actions": "Tevékenységek",
74
+ "Records": "Rekordok",
75
+ "Username": "Felhasználónév",
76
+ "GitHub": "GitHub",
77
+ "Updated": "Frissítve",
78
+ "Restore": "Visszaállítás",
79
+ "Restored": "Visszaállítva",
80
+ "Block": "Letiltás",
81
+ "Suspend": "Felfüggesztés",
82
+ "Suspended": "Felfüggesztve",
83
+ "Approve": "Jóváhagyás",
84
+ "Approved": "Jóváhagyva",
85
+ "Activate": "Aktivál",
86
+ "Activated": "Aktiválva",
87
+ "Set default quota for {{email}}": "Alapértelmezett kvóta beállítása {{email}} számára",
88
+ "Filter results": "Találatok szűrése",
89
+ "Search records in community...": "Rekordok keresése a közösségben...",
90
+ "Sort by": "Rendezési elv",
91
+ " results found": "találat",
92
+ " results found_plural": "találat",
93
+ "Search records...": "Rekordok keresése...",
94
+ "Search": "Keresés",
95
+ "Views": "Megtekintések",
96
+ "Downloads": "Letöltések",
97
+ "Copy to clipboard": "Másolás a vágólapra",
98
+ "Copied!": "Másolva!",
99
+ "Part of ": "Része ennek ",
100
+ "No creation date found.": "Létrehozási dátum nem található.",
101
+ "No description": "Nincs leírás",
102
+ "No publication date found.": "Publikálási dátum nem található.",
103
+ "No resource type": "Nincs forrástípus",
104
+ "No title": "Nincs cím",
105
+ "Uploaded on {{uploadDate}}": "Feltöltve: {{uploadDate}}",
106
+ "Published in: {{publishInfo}}": "Publikálva: {{publishInfo}}",
107
+ "{{count}} more versions exist for this record": "{{count}} további verzió érhető el ehhez a rekordhoz",
108
+ "{{count}} more versions exist for this record_plural": "{{count}} további verzió érhető el ehhez a rekordhoz",
109
+ "Person": "Személy",
110
+ "The record has no files.": "A rekordhoz nem tartoznak fájlok. ",
111
+ "Creators": "Készítők",
112
+ "Recommended information": "Ajánlott információ",
113
+ "Add contributor": "Közreműködő hozzáadása",
114
+ "Contributors": "Közreműködők",
115
+ "Edit contributor": "Közreműködő szerkesztése",
116
+ "Funding": "Finanszírozás",
117
+ "Awards/Grants": "Díjak/Támogatások",
118
+ "Alternate identifiers": "Alternatív azonosítók",
119
+ "Related works": "Kapcsolódó munkák",
120
+ "References": "Hivatkozások",
121
+ "Visibility": "Láthatóság",
122
+ "More": "Még több",
123
+ "Unable to request the access.": "Hozzáférés kérése sikertelen.",
124
+ "Your email address": "Az Ön e-mail címe",
125
+ "Email address": "Email cím",
126
+ "Your full name": "Az Ön teljes neve",
127
+ "Full name": "Teljes név",
128
+ "Request message": "Üzenet kérése",
129
+ "I agree to that my full name and email address is shared with the owners of the record": "Hozzájárulok, hogy a teljes nevemet és e-mail címemet megosszák a rekord tulajdonosaival",
130
+ "Request access": "Hozzáférés kérése",
131
+ "Email confirmation needed": "E-mailes megerősítés szükséges",
132
+ "We have sent you an email to verify your address.": "Küldtünk Önnek egy e-mailt, hogy ellenőrizze a címét.",
133
+ "\n Please check the email and follow the instructions to complete the access request.\n ": "\n Kérjük, ellenőrizze az e-mailt, és kövesse az utasításokat a hozzáférési kérelem kitöltéséhez.\n ",
134
+ "An error occurred while fetching communities.": "A közösségek lekérdezése során hiba történt.",
135
+ "Communities": "Közösségek",
136
+ "View all {{count}} communities": "Mind a(z) {{count}} közösség megtekintése",
137
+ "View all {{count}} communities_plural": "Mind a(z) {{count}} közösség megtekintése",
138
+ "Submit to community": "Benyújtás közösséghez",
139
+ "Pending submissions": "Függőben lévő beküldések",
140
+ "Manage communities": "Közösségek kezelése",
141
+ "Community management menu dropdown": "Közösségi menedzsment legördülő menüje",
142
+ "Edit": "Szerkesztés",
143
+ "Export selection": "Kijelölés exportálása",
144
+ "Download file": "Fájl letöltése",
145
+ "Export": "Exportálás",
146
+ "Manage": "Kezelés",
147
+ "Manage record": "Rekord kezelése",
148
+ "Manage user": "Felhasználó kezelése",
149
+ "Remove branding": "Branding eltávolítása",
150
+ "{{communityTitle}} is a default branding for this record": "A rekordhoz tartozó alapértelmezett megjelenés: {{communityTitle}}",
151
+ "Remove this community from appearing on top of the record details page.": "Távolítsa el ezt a közösséget a rekord adatlapjának tetejéről.",
152
+ "Set branding": "Branding beállítása",
153
+ "Set {{communityTitle}} as a default branding for this record": "{{communityTitle}} beállítása alapértelmezett megjelenítésként ehhez a rekordhoz. ",
154
+ "Set this community to appear on the top of the record details page.": "Jelenítse meg ezt a közösséget a rekord adatlapjának tetején.",
155
+ "Pending communities": "Függőben lévő közösségek",
156
+ "Search for pending submissions to communities...": "A közösségekhez küldött függőben lévő beadások keresése...",
157
+ "An error occurred while generating the citation.": "Hiba történt az idézés generálása közben.",
158
+ "Style": "Stílus",
159
+ "This record is not included in any communities yet.": "Ez a rekord még nem szerepel egyetlen közösségben sem.",
160
+ "Search for community...": "Közösség keresése...",
161
+ "Record submitted": "Rekord beküldve",
162
+ "Review requested": "Elbírálás kérése",
163
+ "Search in all communities": "Keresés az összes közösségben",
164
+ "Search in my communities": "Keresés a saját közösségeimben",
165
+ "Select a community": "Közösség kiválasztása",
166
+ "Version {{- version}}": "{{- version}} verzió",
167
+ "Preview": "Előnézet",
168
+ "Only published versions are displayed.": "Csak a közzétett verziókat jelenítettük meg.",
169
+ "An error occurred while fetching the versions.": "A verziók lekérdezése során hiba történt.",
170
+ "View all {{count}} versions": "Mind a(z) {{count}} verzió megtekintése",
171
+ "View all {{count}} versions_plural": "Mind a(z) {{count}} verzió megtekintése",
172
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>": "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a DOI<3></3> használatával. Ez a DOI az összes verziót tartalmazza, és mindig a legutolsó verzióra fog mutatni.<5> Bővebben</5>.</0>",
173
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>": "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a DOI használatával. A DOI-t az első változat közzétételekor regisztrálják. <4> Bővebben</4>.</0>",
174
+ "Remove": "Eltávolítás",
175
+ "Remove {{communityTitle}} from this record": "A {{communityTitle}} törlése ebből a rekordból",
176
+ "Remove community": "Közösség eltávolítása",
177
+ "Are you sure you want to remove the record from the community?": "Biztosan el akarja távolítani a rekordot a közösségből?",
178
+ "I understand the consequences:": "Megértettem a következményeket:",
179
+ "The record can only be re-included in the community by going through a new review by the community curators.": "A rekordot csak akkor lehet újra felvenni a közösségbe, ha a közösség kurátorai újból átnézik.",
180
+ "Something went wrong": "Valami hiba történt.",
181
+ "Cancel removal": "Eltávolítás visszavonása",
182
+ "Cancel": "Mégsem",
183
+ "Confirm removal": "Eltávolítás megerősítése",
184
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.": "A <1>„<1>{{communityTitle}}</1>”</1> közösség tagjai <4>elveszítik hozzáférésüket</4> a rekordhoz.",
185
+ "Select permissions": "Engedélyek kiválasztása",
186
+ "Short name for your link (optional).": "Rövid név a linkhez (opcionális)",
187
+ "Expiration date format: YYYY-MM-DD": "Lejárati dátum formátuma: ÉÉÉÉ-HH-NN",
188
+ "Expiration date: YYYY-MM-DD or never if blank (optional).": "Lejárati dátum: ÉÉÉÉ-HH-NN vagy üres mező esetén soha (opcionális)",
189
+ "Create a new link": "Új link létrehozása",
190
+ "Link title": "Link címe",
191
+ "Expires at": "Lejár:",
192
+ "Never": "Soha",
193
+ "Access": "Hozzáférés",
194
+ "Delete": "Törlés",
195
+ "Copy link": "Link másolása",
196
+ "Can view": "Megtekintheti",
197
+ "Can view restricted files of all versions of this record.": "Megtekintheti a rekord összes verziójának korlátozott fájljait.",
198
+ "Can preview drafts": "Előnézet megtekintése vázlatokból",
199
+ "Can view drafts and restricted files of all versions of this record.": "Megtekintheti a vázlatokat és a rekord összes verziójának korlátozott fájljait.",
200
+ "Can edit": "Szerkesztheti",
201
+ "Can edit drafts and view restricted files of all versions of this record.": "Szerkesztheti a vázlatokat, és megtekintheti az összes verzió korlátozott fájljait.",
202
+ "Can view (view access link can be created only after the record is published)": "Megtekintheti (a megtekintési hivatkozás csak a közzététel után hozható létre)",
203
+ "Expires": "Lejár",
204
+ "This record has no links generated yet.": "Ehhez a rekordhoz még nem generáltak linkeket.",
205
+ "Unable to change the access request settings.": "Nem lehet módosítani a hozzáférési kérelem beállításait.",
206
+ "Allow authenticated users to request access to restricted files.": "Engedélyezi a hitelesített felhasználóknak a korlátozott fájlokhoz való hozzáférés kérését.",
207
+ "Allow non-authenticated users to request access to restricted files.": "Engedélyezi a nem hitelesített felhasználóknak a hozzáférés kérését a korlátozott fájlokhoz.",
208
+ "Accept conditions": "Feltételek elfogadása",
209
+ "Advanced options": "További lehetőségek",
210
+ "Save": "Mentés",
211
+ "No user has access to this record yet.": "Ehhez a rekordhoz még egy felhasználónak sincs hozzáférése.",
212
+ "People with access": "Hozzáféréssel rendelkező emberek",
213
+ "No group has access to this record yet.": "Ehhez a rekordhoz még egy csoportnak sincs hozzáférése.",
214
+ "Groups with access": "Hozzáféréssel rendelkező csoportok",
215
+ "You": "Ön",
216
+ "Add people": "Emberek hozzáadása",
217
+ "No selected users": "Nincsenek felhasználók kiválasztva",
218
+ "Search for users to grant access (only users with a public profile can be invited)": "Felhasználók keresése hozzáférés megadásához (csak nyilvános profillal rendelkező felhasználók hívhatók meg)",
219
+ "Search by email, full name or username": "Keresés email, teljes név vagy felhasználónév alapján",
220
+ "users": "felhasználók",
221
+ "Add groups": "Csoportok hozzáadása",
222
+ "Group": "Csoport",
223
+ "No selected groups": "Nincsenek kijelölt csoportok",
224
+ "Search for groups": "Csoportok keresése",
225
+ "groups": "csoportok",
226
+ "Add": "Hozzáadás",
227
+ "Notify people": "Emberek értesítése",
228
+ "Notification message": "Értesítés szövege",
229
+ "You are about to add": "Hamarosan hozzáadja",
230
+ "Access already granted": "A hozzáférés már engedélyezve van",
231
+ "Can manage": "Kezelheti",
232
+ "Can manage access, edit drafts and view restricted files of all versions of this record.": "Kezelheti a hozzáférést, szerkesztheti a vázlatokat, és megtekintheti az összes verzió korlátozott fájljait.",
233
+ "You don't have permissions to share this record.": "Nincs jogosultsága a rekord megosztására.",
234
+ "Share": "Megosztás",
235
+ "People": "Emberek",
236
+ "Groups": "Csoportok",
237
+ "Settings": "Beállítások",
238
+ "Share access": "Hozzáférés megosztása",
239
+ "Link expiration": "Hivatkozás lejárata",
240
+ "In 1 month": "1 hónap múlva",
241
+ "In 2 months": "2 hónap múlva",
242
+ "In 6 months": "6 hónap múlva",
243
+ "In 1 year": "1 év múlva",
244
+ "Invalid date format.": "Érvénytelen dátumformátum.",
245
+ "Access link expiration date cannot be in the past.": "A hozzáférési link lejárati dátuma nem lehet múltbeli.",
246
+ "Access request": "Hozzáférés igénylése",
247
+ "Unable to change the expiration request settings.": "Nem sikerült módosítani a lejárati beállításokat.",
248
+ "Expiration date: ": "Lejárat dátuma:",
249
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave empty to set no expiration limit.": "Formátum: ÉÉÉÉ-HH-NN. A megadott napon a hozzáférés lejár. Hagyja üresen, ha nem szeretne lejárati időt megadni.",
250
+ "Link expiration date:": "Hivatkozás lejárati dátuma:",
251
+ "We couldn't find any matches for {{- search}}": "Nincs találat a következőre: {{- search}}",
252
+ "Start over": "Újrakezdés",
253
+ "ProTip": "ProTip",
254
+ "Search guide": "Keresési útmutató",
255
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>": "<0>További tippekért tekintse meg a <2>keresési útmutatónkat</2> az összetett keresési lekérdezések megadásához.</0>",
256
+ "Search in my communities...": "Keresés a közösségeimben...",
257
+ "View": "Megtekintés",
258
+ "Published in: {{publishedIn}}": "Publikálva: {{publishedIn}}",
259
+ "In review": "Bírálás alatt",
260
+ "Declined": "Elutasítva",
261
+ "Expired": "Lejárt",
262
+ "Draft": "Piszkozat",
263
+ "New version draft": "Piszkozat új verzióhoz",
264
+ "open": "megnyit",
265
+ "Open": "Megnyitás",
266
+ "unlock": "felold",
267
+ "Get started!": "Kezdjük!",
268
+ "Make your first upload!": "Tegye meg az első feltöltését!",
269
+ "New upload": "Új feltöltés",
270
+ "Search in my uploads...": "Keresés a feltöltéseim között...",
271
+ "ORCID profile": "ORCID profil",
272
+ "ORCID logo": "ORCID logó",
273
+ "ROR profile": "ROR profil",
274
+ "ROR logo": "ROR logó",
275
+ "GND profile": "GND profil",
276
+ "GND logo": "GND logó",
277
+ "No name": "Név nélküli",
278
+ "and {{count}} other": "és további {{count}}",
279
+ "and {{count}} other_plural": "és további {{count}}",
280
+ "and {{count}} others": "és további {{count}}",
281
+ "and {{count}} others_plural": "és további {{count}}",
282
+ "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>": "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> lekérdezéssel 2017. január 1-jétől kezdődően a mai napig bezárólag minden publikáció listázásra kerül.</0>"
283
+ }
@@ -1,9 +1,20 @@
1
- import TRANSLATE_EN from "./en/translations.json";
2
- import TRANSLATE_DE from "./de/translations.json";
3
- import TRANSLATE_EL from "./el/translations.json";
1
+ // Copyright (C) 2024 Graz University of Technology.
2
+ // Copyright (C) 2025 KTH Royal Institute of Technology
4
3
 
4
+ /*
5
+ This will import translations from an auto-generated file in order to not have to manually adapt the provided languages.
6
+ The auto generated file will be created when running npm run compile_catalog
7
+ File structure of the generated file will look like:
8
+ import TRANSLATE_de from "./de/translations.json";
9
+ import TRANSLATE_en from "./en/translations.json";
10
+ import TRANSLATE_es from "./es/translations.json";
5
11
  export const translations = {
6
- el: { translation: TRANSLATE_EL },
7
- en: { translation: TRANSLATE_EN },
8
- de: { translation: TRANSLATE_DE },
12
+ de: { translation: TRANSLATE_de },
13
+ en: { translation: TRANSLATE_en },
14
+ es: { translation: TRANSLATE_es },
9
15
  };
16
+ */
17
+
18
+ import { translations } from "./_generatedTranslations";
19
+
20
+ export { translations };