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
@@ -1,20 +1,24 @@
1
1
  #
2
2
  # Translators:
3
- # Alizee Pace <alizee.pace@gmail.com>, 2021
4
- # Alexander Gruber <alexander.gruber@tugraz.at>, 2022
5
- # chriz_uniba <christina.zeller@uni-bamberg.de>, 2022
6
- # David Eckhard <dabombeeer@gmail.com>, 2022
7
- # Mojib Wali <mojib.wali@tugraz.at>, 2022
8
- # Tibor Simko <tibor.simko@cern.ch>, 2022
9
- # Hermann Schranzhofer <hermann.schranzhofer@tugraz.at>, 2022
3
+ # Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2022
4
+ # Alizee Pace <alizee.pace@gmail.com>, 2024
5
+ # David Eckhard <dabombeeer@gmail.com>, 2024
6
+ # Tibor Simko <tibor.simko@cern.ch>, 2024
7
+ # Frank Berkemeier, 2024
8
+ # Alexander Gruber <alexander.gruber@tugraz.at>, 2025
9
+ # Mojib Wali <mojib.wali@tugraz.at>, 2025
10
+ # c960a0736ea0fb7507bb1c3555e7d33f_88b575f <3cef15c38ce2563e884ec389656c9161_1006830>, 2025
11
+ # Hermann Schranzhofer <hermann.schranzhofer@tugraz.at>, 2025
12
+ # Sarah Wiechers, 2025
13
+ # Adienne Karsten-Welker, 2025
10
14
  #
11
15
  msgid ""
12
16
  msgstr ""
13
17
  "Project-Id-Version: i18next-conv\n"
14
- "POT-Creation-Date: 2022-03-01T08:18:33.908Z\n"
18
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
15
19
  "PO-Revision-Date: 2021-07-14 16:07+0000\n"
16
- "Last-Translator: Hermann Schranzhofer <hermann.schranzhofer@tugraz.at>, 2022\n"
17
- "Language-Team: German (https://www.transifex.com/inveniosoftware/teams/23537/de/)\n"
20
+ "Last-Translator: Adienne Karsten-Welker, 2025\n"
21
+ "Language-Team: German (https://app.transifex.com/inveniosoftware/teams/23537/de/)\n"
18
22
  "Content-Type: text/plain; charset=UTF-8\n"
19
23
  "Content-Transfer-Encoding: 8bit\n"
20
24
  "Language: de\n"
@@ -24,29 +28,359 @@ msgstr ""
24
28
  msgid "Basic information"
25
29
  msgstr "Allgemeine Informationen"
26
30
 
27
- msgid "Requests"
28
- msgstr "Anfragen"
31
+ msgid "Impersonate user"
32
+ msgstr "Sich als ein*e andere*r Benutzer*in ausgeben"
29
33
 
30
- msgid "Communities"
31
- msgstr "Communities"
34
+ msgid "Impersonate"
35
+ msgstr "Sich als ein*e andere*r Benutzer*in ausgeben"
36
+
37
+ msgid "You must accept this."
38
+ msgstr "Sie müssen dies akzeptieren."
39
+
40
+ msgid "Success"
41
+ msgstr "Erfolg"
42
+
43
+ msgid ""
44
+ "User impersonated succesfully! You will be redirected in frontpage soon."
45
+ msgstr ""
46
+ "Sie haben sich erfolgreich als ein*e andere*r Benutzer*in ausgegeben und "
47
+ "angemeldet. Sie werden in Kürze auf die Startseite weitergeleitet."
48
+
49
+ msgid "Unable to impersonate user."
50
+ msgstr "Es ist nicht möglich, sich als ein*e andere*r Benutzer*in auszugeben."
51
+
52
+ msgid ""
53
+ "Please read carefully and confirm the following statements before you "
54
+ "proceed."
55
+ msgstr ""
56
+ "Bitte lesen und bestätigen Sie den folgenden Text, bevor Sie fortfahren."
57
+
58
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
59
+ msgstr ""
60
+ "Sie sind dabei, sich als ein*e andere*r Benutzer*in <bold>{{email}}(id: "
61
+ "{{id}})</bold> auszugeben."
62
+
63
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
64
+ msgstr "Sie <bold>MÜSSEN</bold> sich nach Abschluss Ihrer Anfrage abmelden."
65
+
66
+ msgid "Close"
67
+ msgstr "Schließen"
68
+
69
+ msgid "Set Quota"
70
+ msgstr "Quota setzen"
71
+
72
+ msgid "Set quota in bytes"
73
+ msgstr "Quota in Bytes setzen"
74
+
75
+ msgid "Note"
76
+ msgstr "Bemerkung"
77
+
78
+ msgid ""
79
+ "This is the default quota that will be applied to any NEW records created by"
80
+ " this user – it will NOT update quota of existing records."
81
+ msgstr ""
82
+ "Dies ist die Standard-Quota, die auf alle neu erstellten Einträge dieses "
83
+ "Benutzers angewendet wird – sie wird NICHT die Quota von bereits "
84
+ "existierenden Einträgen ersetzen."
85
+
86
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
87
+ msgstr "Quota von {{id}} wurde auf {{quota}} {{unit}} gesetzt"
88
+
89
+ msgid "Unable to set quota."
90
+ msgstr "Es ist nicht möglich, die Quota zu setzen."
91
+
92
+ msgid "Quota size ({{unit}})"
93
+ msgstr "Größe der Quota ({{unit}})"
94
+
95
+ msgid "Enter quota size..."
96
+ msgstr "Größe der Quota eingeben..."
97
+
98
+ msgid "Max file size ({{unit}})"
99
+ msgstr "Maximale Dateigröße ({{unit}})"
100
+
101
+ msgid "Enter max file size..."
102
+ msgstr "Maximale Dateigröße eingeben..."
103
+
104
+ msgid "Ticket 1234"
105
+ msgstr "Ticket 1234"
106
+
107
+ msgid "Set quota"
108
+ msgstr "Quota setzen"
109
+
110
+ msgid "Domain"
111
+ msgstr "Domain"
112
+
113
+ msgid "Flagged"
114
+ msgstr "Markiert"
115
+
116
+ msgid "Organization"
117
+ msgstr "Organisation"
118
+
119
+ msgid "Company"
120
+ msgstr "Firma"
121
+
122
+ msgid "Mail provider"
123
+ msgstr "E-Mail-Provider"
124
+
125
+ msgid "Spammer"
126
+ msgstr "Spammer"
127
+
128
+ msgid "TLD"
129
+ msgstr "TLD"
130
+
131
+ msgid "Status"
132
+ msgstr "Status"
133
+
134
+ msgid "New"
135
+ msgstr "Neu"
136
+
137
+ msgid "Moderated"
138
+ msgstr "Moderiert"
139
+
140
+ msgid "Verified"
141
+ msgstr "Verifiziert"
142
+
143
+ msgid "Blocked"
144
+ msgstr "Gesperrt"
145
+
146
+ msgid "Users"
147
+ msgstr "Benutzer*innen"
148
+
149
+ msgid "Active"
150
+ msgstr "Aktiv"
151
+
152
+ msgid "Inactive"
153
+ msgstr "Inaktiv"
154
+
155
+ msgid "Confirmed"
156
+ msgstr "Bestätigt"
157
+
158
+ msgid "Links"
159
+ msgstr "Links"
160
+
161
+ msgid "Set quota for record {{recordId}}"
162
+ msgstr "Quota für den Eintrag {{recordId}} setzen"
163
+
164
+ msgid "Delete record"
165
+ msgstr "Eintrag löschen"
166
+
167
+ msgid "Restore record"
168
+ msgstr "Eintrag wiederherstellen"
169
+
170
+ msgid "Unavailability statement"
171
+ msgstr "Nichtverfügbarkeits-Erklärung"
172
+
173
+ msgid "Record {{id}} was restored."
174
+ msgstr "Eintrag {{id}} wurde wiederhergestellt."
175
+
176
+ msgid "Unable to restore."
177
+ msgstr "Es ist nicht möglich, den Eintrag wiederherzustellen."
178
+
179
+ msgid "Are you sure you want to restore #{{id}}"
180
+ msgstr ""
181
+ "Sind Sie sicher, dass Sie den Eintrag #{{id}} wiederherstellen möchten?"
182
+
183
+ msgid "Published"
184
+ msgstr "Veröffentlicht"
185
+
186
+ msgid "Deleted"
187
+ msgstr "Gelöscht"
188
+
189
+ msgid "Scheduled for purge"
190
+ msgstr "Zur Sperrung vorgesehen"
191
+
192
+ msgid "Empty draft title"
193
+ msgstr "Leerer Entwurfstitel"
194
+
195
+ msgid "version"
196
+ msgstr "Version"
197
+
198
+ msgid "Owner"
199
+ msgstr "Besitzer*in"
200
+
201
+ msgid "Created"
202
+ msgstr "Erstellt"
203
+
204
+ msgid "Files"
205
+ msgstr "Dateien"
206
+
207
+ msgid "Stats"
208
+ msgstr "Statistiken"
209
+
210
+ msgid "Record {{id}} was deleted."
211
+ msgstr "Eintrag {{id}} wurde gelöscht."
212
+
213
+ msgid "Unable to delete"
214
+ msgstr "Es ist nicht möglich, den Eintrag zu löschen."
215
+
216
+ msgid "Public"
217
+ msgstr "Öffentlich"
218
+
219
+ msgid "Hidden"
220
+ msgstr "Verborgen"
221
+
222
+ msgid ""
223
+ "The tombstone is set to hidden but your record is public. Best practice is "
224
+ "to provide a public tombstone when deactivating public records."
225
+ msgstr ""
226
+ "Es sollte möglichst immer eine öffentlich erreichbare Tombstone-Seite "
227
+ "erstellt werden, wenn Sie einen publizierten Eintrag deaktivieren."
228
+
229
+ msgid ""
230
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
231
+ "restricted. Please make sure no restricted information is shared in the "
232
+ "tombstone below."
233
+ msgstr ""
234
+ "RISIKO EINES INFORMATIONS-LECKS: Die Tombstone-Seite ist öffentlich "
235
+ "sichtbar, aber Ihr Eintrag ist nur eingeschränkt sichtbar. Stellen Sie "
236
+ "sicher, dass keine vertraulichen Informationen auf der Tombstone-Seite "
237
+ "vorhanden sind."
238
+
239
+ msgid "Bibliographic citation"
240
+ msgstr "Bibliographische Zitation"
241
+
242
+ msgid ""
243
+ "Input citation text. Blank field will be filled with APA citation by "
244
+ "default."
245
+ msgstr ""
246
+ "Geben Sie einen Zitationstext ein. Ein leeres Feld wird mit einer APA-"
247
+ "Zitation gefüllt."
248
+
249
+ msgid "Public note"
250
+ msgstr "Öffentlich sichtbare Bemerkung"
251
+
252
+ msgid "User {{name}} was approved."
253
+ msgstr "Benutzer*in {{name}} wurde akzeptiert."
254
+
255
+ msgid "User {{name}} is blocked."
256
+ msgstr "Benutzer*in {{name}} wurde gesperrt."
32
257
 
33
- msgid "Uploads"
258
+ msgid "Error"
259
+ msgstr "Fehler"
260
+
261
+ msgid "User"
262
+ msgstr "Benutzer*in"
263
+
264
+ msgid "Email"
265
+ msgstr "E-Mail"
266
+
267
+ msgid "Email domain"
268
+ msgstr "E-Mail-Domain"
269
+
270
+ msgid "Actions"
271
+ msgstr "Aktionen"
272
+
273
+ msgid "Records"
34
274
  msgstr "Einträge"
35
275
 
276
+ msgid "Username"
277
+ msgstr "Kontoname"
278
+
279
+ msgid "GitHub"
280
+ msgstr "GitHub"
281
+
282
+ msgid "Updated"
283
+ msgstr "Aktualisiert"
284
+
285
+ msgid "Restore"
286
+ msgstr "Wiederherstellen"
287
+
288
+ msgid "Restored"
289
+ msgstr "Wiederhergestellt"
290
+
291
+ msgid "Block"
292
+ msgstr "Sperren"
293
+
294
+ msgid "Suspend"
295
+ msgstr "Sperren"
296
+
297
+ msgid "Suspended"
298
+ msgstr "Gesperrt"
299
+
300
+ msgid "Approve"
301
+ msgstr "Akzeptieren"
302
+
303
+ msgid "Approved"
304
+ msgstr "Akzeptiert"
305
+
306
+ msgid "Activate"
307
+ msgstr "Aktivieren"
308
+
309
+ msgid "Activated"
310
+ msgstr "Aktiviert"
311
+
312
+ msgid "Set default quota for {{email}}"
313
+ msgstr "Standard-Quota für {{email}} setzen"
314
+
315
+ msgid "Filter results"
316
+ msgstr "Ergebnisse filtern"
317
+
318
+ msgid "Search records in community..."
319
+ msgstr "Einträge in dieser Community suchen..."
320
+
321
+ msgid "Sort by"
322
+ msgstr "Sortieren nach"
323
+
324
+ msgid " results found"
325
+ msgid_plural " results found"
326
+ msgstr[0] " Ergebnisse gefunden"
327
+ msgstr[1] " Ergebnisse gefunden"
328
+
329
+ msgid "Search records..."
330
+ msgstr "Einträge suchen..."
331
+
332
+ msgid "Search"
333
+ msgstr "Suchen"
334
+
335
+ msgid "Views"
336
+ msgstr "Ansichten"
337
+
338
+ msgid "Downloads"
339
+ msgstr "Downloads"
340
+
36
341
  msgid "Copy to clipboard"
37
342
  msgstr "In die Zwischenablage kopieren"
38
343
 
39
344
  msgid "Copied!"
40
345
  msgstr "Kopiert!"
41
346
 
42
- msgid "Files"
43
- msgstr "Dateien"
347
+ msgid "Part of "
348
+ msgstr "Teil von "
349
+
350
+ msgid "No creation date found."
351
+ msgstr "Kein Erstellungsdatum gefunden."
352
+
353
+ msgid "No description"
354
+ msgstr "Keine Beschreibung"
355
+
356
+ msgid "No publication date found."
357
+ msgstr "Kein Veröffentlichungsdatum gefunden."
358
+
359
+ msgid "No resource type"
360
+ msgstr "Kein Ressource-Typ"
361
+
362
+ msgid "No title"
363
+ msgstr "Ohne Titel"
364
+
365
+ msgid "Uploaded on {{uploadDate}}"
366
+ msgstr "Hochgeladen am {{uploadDate}}"
367
+
368
+ msgid "Published in: {{publishInfo}}"
369
+ msgstr "Veröffentlicht in: {{publishInfo}}"
370
+
371
+ msgid "{{count}} more versions exist for this record"
372
+ msgid_plural "{{count}} more versions exist for this record"
373
+ msgstr[0] "Es existiert {{count}} weitere Version dieses Eintrags"
374
+ msgstr[1] "Es existieren {{count}} weitere Versionen dieses Eintrags"
375
+
376
+ msgid "Person"
377
+ msgstr "Person"
44
378
 
45
379
  msgid "The record has no files."
46
- msgstr "Der Eintrag hat keine Dateien."
380
+ msgstr "Der Eintrag enthält keine Dateien."
47
381
 
48
382
  msgid "Creators"
49
- msgstr "Erstellerinnen"
383
+ msgstr "Ersteller*innen"
50
384
 
51
385
  msgid "Recommended information"
52
386
  msgstr "Empfohlene Informationen"
@@ -57,32 +391,176 @@ msgstr "Mitwirkende hinzufügen"
57
391
  msgid "Contributors"
58
392
  msgstr "Mitwirkende"
59
393
 
60
- msgid "Alternate identifiers"
61
- msgstr "Alternative Kennungen"
394
+ msgid "Edit contributor"
395
+ msgstr "Mitwirkende*n bearbeiten"
396
+
397
+ msgid "Funding"
398
+ msgstr "Förderung"
62
399
 
63
- msgid "Alternate identifier(s)"
64
- msgstr "Alternative Kennung(en)"
400
+ msgid "Awards/Grants"
401
+ msgstr "Auszeichnungen/Stipendien"
402
+
403
+ msgid "Alternate identifiers"
404
+ msgstr "Alternative IDs"
65
405
 
66
406
  msgid "Related works"
67
- msgstr "Verwandte Werke"
407
+ msgstr "Verwandte Arbeiten"
408
+
409
+ msgid "References"
410
+ msgstr "Referenzen"
68
411
 
69
412
  msgid "Visibility"
70
413
  msgstr "Sichtbarkeit"
71
414
 
415
+ msgid "More"
416
+ msgstr "Mehr"
417
+
418
+ msgid "Unable to request the access."
419
+ msgstr "Es ist nicht möglich, Zugriff zu beantragen."
420
+
421
+ msgid "Your email address"
422
+ msgstr "Ihre E-Mail-Adresse"
423
+
424
+ msgid "Email address"
425
+ msgstr "E-Mail-Adresse"
426
+
427
+ msgid "Your full name"
428
+ msgstr "Ihr vollständiger Name"
429
+
430
+ msgid "Full name"
431
+ msgstr "Vollständiger Name"
432
+
433
+ msgid "Request message"
434
+ msgstr "Ihre Nachricht"
435
+
436
+ msgid ""
437
+ "I agree to that my full name and email address is shared with the owners of "
438
+ "the record"
439
+ msgstr ""
440
+ "Ich stimme zu, dass mein vollständiger Name und meine E-Mail-Adresse mit den"
441
+ " Besitzer*innen des Eintrags geteilt werden."
442
+
443
+ msgid "Request access"
444
+ msgstr "Zugriff beantragen"
445
+
446
+ msgid "Email confirmation needed"
447
+ msgstr "E-Mail-Bestätigung erforderlich"
448
+
449
+ msgid "We have sent you an email to verify your address."
450
+ msgstr ""
451
+ "Wir haben Ihnen eine E-Mail gesendet, um Ihre Adresse zu verifizieren."
452
+
453
+ msgid ""
454
+ "\n"
455
+ " Please check the email and follow the instructions to complete the access request.\n"
456
+ " "
457
+ msgstr ""
458
+ "\n"
459
+ " Bitte überprüfen Sie die E-Mail und folgen Sie den Anweisungen, um die Zugriffsanforderung abzuschließen.\n"
460
+ " "
461
+
462
+ msgid "An error occurred while fetching communities."
463
+ msgstr ""
464
+ "Es ist ein Fehler aufgetreten, während die Communities geladen wurden."
465
+
466
+ msgid "Communities"
467
+ msgstr "Communitys"
468
+
469
+ msgid "View all {{count}} communities"
470
+ msgid_plural "View all {{count}} communities"
471
+ msgstr[0] "Alle {{count}} Communities ansehen"
472
+ msgstr[1] "Alle {{count}} Communitys ansehen"
473
+
474
+ msgid "Submit to community"
475
+ msgstr "Einreichen in die Community"
476
+
477
+ msgid "Pending submissions"
478
+ msgstr "Einreichungen in der Warteschlange"
479
+
480
+ msgid "Manage communities"
481
+ msgstr "Communitys verwalten"
482
+
483
+ msgid "Community management menu dropdown"
484
+ msgstr "Dropdown-Menü für die Community-Verwaltung"
485
+
72
486
  msgid "Edit"
73
487
  msgstr "Editieren"
74
488
 
75
- msgid "An error occurred while generating the citation."
76
- msgstr "Beim Erzeugen der Zitierung ist ein Fehler aufgetreten."
489
+ msgid "Export selection"
490
+ msgstr "Auswahl exportieren"
491
+
492
+ msgid "Download file"
493
+ msgstr "Datei herunterladen"
494
+
495
+ msgid "Export"
496
+ msgstr "Exportieren"
497
+
498
+ msgid "Manage"
499
+ msgstr "Verwalten"
77
500
 
78
- msgid "Citation"
79
- msgstr "Zitierung"
501
+ msgid "Manage record"
502
+ msgstr "Eintrag verwalten"
503
+
504
+ msgid "Manage user"
505
+ msgstr "Benutzer*innen verwalten"
506
+
507
+ msgid "Remove branding"
508
+ msgstr "Branding entfernen"
509
+
510
+ msgid "{{communityTitle}} is a default branding for this record"
511
+ msgstr "{{communityTitle}} ist ein Standard-Branding für diesen Eintrag"
512
+
513
+ msgid ""
514
+ "Remove this community from appearing on top of the record details page."
515
+ msgstr ""
516
+ "Die Anzeige dieser Community auf der Landing-Page des Eintrags deaktivieren."
517
+
518
+ msgid "Set branding"
519
+ msgstr "Branding setzen"
520
+
521
+ msgid "Set {{communityTitle}} as a default branding for this record"
522
+ msgstr ""
523
+ "Setzen Sie {{communityTitle}} als Standard-Branding für diesen Eintrag"
524
+
525
+ msgid "Set this community to appear on the top of the record details page."
526
+ msgstr ""
527
+ "Die Anzeige dieser Community auf der Landing-Page des Eintrags aktivieren."
528
+
529
+ msgid "Pending communities"
530
+ msgstr "Ausstehende Communitys"
531
+
532
+ msgid "Search for pending submissions to communities..."
533
+ msgstr "Suche nach ausstehenden Einreichungen in Communitys ..."
534
+
535
+ msgid "An error occurred while generating the citation."
536
+ msgstr "Beim Anlegen der Zitation ist ein Fehler aufgetreten."
80
537
 
81
538
  msgid "Style"
82
539
  msgstr "Stil"
83
540
 
84
- msgid "Version"
85
- msgstr "Version"
541
+ msgid "This record is not included in any communities yet."
542
+ msgstr "Dieser Eintrag ist noch nicht Teil einer Community."
543
+
544
+ msgid "Search for community..."
545
+ msgstr "Suche nach Community ..."
546
+
547
+ msgid "Record submitted"
548
+ msgstr "Eintrag eingereicht"
549
+
550
+ msgid "Review requested"
551
+ msgstr "Überprüfung beantragt"
552
+
553
+ msgid "Search in all communities"
554
+ msgstr "Suche in allen Communitys"
555
+
556
+ msgid "Search in my communities"
557
+ msgstr "Suche in meinen Communitys"
558
+
559
+ msgid "Select a community"
560
+ msgstr "Wählen Sie eine Community"
561
+
562
+ msgid "Version {{- version}}"
563
+ msgstr "Version {{- version}}"
86
564
 
87
565
  msgid "Preview"
88
566
  msgstr "Vorschau"
@@ -90,207 +568,399 @@ msgstr "Vorschau"
90
568
  msgid "Only published versions are displayed."
91
569
  msgstr "Es werden nur veröffentlichte Versionen angezeigt."
92
570
 
93
- msgid "View all {{total}} versions"
94
- msgstr "Alle {{total}} Versionen anzeigen"
571
+ msgid "An error occurred while fetching the versions."
572
+ msgstr "Es ist ein Fehler aufgetreten, während die Versionen geladen wurden."
95
573
 
96
- msgid "You don't have permissions to share this record."
97
- msgstr "Sie haben nicht die Berechtigung, diesen Eintrag freizugeben."
574
+ msgid "View all {{count}} versions"
575
+ msgid_plural "View all {{count}} versions"
576
+ msgstr[0] "Alle {{count}} Versionen ansehen"
577
+ msgstr[1] "Alle {{count}} Versionen ansehen"
98
578
 
99
- msgid "Share"
100
- msgstr "Teilen"
579
+ msgid ""
580
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
581
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
582
+ "latest one. <5>Read more</5>.</0>"
583
+ msgstr ""
584
+ "<0><0>Alle Versionen zitieren?</0> Sie können alle Versionen zitieren, indem"
585
+ " Sie die DOI <3></3> verwenden. Diese DOI repräsentiert alle Versionen und "
586
+ "wird immer auf die neueste Version verweisen. <5>Weitere "
587
+ "Informationen</5>.</0>"
101
588
 
102
- msgid "Can view"
103
- msgstr "Kann ansehen"
589
+ msgid ""
590
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
591
+ "The DOI is registered when the first version is published. <4>Read "
592
+ "more</4>.</0>"
593
+ msgstr ""
594
+ "<0><0>Alle Versionen zitieren?</0> Sie können alle Versionen zitieren, indem"
595
+ " Sie die DOI . Die DOI wird registriert, sobald die erste Version des "
596
+ "Eintrags veröffentlicht wird. <4>Weitere Informationen</4>.</0>"
104
597
 
105
- msgid "Can preview"
106
- msgstr "Kann vorschauen"
598
+ msgid "Remove"
599
+ msgstr "Entfernen"
107
600
 
108
- msgid "Can edit"
109
- msgstr "Kann bearbeiten"
601
+ msgid "Remove {{communityTitle}} from this record"
602
+ msgstr "Entfernen Sie {{communityTitle}} aus diesem Eintrag"
603
+
604
+ msgid "Remove community"
605
+ msgstr "Community entfernen"
606
+
607
+ msgid "Are you sure you want to remove the record from the community?"
608
+ msgstr ""
609
+ "Sind Sie sicher, dass Sie den Eintrag aus der Community entfernen möchten?"
110
610
 
111
- msgid "Get a link"
112
- msgstr "Einen Link erhalten"
611
+ msgid "I understand the consequences:"
612
+ msgstr "Ich verstehe die Auswirkungen:"
613
+
614
+ msgid ""
615
+ "The record can only be re-included in the community by going through a new "
616
+ "review by the community curators."
617
+ msgstr ""
618
+ "Der Eintrag kann nur wieder in die Community aufgenommen werden, nachdem ein"
619
+ " neuer Review-Prozess durchgeführt wurde."
620
+
621
+ msgid "Something went wrong"
622
+ msgstr "Etwas ist etwas schief gelaufen"
623
+
624
+ msgid "Cancel removal"
625
+ msgstr "Löschvorgang abbrechen"
626
+
627
+ msgid "Cancel"
628
+ msgstr "Abbrechen"
629
+
630
+ msgid "Confirm removal"
631
+ msgstr "Löschen bestätigen"
632
+
633
+ msgid ""
634
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
635
+ "their access</4> to the record."
636
+ msgstr ""
637
+ "Mitglieder der Community <1>\"<1>{{communityTitle}}</1>\"</1> werden "
638
+ "<4>keinen Zugriff</4> mehr auf den Eintrag haben."
639
+
640
+ msgid "Select permissions"
641
+ msgstr "Berechtigungen auswählen"
642
+
643
+ msgid "Short name for your link (optional)."
644
+ msgstr "Kurzname für Ihren Link (optional)."
645
+
646
+ msgid "Expiration date format: YYYY-MM-DD"
647
+ msgstr "Format des Ablaufdatums: YYYY-MM-DD"
648
+
649
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
650
+ msgstr "Ablaufdatum: YYYY-MM-DD oder nie, falls leer (optional)."
651
+
652
+ msgid "Create a new link"
653
+ msgstr "Neuen Link erstellen"
654
+
655
+ msgid "Link title"
656
+ msgstr "Link-Titel"
657
+
658
+ msgid "Expires at"
659
+ msgstr "Läuft ab am"
660
+
661
+ msgid "Never"
662
+ msgstr "Nie"
663
+
664
+ msgid "Access"
665
+ msgstr "Zugriff"
666
+
667
+ msgid "Delete"
668
+ msgstr "Löschen"
113
669
 
114
670
  msgid "Copy link"
115
671
  msgstr "Link kopieren"
116
672
 
117
- msgid "No link has been created. Click on 'Get a Link' to make a new link"
673
+ msgid "Can view"
674
+ msgstr "Sichtrechte"
675
+
676
+ msgid "Can view restricted files of all versions of this record."
118
677
  msgstr ""
119
- "Es wurde noch kein Link erstellt. Klicken Sie auf 'Einen Link erhalten', um "
120
- "einen neuen Link zu erstellen"
678
+ "Kann zugriffsbeschränkte Dateien aller Versionen dieses Eintrags einsehen."
121
679
 
122
- msgid "Delete link"
123
- msgstr "Link löschen"
680
+ msgid "Can preview drafts"
681
+ msgstr "Kann Entwürfe einsehen"
124
682
 
125
- msgid "Done"
126
- msgstr "Erledigt"
683
+ msgid "Can view drafts and restricted files of all versions of this record."
684
+ msgstr ""
685
+ "Kann Entwürfe und zugriffsbeschränkte Dateien aller Versionen dieses "
686
+ "Eintrags einsehen."
687
+
688
+ msgid "Can edit"
689
+ msgstr "Bearbeitungsrechte"
127
690
 
128
691
  msgid ""
129
- "Anyone with this link <1>can view all versions</1> of this record & files."
692
+ "Can edit drafts and view restricted files of all versions of this record."
130
693
  msgstr ""
131
- "Jeder, der diesen Link hat, <1>kann alle Versionen</1> dieses Eintrags und "
132
- "der Dateien einsehen."
694
+ "Kann Entwürfe und zugriffsbeschränkte Dateien aller Versionen dieses "
695
+ "Eintrags bearbeiten."
133
696
 
134
697
  msgid ""
135
- "Anyone with this link <2>can view all published and unpublished versions</2>"
136
- " of this record & files."
698
+ "Can view (view access link can be created only after the record is "
699
+ "published)"
137
700
  msgstr ""
138
- "Jeder mit diesem Link <2>kann alle veröffentlichten und unveröffentlichten "
139
- "Versionen</2> dieses Eintrags und der Dateien einsehen."
701
+ "Kann Einträge einsehen (Link für den Zugriff kann erst erstellt werden, "
702
+ "nachdem der Eintrag veröffentlicht wurde)"
140
703
 
141
- msgid ""
142
- "Anyone with an account and this link <2>can edit all versions</2> of this "
143
- "record & files."
704
+ msgid "Expires"
705
+ msgstr "Ablaufdatum"
706
+
707
+ msgid "This record has no links generated yet."
708
+ msgstr "Dieser Eintrag hat noch keine Links."
709
+
710
+ msgid "Unable to change the access request settings."
711
+ msgstr "Es ist nicht möglich, die Zugriffs-Einstellungen zu ändern."
712
+
713
+ msgid "Allow authenticated users to request access to restricted files."
144
714
  msgstr ""
145
- "Jeder mit einem Konto und diesem Link <2>kann alle Versionen</2> dieses "
146
- "Eintrags und der Dateien bearbeiten."
715
+ "Authentifizierten Benutzer*innen den Zugriff auf zugriffsbeschränkte Dateien"
716
+ " erlauben."
147
717
 
148
- msgid "Uploaded on"
149
- msgstr "Hochgeladen am"
718
+ msgid "Allow non-authenticated users to request access to restricted files."
719
+ msgstr ""
720
+ "Nicht-Authentifizierten Benutzer*innen den Zugriff auf zugriffsbeschränkte "
721
+ "Dateien erlauben."
150
722
 
151
- msgid "Search"
152
- msgstr "Suchen"
723
+ msgid "Accept conditions"
724
+ msgstr "Bedingungen akzeptieren"
153
725
 
154
- msgid "hide subfacets"
155
- msgstr "Teilaspekte verstecken"
726
+ msgid "Advanced options"
727
+ msgstr "Erweiterte Optionen"
156
728
 
157
- msgid "show subfacets"
158
- msgstr "Teilaspekte anzeigen"
729
+ msgid "Save"
730
+ msgstr "Speichern"
159
731
 
160
- msgid "Search guide"
161
- msgstr "Suchanleitung"
732
+ msgid "No user has access to this record yet."
733
+ msgstr "Noch kein*e Benutzer*in hat Zugriff auf diesen Eintrag."
162
734
 
163
- msgid "filters"
164
- msgstr "Filter"
735
+ msgid "People with access"
736
+ msgstr "Personen mit Zugriff"
165
737
 
166
- msgid "Versions"
167
- msgstr "Versionen"
738
+ msgid "No group has access to this record yet."
739
+ msgstr "Bisher hat keine Gruppe Zugriff auf diesen Eintrag."
168
740
 
169
- msgid "View all versions"
170
- msgstr "Alle Versionen ansehen"
741
+ msgid "Groups with access"
742
+ msgstr "Gruppen mit Zugriff"
171
743
 
172
- msgid "result(s) found"
173
- msgstr "Ergebnis(e) gefunden"
744
+ msgid "You"
745
+ msgstr "Sie"
174
746
 
175
- msgid "Sort by"
176
- msgstr "Sortieren nach"
747
+ msgid "Add people"
748
+ msgstr "Personen hinzufügen"
177
749
 
178
- msgid "results per page"
179
- msgstr "Ergebnisse pro Seite"
750
+ msgid "No selected users"
751
+ msgstr "Keine ausgewählten Personen"
180
752
 
181
- msgid "No community type"
182
- msgstr "Kein Community Typ"
753
+ msgid ""
754
+ "Search for users to grant access (only users with a public profile can be "
755
+ "invited)"
756
+ msgstr ""
757
+ "Suche nach Personen, denen Zugriff gewährt werden soll (nur Personen mit "
758
+ "einem öffentlichen Profil können eingeladen werden)"
183
759
 
184
- msgid "View"
185
- msgstr "Ansicht"
760
+ msgid "Search by email, full name or username"
761
+ msgstr "Suche anhand von E-Mail, vollständigem Namen oder Kontonamen"
186
762
 
187
- msgid "Search communities..."
188
- msgstr "Communities durchsuchen..."
763
+ msgid "users"
764
+ msgstr "Benutzer*innen"
189
765
 
190
- msgid "New community"
191
- msgstr "Neue Community"
766
+ msgid "Add groups"
767
+ msgstr "Gruppen hinzufügen"
192
768
 
193
- msgid "opened {{difference}} by {{user}}"
194
- msgstr "{{difference}} geöffnet von {{user}}"
769
+ msgid "Group"
770
+ msgstr "Gruppe"
195
771
 
196
- msgid "Get started!"
197
- msgstr "Los geht's!"
772
+ msgid "No selected groups"
773
+ msgstr "Keine ausgewählten Gruppen"
198
774
 
199
- msgid "Open"
200
- msgstr "Offen"
775
+ msgid "Search for groups"
776
+ msgstr "Suche nach Gruppen"
201
777
 
202
- msgid "Closed"
203
- msgstr "Geschlossen"
778
+ msgid "groups"
779
+ msgstr "Gruppen"
204
780
 
205
- msgid "Search requests..."
206
- msgstr "Anfragen durchsuchen..."
781
+ msgid "Add"
782
+ msgstr "Hinzufügen"
207
783
 
208
- msgid "All done!"
209
- msgstr "Komplett fertig!"
784
+ msgid "Notify people"
785
+ msgstr "User Benachrichtigen"
210
786
 
211
- msgid "You've caught up with all open requests."
212
- msgstr "Sie haben alle offenen Anfragen gesehen."
787
+ msgid "Notification message"
788
+ msgstr "Benachrichtigungs-Nachricht"
213
789
 
214
- msgid "Delete"
215
- msgstr "Löschen"
790
+ msgid "You are about to add"
791
+ msgstr "Sie sind dabei, Folgendes hinzuzufügen"
216
792
 
217
- msgid "Are you sure you want to delete this draft?"
218
- msgstr "Sind Sie sicher, dass Sie diesen Entwurf löschen möchten?"
793
+ msgid "Access already granted"
794
+ msgstr "Zugriff bereits gewährt"
219
795
 
220
- msgid "Cancel"
221
- msgstr "Abbrechen"
796
+ msgid "Can manage"
797
+ msgstr "Kann verwalten"
222
798
 
223
- msgid "No creation date found."
224
- msgstr "Kein Erstellungsdatum gefunden."
799
+ msgid ""
800
+ "Can manage access, edit drafts and view restricted files of all versions of "
801
+ "this record."
802
+ msgstr ""
803
+ "Kann Zugriffsrechte verwalten, Entwürfe bearbeiten und eingeschränkte "
804
+ "Dateien aller Versionen dieses Eintrags einsehen."
225
805
 
226
- msgid "No description"
227
- msgstr "Keine Beschreibung"
806
+ msgid "You don't have permissions to share this record."
807
+ msgstr "Sie haben nicht die Berechtigung diesen Eintrag zu teilen."
228
808
 
229
- msgid "No publication date found."
230
- msgstr "Kein Veröffentlichungsdatum gefunden."
809
+ msgid "Share"
810
+ msgstr "Teilen"
231
811
 
232
- msgid "No resource type"
233
- msgstr "Kein Ressource-Typ"
812
+ msgid "People"
813
+ msgstr "Personen"
234
814
 
235
- msgid "No title"
236
- msgstr "Ohne Titel"
815
+ msgid "Groups"
816
+ msgstr "Gruppen"
237
817
 
238
- msgid "Make your first upload!"
239
- msgstr "Machen Sie Ihren ersten Eintrag!"
818
+ msgid "Settings"
819
+ msgstr "Einstellungen"
240
820
 
241
- msgid "New upload"
242
- msgstr "Neuer Eintrag"
821
+ msgid "Share access"
822
+ msgstr "Zugriff teilen"
243
823
 
244
- msgid "Search uploads..."
245
- msgstr "Einträge suchen..."
824
+ msgid "Link expiration"
825
+ msgstr "Linkablaufdatum"
246
826
 
247
- msgid "ORCID profile"
248
- msgstr "ORCID Profil"
827
+ msgid "In 1 month"
828
+ msgstr "In einem Monat"
249
829
 
250
- msgid "ROR profile"
251
- msgstr "ROR Profil"
830
+ msgid "In 2 months"
831
+ msgstr "In zwei Monaten"
252
832
 
253
- msgid "No communities found!"
254
- msgstr "Keine Communities gefunden!"
833
+ msgid "In 6 months"
834
+ msgstr "In sechs Monaten"
255
835
 
256
- msgid "No requests found!"
257
- msgstr "Keine Anfragen gefunden!"
836
+ msgid "In 1 year"
837
+ msgstr "In einem Jahr"
258
838
 
259
- msgid "Copied"
260
- msgstr "Kopiert"
839
+ msgid "Invalid date format."
840
+ msgstr "Ungültiges Datumsformat."
261
841
 
262
- msgid "Reset search"
263
- msgstr "Suche zurücksetzen"
842
+ msgid "Access link expiration date cannot be in the past."
843
+ msgstr ""
844
+ "Das Ablaufdatum des Zugriffs-Links darf nicht in der Vergangenheit liegen."
264
845
 
265
- msgid "Help"
266
- msgstr "Hilfe"
846
+ msgid "Access request"
847
+ msgstr "Zugriffsanfrage"
267
848
 
268
- msgid "Clear selection"
269
- msgstr "Auswahl löschen"
849
+ msgid "Unable to change the expiration request settings."
850
+ msgstr "Es ist nicht möglich, die Ablaufzeit der Zugriffsanfrage zu ändern."
270
851
 
271
- msgid "Clear"
272
- msgstr "Löschen"
852
+ msgid "Expiration date: "
853
+ msgstr "Ablaufdatum: "
273
854
 
274
- msgid "We couldn't find any matches for "
275
- msgstr "Wir konnten keine Treffer finden für"
855
+ msgid ""
856
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
857
+ "empty to set no expiration limit."
858
+ msgstr ""
859
+ "Format: YYYY-MM-DD. Der Zugriff wird am angegebenen Datum ablaufen. Lassen "
860
+ "Sie das Feld leer, um keine Ablaufzeit festzulegen."
861
+
862
+ msgid "Link expiration date:"
863
+ msgstr "Ablaufdatum des Links:"
276
864
 
277
- msgid "your search"
278
- msgstr "Ihre Suche"
865
+ msgid "We couldn't find any matches for {{- search}}"
866
+ msgstr "Wir konnten keine Treffer für {{- search}} finden"
279
867
 
280
868
  msgid "Start over"
281
869
  msgstr "Neu beginnen"
282
870
 
283
871
  msgid "ProTip"
284
- msgstr "ProTip"
872
+ msgstr "ProTipp"
285
873
 
286
- msgid "will give you all the publications from 2017 until today"
287
- msgstr "findet alle Veröffentlichungen von 2017 bis heute"
874
+ msgid "Search guide"
875
+ msgstr "Suchanleitung"
288
876
 
289
- msgid "For more tips, check out our "
290
- msgstr "Weitere Tipps finden Sie in unserem "
877
+ msgid ""
878
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
879
+ "search queries.</0>"
880
+ msgstr ""
881
+ "<0>Weitere Tipps finden Sie in unserer <2>Suchanleitung</2> für erweiterte "
882
+ "Suchanfragen.</0>"
291
883
 
292
- msgid "search guide"
293
- msgstr "Suchanleitung"
884
+ msgid "Search in my communities..."
885
+ msgstr "Suche in meinen Communitys"
886
+
887
+ msgid "View"
888
+ msgstr "Ansicht"
889
+
890
+ msgid "Published in: {{publishedIn}}"
891
+ msgstr "Veröffentlicht in: {{publishedIn}}"
892
+
893
+ msgid "In review"
894
+ msgstr "In Begutachtung"
895
+
896
+ msgid "Declined"
897
+ msgstr "Abgelehnt"
898
+
899
+ msgid "Expired"
900
+ msgstr "Abgelaufen"
901
+
902
+ msgid "Draft"
903
+ msgstr "Entwurf"
904
+
905
+ msgid "New version draft"
906
+ msgstr "Entwurf einer neuen Version"
907
+
908
+ msgid "open"
909
+ msgstr "Offen"
910
+
911
+ msgid "Open"
912
+ msgstr "Offen"
913
+
914
+ msgid "unlock"
915
+ msgstr "entsperren"
916
+
917
+ msgid "Get started!"
918
+ msgstr "Los!"
294
919
 
295
- msgid " for defining advanced search queries"
296
- msgstr "zur Definition erweiterter Suchanfragen"
920
+ msgid "Make your first upload!"
921
+ msgstr "Erstellen Sie Ihren ersten Eintrag!"
922
+
923
+ msgid "New upload"
924
+ msgstr "Neuer Eintrag"
925
+
926
+ msgid "Search in my uploads..."
927
+ msgstr "Suche in meinen Uploads..."
928
+
929
+ msgid "ORCID profile"
930
+ msgstr "ORCID Profil"
931
+
932
+ msgid "ORCID logo"
933
+ msgstr "ORCID-Logo"
934
+
935
+ msgid "ROR profile"
936
+ msgstr "ROR Profil"
937
+
938
+ msgid "ROR logo"
939
+ msgstr "ROR-Logo"
940
+
941
+ msgid "GND profile"
942
+ msgstr "GND Profil"
943
+
944
+ msgid "GND logo"
945
+ msgstr "GND-Logo"
946
+
947
+ msgid "No name"
948
+ msgstr "Kein Name"
949
+
950
+ msgid "and {{count}} other"
951
+ msgid_plural "and {{count}} other"
952
+ msgstr[0] "und {{count}} andere"
953
+ msgstr[1] "und {{count}} anderer"
954
+
955
+ msgid "and {{count}} others"
956
+ msgid_plural "and {{count}} others"
957
+ msgstr[0] "und {{count}} andere"
958
+ msgstr[1] "und {{count}} anderer"
959
+
960
+ msgctxt ""
961
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
962
+ "until today.</0>"
963
+ msgid "<0><0>metadata.publication"
964
+ msgstr ""
965
+ "<0><0>metadata.publication_date:[2017-01-01 TO *] </0>liefert als Ergebnis "
966
+ "alle Publikationen von 2017 bis heute zurück.</0>"