invenio-app-rdm 5.0.0.dev0__py2.py3-none-any.whl → 14.0.0b4.dev4__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (540) hide show
  1. invenio_app_rdm/__init__.py +13 -4
  2. invenio_app_rdm/administration/__init__.py +8 -0
  3. invenio_app_rdm/administration/audit_logs/__init__.py +12 -0
  4. invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
  5. invenio_app_rdm/administration/domains/__init__.py +22 -0
  6. invenio_app_rdm/administration/domains/domains.py +159 -0
  7. invenio_app_rdm/administration/moderation/__init__.py +11 -0
  8. invenio_app_rdm/administration/moderation/requests.py +175 -0
  9. invenio_app_rdm/administration/records/__init__.py +15 -0
  10. invenio_app_rdm/administration/records/records.py +163 -0
  11. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
  12. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
  13. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
  14. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
  15. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
  16. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +93 -0
  17. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
  18. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
  19. invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
  20. invenio_app_rdm/administration/user_moderation/__init__.py +11 -0
  21. invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
  22. invenio_app_rdm/administration/users/__init__.py +12 -0
  23. invenio_app_rdm/administration/users/users.py +130 -0
  24. invenio_app_rdm/administration/views/__init__.py +11 -0
  25. invenio_app_rdm/administration/views/ui.py +21 -0
  26. invenio_app_rdm/cli.py +95 -0
  27. invenio_app_rdm/communities_ui/__init__.py +9 -0
  28. invenio_app_rdm/communities_ui/searchapp.py +27 -0
  29. invenio_app_rdm/communities_ui/sitemap.py +63 -0
  30. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
  31. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
  32. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
  33. invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html +24 -0
  34. invenio_app_rdm/communities_ui/views/__init__.py +13 -0
  35. invenio_app_rdm/communities_ui/views/communities.py +206 -0
  36. invenio_app_rdm/communities_ui/views/ui.py +93 -0
  37. invenio_app_rdm/config.py +1167 -100
  38. invenio_app_rdm/ext.py +157 -0
  39. invenio_app_rdm/fixtures/__init__.py +56 -0
  40. invenio_app_rdm/fixtures/data/oai_sets.yaml +6 -0
  41. invenio_app_rdm/fixtures/oai_sets.py +20 -0
  42. invenio_app_rdm/fixtures/pages/.gitkeep +1 -0
  43. invenio_app_rdm/fixtures/pages.py +76 -0
  44. invenio_app_rdm/records_ui/previewer/__init__.py +9 -0
  45. invenio_app_rdm/records_ui/previewer/iiif_simple.py +51 -0
  46. invenio_app_rdm/records_ui/searchapp.py +70 -0
  47. invenio_app_rdm/records_ui/sitemap.py +44 -0
  48. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +64 -15
  49. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +417 -172
  50. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
  51. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +7 -9
  52. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
  53. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +51 -0
  54. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +13 -2
  55. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +330 -22
  56. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +5 -23
  57. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
  58. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
  59. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +34 -0
  60. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +36 -0
  61. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +34 -0
  62. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
  63. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +20 -0
  64. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +78 -0
  65. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
  66. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +42 -0
  67. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +16 -0
  68. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
  69. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +26 -0
  70. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar.html +4 -45
  71. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +112 -90
  72. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +37 -7
  73. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
  74. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +9 -8
  75. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
  76. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +98 -39
  77. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +280 -43
  78. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
  79. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +176 -71
  80. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
  81. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html +21 -0
  82. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
  83. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
  84. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html +3 -89
  85. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
  86. invenio_app_rdm/records_ui/utils.py +127 -2
  87. invenio_app_rdm/records_ui/views/__init__.py +123 -38
  88. invenio_app_rdm/records_ui/views/decorators.py +414 -120
  89. invenio_app_rdm/records_ui/views/deposits.py +569 -75
  90. invenio_app_rdm/records_ui/views/filters.py +125 -34
  91. invenio_app_rdm/records_ui/views/records.py +425 -76
  92. invenio_app_rdm/redirector/__init__.py +8 -0
  93. invenio_app_rdm/redirector/resource.py +106 -0
  94. invenio_app_rdm/redirector/views.py +18 -0
  95. invenio_app_rdm/requests_ui/__init__.py +9 -0
  96. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
  97. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
  98. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
  99. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
  100. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
  101. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
  102. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +78 -0
  103. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
  104. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
  105. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
  106. invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
  107. invenio_app_rdm/requests_ui/views/__init__.py +13 -0
  108. invenio_app_rdm/requests_ui/views/requests.py +374 -0
  109. invenio_app_rdm/requests_ui/views/ui.py +72 -0
  110. invenio_app_rdm/tasks.py +45 -0
  111. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
  112. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
  113. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
  114. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
  115. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
  116. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
  117. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
  118. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
  119. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
  120. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
  121. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
  122. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
  123. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
  124. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
  125. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
  126. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
  127. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
  128. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
  129. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
  130. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
  131. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
  132. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
  133. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
  134. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
  135. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
  136. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
  137. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
  138. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
  139. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
  140. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
  141. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
  142. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
  143. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
  144. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +79 -0
  145. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
  146. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
  147. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
  148. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
  149. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
  150. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js +0 -0
  151. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
  152. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
  153. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
  154. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
  155. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
  156. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
  157. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
  158. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
  159. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
  160. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
  161. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
  162. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
  163. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
  164. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +84 -0
  165. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
  166. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
  167. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
  168. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
  169. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
  170. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +142 -0
  171. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
  172. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
  173. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
  174. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
  175. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
  176. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
  177. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +189 -0
  178. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +795 -440
  179. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
  180. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
  181. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +27 -11
  182. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
  183. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
  184. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
  185. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +179 -0
  186. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
  187. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +36 -15
  188. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
  189. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
  190. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
  191. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
  192. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
  193. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
  194. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +162 -0
  195. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
  196. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
  197. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
  198. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
  199. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
  200. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
  201. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +123 -42
  202. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +153 -78
  203. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
  204. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
  205. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +111 -0
  206. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
  207. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +236 -0
  208. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
  209. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -0
  210. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
  211. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
  212. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
  213. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
  214. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
  215. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareButton.js +62 -0
  216. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -0
  217. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
  218. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
  219. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +102 -28
  220. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
  221. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
  222. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
  223. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -0
  224. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
  225. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
  226. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
  227. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
  228. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +181 -226
  229. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +50 -16
  230. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
  231. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +164 -0
  232. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
  233. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
  234. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
  235. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
  236. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
  237. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
  238. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +130 -0
  239. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
  240. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +54 -0
  241. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +74 -0
  242. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
  243. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
  244. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
  245. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +113 -14
  246. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
  247. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
  248. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
  249. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -10
  250. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -4
  251. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
  252. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
  253. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +112 -4
  254. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
  255. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +127 -4
  256. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
  257. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
  258. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
  259. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
  260. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
  261. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
  262. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
  263. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
  264. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
  265. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
  266. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
  267. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +73 -27
  268. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
  269. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +86 -4
  270. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
  271. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
  272. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
  273. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +560 -4
  274. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
  275. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
  276. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
  277. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
  278. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
  279. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
  280. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +10 -0
  281. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
  282. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
  283. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
  284. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
  285. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.overrides +3 -0
  286. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +6 -0
  287. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
  288. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
  289. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
  290. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
  291. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
  292. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
  293. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
  294. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +175 -0
  295. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
  296. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +37 -0
  297. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
  298. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +951 -0
  299. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
  300. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
  301. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
  302. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
  303. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
  304. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
  305. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
  306. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
  307. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
  308. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +966 -0
  309. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +283 -0
  310. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +898 -0
  311. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +283 -0
  312. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1009 -0
  313. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +316 -0
  314. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
  315. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
  316. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
  317. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
  318. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
  319. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
  320. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
  321. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
  322. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
  323. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
  324. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
  325. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
  326. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +20 -0
  327. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
  328. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
  329. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
  330. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
  331. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
  332. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
  333. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
  334. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
  335. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +907 -0
  336. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
  337. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
  338. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
  339. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
  340. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
  341. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
  342. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
  343. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
  344. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
  345. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
  346. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
  347. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
  348. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
  349. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
  350. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
  351. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
  352. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
  353. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
  354. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
  355. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
  356. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
  357. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
  358. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
  359. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +18 -0
  360. invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +1009 -0
  361. invenio_app_rdm/theme/static/icons/licenses/cc-by-icon.svg +52 -0
  362. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-eu-icon.svg +44 -0
  363. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-icon.svg +67 -0
  364. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-eu-icon.svg +57 -0
  365. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-icon.svg +93 -0
  366. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-eu-icon.svg +55 -0
  367. invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-icon.svg +55 -0
  368. invenio_app_rdm/theme/static/icons/licenses/cc-by-nd-icon.svg +75 -0
  369. invenio_app_rdm/theme/static/icons/licenses/cc-by-sa-icon.svg +72 -0
  370. invenio_app_rdm/theme/static/icons/licenses/cc-cc0-icon.svg +29 -0
  371. invenio_app_rdm/theme/static/icons/licenses/cc-pddc-icon.svg +25 -0
  372. invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
  373. invenio_app_rdm/theme/static/images/ror-icon.svg +14 -0
  374. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
  375. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
  376. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
  377. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -78
  378. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +41 -176
  379. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +122 -65
  380. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +18 -14
  381. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +130 -38
  382. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +5 -4
  383. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +13 -8
  384. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
  385. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html +197 -0
  386. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
  387. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
  388. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
  389. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +98 -0
  390. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
  391. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
  392. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
  393. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
  394. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
  395. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +63 -0
  396. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
  397. invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
  398. invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
  399. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/latest_record.html +18 -0
  400. invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -0
  401. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
  402. invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
  403. invenio_app_rdm/theme/views.py +108 -26
  404. invenio_app_rdm/theme/webpack.py +76 -32
  405. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
  406. invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
  407. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
  408. invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
  409. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
  410. invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
  411. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
  412. invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
  413. invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
  414. invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
  415. invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
  416. invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1410 -0
  417. invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
  418. invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +1364 -0
  419. invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
  420. invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
  421. invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
  422. invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
  423. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
  424. invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
  425. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
  426. invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
  427. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
  428. invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
  429. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
  430. invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
  431. invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
  432. invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
  433. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
  434. invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
  435. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
  436. invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
  437. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
  438. invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
  439. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
  440. invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +1361 -0
  441. invenio_app_rdm/translations/messages.pot +1371 -51
  442. invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
  443. invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
  444. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
  445. invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
  446. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
  447. invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
  448. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
  449. invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
  450. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
  451. invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
  452. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
  453. invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
  454. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
  455. invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
  456. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
  457. invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
  458. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
  459. invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
  460. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  461. invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
  462. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  463. invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
  464. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
  465. invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
  466. invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
  467. invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
  468. invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
  469. invenio_app_rdm/upgrade_scripts/migrate_13_0_to_14_0.py +268 -0
  470. invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
  471. invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +26 -10
  472. invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +395 -0
  473. invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +161 -0
  474. invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +153 -0
  475. invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
  476. invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
  477. invenio_app_rdm/users/schemas.py +27 -0
  478. invenio_app_rdm/users_ui/__init__.py +9 -0
  479. invenio_app_rdm/users_ui/searchapp.py +53 -0
  480. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
  481. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
  482. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
  483. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
  484. invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
  485. invenio_app_rdm/users_ui/views/__init__.py +14 -0
  486. invenio_app_rdm/users_ui/views/dashboard.py +59 -0
  487. invenio_app_rdm/users_ui/views/ui.py +68 -0
  488. invenio_app_rdm/utils/files.py +120 -0
  489. invenio_app_rdm/views.py +21 -0
  490. invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
  491. invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
  492. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
  493. invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
  494. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contributors.html +0 -32
  495. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creators.html +0 -30
  496. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/licenses.html +0 -35
  497. invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search_deposit.html +0 -103
  498. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareButton.js +0 -43
  499. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -188
  500. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/components.js +0 -361
  501. invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/index.js +0 -41
  502. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -126
  503. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
  504. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -83
  505. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -95
  506. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -212
  507. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -216
  508. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -41
  509. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -420
  510. invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -41
  511. invenio_app_rdm/theme/static/images/logo-bnl.png +0 -0
  512. invenio_app_rdm/theme/static/images/logo-caltechlibrary.png +0 -0
  513. invenio_app_rdm/theme/static/images/logo-cd2h.png +0 -0
  514. invenio_app_rdm/theme/static/images/logo-cern.png +0 -0
  515. invenio_app_rdm/theme/static/images/logo-cottagelabs.png +0 -0
  516. invenio_app_rdm/theme/static/images/logo-data-futures.png +0 -0
  517. invenio_app_rdm/theme/static/images/logo-eko-konnect.png +0 -0
  518. invenio_app_rdm/theme/static/images/logo-geo.svg +0 -1337
  519. invenio_app_rdm/theme/static/images/logo-hzdr.png +0 -0
  520. invenio_app_rdm/theme/static/images/logo-infn.svg +0 -28
  521. invenio_app_rdm/theme/static/images/logo-jrc.svg +0 -1905
  522. invenio_app_rdm/theme/static/images/logo-northwestern-university.png +0 -0
  523. invenio_app_rdm/theme/static/images/logo-openaire.png +0 -0
  524. invenio_app_rdm/theme/static/images/logo-tind.png +0 -0
  525. invenio_app_rdm/theme/static/images/logo-tu-graz.svg +0 -25
  526. invenio_app_rdm/theme/static/images/logo-tu-wien.svg +0 -23
  527. invenio_app_rdm/theme/static/images/logo-tubitak.svg +0 -49
  528. invenio_app_rdm/theme/static/images/logo-uni-hamburg.png +0 -0
  529. invenio_app_rdm/theme/static/images/logo-uni-munster.png +0 -0
  530. invenio_app_rdm/theme/static/images/logo-wacren.png +0 -0
  531. invenio_app_rdm/translations/en/LC_MESSAGES/messages.mo +0 -0
  532. invenio_app_rdm/translations/en/LC_MESSAGES/messages.po +0 -29
  533. invenio_app_rdm/version.py +0 -23
  534. invenio_app_rdm-5.0.0.dev0.dist-info/AUTHORS.rst +0 -11
  535. invenio_app_rdm-5.0.0.dev0.dist-info/METADATA +0 -75
  536. invenio_app_rdm-5.0.0.dev0.dist-info/RECORD +0 -138
  537. invenio_app_rdm-5.0.0.dev0.dist-info/entry_points.txt +0 -13
  538. /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
  539. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
  540. {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,952 @@
1
+ #
2
+ # Translators:
3
+ # Tibor Simko <tibor.simko@cern.ch>, 2021
4
+ # Dorottya Szemigán, 2024
5
+ # Júlia Babos, 2025
6
+ # Dora Szauter, 2025
7
+ # Andrea Dömötör, 2025
8
+ # j k, 2025
9
+ # Zoltán Kanász-Nagy, 2025
10
+ #
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: i18next-conv\n"
14
+ "POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
15
+ "PO-Revision-Date: 2021-07-14 16:07+0000\n"
16
+ "Last-Translator: Zoltán Kanász-Nagy, 2025\n"
17
+ "Language-Team: Hungarian (https://app.transifex.com/inveniosoftware/teams/23537/hu/)\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: hu\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+ "mime-version: 1.0\n"
23
+
24
+ msgid "Basic information"
25
+ msgstr "Alapvető információ"
26
+
27
+ msgid "Impersonate user"
28
+ msgstr "Felhasználó azonosítása"
29
+
30
+ msgid "Impersonate"
31
+ msgstr "Azonosít"
32
+
33
+ msgid "You must accept this."
34
+ msgstr "El kell fogadnia ezt."
35
+
36
+ msgid "Success"
37
+ msgstr "Siker"
38
+
39
+ msgid ""
40
+ "User impersonated succesfully! You will be redirected in frontpage soon."
41
+ msgstr ""
42
+ "Felhasználó sikeres azonosítása! Hamarosan visszairányítjuk a főoldalra."
43
+
44
+ msgid "Unable to impersonate user."
45
+ msgstr "A felhasználó azonosítása sikertelen."
46
+
47
+ msgid ""
48
+ "Please read carefully and confirm the following statements before you "
49
+ "proceed."
50
+ msgstr ""
51
+ "Mielőtt továbblépne, kérjük, olvassa el figyelmesen és hagyja jóvá a "
52
+ "következő pontokat."
53
+
54
+ msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
55
+ msgstr ""
56
+ "A <bold>{{email}}(id: {{id}})</bold> felhasználó azonosítása következik."
57
+
58
+ msgid "You <bold>MUST</bold> logout after completing your inquiry."
59
+ msgstr "A lekérdezés befejezése után ki <bold>KELL</bold> jelentkeznie."
60
+
61
+ msgid "Close"
62
+ msgstr "Bezárás"
63
+
64
+ msgid "Set Quota"
65
+ msgstr "Kvóta beállítása"
66
+
67
+ msgid "Set quota in bytes"
68
+ msgstr "Kvóta beállítása byte-ban"
69
+
70
+ msgid "Note"
71
+ msgstr "Jegyzet"
72
+
73
+ msgid ""
74
+ "This is the default quota that will be applied to any NEW records created by"
75
+ " this user – it will NOT update quota of existing records."
76
+ msgstr ""
77
+ "Ez az alapértelmezett kvóta, amely az adott felhasználó által létrehozott "
78
+ "minden ÚJ rekordra vonatkozik - a meglévő rekordok kvótáját NEM frissíti."
79
+
80
+ msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
81
+ msgstr " {{id}} kvótája {{quota}} {{unit}}-ra módosult."
82
+
83
+ msgid "Unable to set quota."
84
+ msgstr "Kvóta beállítása sikertelen."
85
+
86
+ msgid "Quota size ({{unit}})"
87
+ msgstr "A kvóta mérete ({{unit}})"
88
+
89
+ msgid "Enter quota size..."
90
+ msgstr "Adja meg a kvóta méretét..."
91
+
92
+ msgid "Max file size ({{unit}})"
93
+ msgstr "Maximális fájlméret ({{unit}})"
94
+
95
+ msgid "Enter max file size..."
96
+ msgstr "Adja meg a maximális fájlméretet..."
97
+
98
+ msgid "Ticket 1234"
99
+ msgstr "1234-es jegy"
100
+
101
+ msgid "Set quota"
102
+ msgstr "Kvóta beállítása"
103
+
104
+ msgid "Domain"
105
+ msgstr "Domain"
106
+
107
+ msgid "Flagged"
108
+ msgstr "Megjelölve"
109
+
110
+ msgid "Organization"
111
+ msgstr "Szervezet"
112
+
113
+ msgid "Company"
114
+ msgstr "Szervezet"
115
+
116
+ msgid "Mail provider"
117
+ msgstr "E-mail szolgáltató"
118
+
119
+ msgid "Spammer"
120
+ msgstr "Spamküldő"
121
+
122
+ msgid "TLD"
123
+ msgstr "TLD"
124
+
125
+ msgid "Status"
126
+ msgstr "Állapot"
127
+
128
+ msgid "New"
129
+ msgstr "Új"
130
+
131
+ msgid "Moderated"
132
+ msgstr "Moderálva"
133
+
134
+ msgid "Verified"
135
+ msgstr "Ellenőrizve"
136
+
137
+ msgid "Blocked"
138
+ msgstr "Letiltva"
139
+
140
+ msgid "Users"
141
+ msgstr "Felhasználók"
142
+
143
+ msgid "Active"
144
+ msgstr "Aktív"
145
+
146
+ msgid "Inactive"
147
+ msgstr "Inaktív"
148
+
149
+ msgid "Confirmed"
150
+ msgstr "Megerősítve"
151
+
152
+ msgid "Links"
153
+ msgstr "Linkek"
154
+
155
+ msgid "Set quota for record {{recordId}}"
156
+ msgstr "Kvóta beállítása a rekordhoz {{recordId}}"
157
+
158
+ msgid "Delete record"
159
+ msgstr "Rekord törlése"
160
+
161
+ msgid "Restore record"
162
+ msgstr "Rekord visszaállítása"
163
+
164
+ msgid "Unavailability statement"
165
+ msgstr "Elérhetetlenségi nyilatkozat"
166
+
167
+ msgid "Record {{id}} was restored."
168
+ msgstr "Rekord {{id}} visszaállítva."
169
+
170
+ msgid "Unable to restore."
171
+ msgstr "Nem állítható vissza."
172
+
173
+ msgid "Are you sure you want to restore #{{id}}"
174
+ msgstr "Biztosan vissza akarja állítani a/az #{{id}}-t?"
175
+
176
+ msgid "Published"
177
+ msgstr "Publikálva"
178
+
179
+ msgid "Deleted"
180
+ msgstr "Törölve"
181
+
182
+ msgid "Scheduled for purge"
183
+ msgstr "Törlésre ütemezve"
184
+
185
+ msgid "Empty draft title"
186
+ msgstr "Üres vázlatcím"
187
+
188
+ msgid "version"
189
+ msgstr "verzió"
190
+
191
+ msgid "Owner"
192
+ msgstr "Tulajdonos"
193
+
194
+ msgid "Created"
195
+ msgstr "Létrehozva"
196
+
197
+ msgid "Files"
198
+ msgstr "Fájlok"
199
+
200
+ msgid "Stats"
201
+ msgstr "Statisztikák"
202
+
203
+ msgid "Record {{id}} was deleted."
204
+ msgstr "Rekord {{id}} törölve."
205
+
206
+ msgid "Unable to delete"
207
+ msgstr "Nem törölhető"
208
+
209
+ msgid "Public"
210
+ msgstr "Nyilvános"
211
+
212
+ msgid "Hidden"
213
+ msgstr "Elrejtve"
214
+
215
+ msgid ""
216
+ "The tombstone is set to hidden but your record is public. Best practice is "
217
+ "to provide a public tombstone when deactivating public records."
218
+ msgstr ""
219
+ "A rekord törölt verziója rejtett, miközben az új rekord nyilvános. Javasolt "
220
+ "a törölt verzió nyilvánossá tétele az új rekord deaktiválásakor."
221
+
222
+ msgid ""
223
+ "RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
224
+ "restricted. Please make sure no restricted information is shared in the "
225
+ "tombstone below."
226
+ msgstr ""
227
+ "INFORMÁCIÓSZIVÁRGÁS VESZÉLYE: A rekord törölt verziója nyilvános, miközben "
228
+ "az új rekord korlátozott. Kérjük, ellenőrizze, hogy a törölt rekord ne "
229
+ "tartalmazzon védett adatot."
230
+
231
+ msgid "Bibliographic citation"
232
+ msgstr "Bibliográfiai hivatkozás"
233
+
234
+ msgid ""
235
+ "Input citation text. Blank field will be filled with APA citation by "
236
+ "default."
237
+ msgstr ""
238
+ "Beviteli hivatkozás szövege. Az üres mezőt alapértelmezés szerint APA "
239
+ "hivatkozási stílussal tölti ki a rendszer."
240
+
241
+ msgid "Public note"
242
+ msgstr "Nyilvános jegyzet"
243
+
244
+ msgid "User {{name}} was approved."
245
+ msgstr "{{név}} felhasználó jóváhagyásra került."
246
+
247
+ msgid "User {{name}} is blocked."
248
+ msgstr "{{name}} felhasználó le lett tiltva."
249
+
250
+ msgid "Error"
251
+ msgstr "Hiba"
252
+
253
+ msgid "User"
254
+ msgstr "Felhasználó"
255
+
256
+ msgid "Email"
257
+ msgstr "Email"
258
+
259
+ msgid "Email domain"
260
+ msgstr "Email domain"
261
+
262
+ msgid "Actions"
263
+ msgstr "Tevékenységek"
264
+
265
+ msgid "Records"
266
+ msgstr "Rekordok"
267
+
268
+ msgid "Username"
269
+ msgstr "Felhasználónév"
270
+
271
+ msgid "GitHub"
272
+ msgstr "GitHub"
273
+
274
+ msgid "Updated"
275
+ msgstr "Frissítve"
276
+
277
+ msgid "Restore"
278
+ msgstr "Visszaállítás"
279
+
280
+ msgid "Restored"
281
+ msgstr "Visszaállítva"
282
+
283
+ msgid "Block"
284
+ msgstr "Letiltás"
285
+
286
+ msgid "Suspend"
287
+ msgstr "Felfüggesztés"
288
+
289
+ msgid "Suspended"
290
+ msgstr "Felfüggesztve"
291
+
292
+ msgid "Approve"
293
+ msgstr "Jóváhagyás"
294
+
295
+ msgid "Approved"
296
+ msgstr "Jóváhagyva"
297
+
298
+ msgid "Activate"
299
+ msgstr "Aktivál"
300
+
301
+ msgid "Activated"
302
+ msgstr "Aktiválva"
303
+
304
+ msgid "Set default quota for {{email}}"
305
+ msgstr "Alapértelmezett kvóta beállítása {{email}} számára"
306
+
307
+ msgid "Filter results"
308
+ msgstr "Találatok szűrése"
309
+
310
+ msgid "Search records in community..."
311
+ msgstr "Rekordok keresése a közösségben..."
312
+
313
+ msgid "Sort by"
314
+ msgstr "Rendezési elv"
315
+
316
+ msgid " results found"
317
+ msgid_plural " results found"
318
+ msgstr[0] "találat"
319
+ msgstr[1] "találat"
320
+
321
+ msgid "Search records..."
322
+ msgstr "Rekordok keresése..."
323
+
324
+ msgid "Search"
325
+ msgstr "Keresés"
326
+
327
+ msgid "Views"
328
+ msgstr "Megtekintések"
329
+
330
+ msgid "Downloads"
331
+ msgstr "Letöltések"
332
+
333
+ msgid "Copy to clipboard"
334
+ msgstr "Másolás a vágólapra"
335
+
336
+ msgid "Copied!"
337
+ msgstr "Másolva!"
338
+
339
+ msgid "Part of "
340
+ msgstr "Része ennek "
341
+
342
+ msgid "No creation date found."
343
+ msgstr "Létrehozási dátum nem található."
344
+
345
+ msgid "No description"
346
+ msgstr "Nincs leírás"
347
+
348
+ msgid "No publication date found."
349
+ msgstr "Publikálási dátum nem található."
350
+
351
+ msgid "No resource type"
352
+ msgstr "Nincs forrástípus"
353
+
354
+ msgid "No title"
355
+ msgstr "Nincs cím"
356
+
357
+ msgid "Uploaded on {{uploadDate}}"
358
+ msgstr "Feltöltve: {{uploadDate}}"
359
+
360
+ msgid "Published in: {{publishInfo}}"
361
+ msgstr "Publikálva: {{publishInfo}}"
362
+
363
+ msgid "{{count}} more versions exist for this record"
364
+ msgid_plural "{{count}} more versions exist for this record"
365
+ msgstr[0] "{{count}} további verzió érhető el ehhez a rekordhoz"
366
+ msgstr[1] "{{count}} további verzió érhető el ehhez a rekordhoz"
367
+
368
+ msgid "Person"
369
+ msgstr "Személy"
370
+
371
+ msgid "The record has no files."
372
+ msgstr "A rekordhoz nem tartoznak fájlok. "
373
+
374
+ msgid "Creators"
375
+ msgstr "Készítők"
376
+
377
+ msgid "Recommended information"
378
+ msgstr "Ajánlott információ"
379
+
380
+ msgid "Add contributor"
381
+ msgstr "Közreműködő hozzáadása"
382
+
383
+ msgid "Contributors"
384
+ msgstr "Közreműködők"
385
+
386
+ msgid "Edit contributor"
387
+ msgstr "Közreműködő szerkesztése"
388
+
389
+ msgid "Funding"
390
+ msgstr "Finanszírozás"
391
+
392
+ msgid "Awards/Grants"
393
+ msgstr "Díjak/Támogatások"
394
+
395
+ msgid "Alternate identifiers"
396
+ msgstr "Alternatív azonosítók"
397
+
398
+ msgid "Related works"
399
+ msgstr "Kapcsolódó munkák"
400
+
401
+ msgid "References"
402
+ msgstr "Hivatkozások"
403
+
404
+ msgid "Visibility"
405
+ msgstr "Láthatóság"
406
+
407
+ msgid "More"
408
+ msgstr "Még több"
409
+
410
+ msgid "Unable to request the access."
411
+ msgstr "Hozzáférés kérése sikertelen."
412
+
413
+ msgid "Your email address"
414
+ msgstr "Az Ön e-mail címe"
415
+
416
+ msgid "Email address"
417
+ msgstr "Email cím"
418
+
419
+ msgid "Your full name"
420
+ msgstr "Az Ön teljes neve"
421
+
422
+ msgid "Full name"
423
+ msgstr "Teljes név"
424
+
425
+ msgid "Request message"
426
+ msgstr "Üzenet kérése"
427
+
428
+ msgid ""
429
+ "I agree to that my full name and email address is shared with the owners of "
430
+ "the record"
431
+ msgstr ""
432
+ "Hozzájárulok, hogy a teljes nevemet és e-mail címemet megosszák a rekord "
433
+ "tulajdonosaival"
434
+
435
+ msgid "Request access"
436
+ msgstr "Hozzáférés kérése"
437
+
438
+ msgid "Email confirmation needed"
439
+ msgstr "E-mailes megerősítés szükséges"
440
+
441
+ msgid "We have sent you an email to verify your address."
442
+ msgstr "Küldtünk Önnek egy e-mailt, hogy ellenőrizze a címét."
443
+
444
+ msgid ""
445
+ "\n"
446
+ " Please check the email and follow the instructions to complete the access request.\n"
447
+ " "
448
+ msgstr ""
449
+ "\n"
450
+ " 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"
451
+ " "
452
+
453
+ msgid "An error occurred while fetching communities."
454
+ msgstr "A közösségek lekérdezése során hiba történt."
455
+
456
+ msgid "Communities"
457
+ msgstr "Közösségek"
458
+
459
+ msgid "View all {{count}} communities"
460
+ msgid_plural "View all {{count}} communities"
461
+ msgstr[0] "Mind a(z) {{count}} közösség megtekintése"
462
+ msgstr[1] "Mind a(z) {{count}} közösség megtekintése"
463
+
464
+ msgid "Submit to community"
465
+ msgstr "Benyújtás közösséghez"
466
+
467
+ msgid "Pending submissions"
468
+ msgstr "Függőben lévő beküldések"
469
+
470
+ msgid "Manage communities"
471
+ msgstr "Közösségek kezelése"
472
+
473
+ msgid "Community management menu dropdown"
474
+ msgstr "Közösségi menedzsment legördülő menüje"
475
+
476
+ msgid "Edit"
477
+ msgstr "Szerkesztés"
478
+
479
+ msgid "Export selection"
480
+ msgstr "Kijelölés exportálása"
481
+
482
+ msgid "Download file"
483
+ msgstr "Fájl letöltése"
484
+
485
+ msgid "Export"
486
+ msgstr "Exportálás"
487
+
488
+ msgid "Manage"
489
+ msgstr "Kezelés"
490
+
491
+ msgid "Manage record"
492
+ msgstr "Rekord kezelése"
493
+
494
+ msgid "Manage user"
495
+ msgstr "Felhasználó kezelése"
496
+
497
+ msgid "Remove branding"
498
+ msgstr "Branding eltávolítása"
499
+
500
+ msgid "{{communityTitle}} is a default branding for this record"
501
+ msgstr "A rekordhoz tartozó alapértelmezett megjelenés: {{communityTitle}}"
502
+
503
+ msgid ""
504
+ "Remove this community from appearing on top of the record details page."
505
+ msgstr "Távolítsa el ezt a közösséget a rekord adatlapjának tetejéről."
506
+
507
+ msgid "Set branding"
508
+ msgstr "Branding beállítása"
509
+
510
+ msgid "Set {{communityTitle}} as a default branding for this record"
511
+ msgstr ""
512
+ "{{communityTitle}} beállítása alapértelmezett megjelenítésként ehhez a "
513
+ "rekordhoz. "
514
+
515
+ msgid "Set this community to appear on the top of the record details page."
516
+ msgstr "Jelenítse meg ezt a közösséget a rekord adatlapjának tetején."
517
+
518
+ msgid "Pending communities"
519
+ msgstr "Függőben lévő közösségek"
520
+
521
+ msgid "Search for pending submissions to communities..."
522
+ msgstr "A közösségekhez küldött függőben lévő beadások keresése..."
523
+
524
+ msgid "An error occurred while generating the citation."
525
+ msgstr "Hiba történt az idézés generálása közben."
526
+
527
+ msgid "Style"
528
+ msgstr "Stílus"
529
+
530
+ msgid "This record is not included in any communities yet."
531
+ msgstr "Ez a rekord még nem szerepel egyetlen közösségben sem."
532
+
533
+ msgid "Search for community..."
534
+ msgstr "Közösség keresése..."
535
+
536
+ msgid "Record submitted"
537
+ msgstr "Rekord beküldve"
538
+
539
+ msgid "Review requested"
540
+ msgstr "Elbírálás kérése"
541
+
542
+ msgid "Search in all communities"
543
+ msgstr "Keresés az összes közösségben"
544
+
545
+ msgid "Search in my communities"
546
+ msgstr "Keresés a saját közösségeimben"
547
+
548
+ msgid "Select a community"
549
+ msgstr "Közösség kiválasztása"
550
+
551
+ msgid "Version {{- version}}"
552
+ msgstr "{{- version}} verzió"
553
+
554
+ msgid "Preview"
555
+ msgstr "Előnézet"
556
+
557
+ msgid "Only published versions are displayed."
558
+ msgstr "Csak a közzétett verziókat jelenítettük meg."
559
+
560
+ msgid "An error occurred while fetching the versions."
561
+ msgstr "A verziók lekérdezése során hiba történt."
562
+
563
+ msgid "View all {{count}} versions"
564
+ msgid_plural "View all {{count}} versions"
565
+ msgstr[0] "Mind a(z) {{count}} verzió megtekintése"
566
+ msgstr[1] "Mind a(z) {{count}} verzió megtekintése"
567
+
568
+ msgid ""
569
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
570
+ "<3></3>. This DOI represents all versions, and will always resolve to the "
571
+ "latest one. <5>Read more</5>.</0>"
572
+ msgstr ""
573
+ "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a "
574
+ "DOI<3></3> használatával. Ez a DOI az összes verziót tartalmazza, és mindig "
575
+ "a legutolsó verzióra fog mutatni.<5> Bővebben</5>.</0>"
576
+
577
+ msgid ""
578
+ "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
579
+ "The DOI is registered when the first version is published. <4>Read "
580
+ "more</4>.</0>"
581
+ msgstr ""
582
+ "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a DOI "
583
+ "használatával. A DOI-t az első változat közzétételekor regisztrálják. <4> "
584
+ "Bővebben</4>.</0>"
585
+
586
+ msgid "Remove"
587
+ msgstr "Eltávolítás"
588
+
589
+ msgid "Remove {{communityTitle}} from this record"
590
+ msgstr "A {{communityTitle}} törlése ebből a rekordból"
591
+
592
+ msgid "Remove community"
593
+ msgstr "Közösség eltávolítása"
594
+
595
+ msgid "Are you sure you want to remove the record from the community?"
596
+ msgstr "Biztosan el akarja távolítani a rekordot a közösségből?"
597
+
598
+ msgid "I understand the consequences:"
599
+ msgstr "Megértettem a következményeket:"
600
+
601
+ msgid ""
602
+ "The record can only be re-included in the community by going through a new "
603
+ "review by the community curators."
604
+ msgstr ""
605
+ "A rekordot csak akkor lehet újra felvenni a közösségbe, ha a közösség "
606
+ "kurátorai újból átnézik."
607
+
608
+ msgid "Something went wrong"
609
+ msgstr "Valami hiba történt."
610
+
611
+ msgid "Cancel removal"
612
+ msgstr "Eltávolítás visszavonása"
613
+
614
+ msgid "Cancel"
615
+ msgstr "Mégsem"
616
+
617
+ msgid "Confirm removal"
618
+ msgstr "Eltávolítás megerősítése"
619
+
620
+ msgid ""
621
+ "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
622
+ "their access</4> to the record."
623
+ msgstr ""
624
+ "A <1>„<1>{{communityTitle}}</1>”</1> közösség tagjai <4>elveszítik "
625
+ "hozzáférésüket</4> a rekordhoz."
626
+
627
+ msgid "Select permissions"
628
+ msgstr "Engedélyek kiválasztása"
629
+
630
+ msgid "Short name for your link (optional)."
631
+ msgstr "Rövid név a linkhez (opcionális)"
632
+
633
+ msgid "Expiration date format: YYYY-MM-DD"
634
+ msgstr "Lejárati dátum formátuma: ÉÉÉÉ-HH-NN"
635
+
636
+ msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
637
+ msgstr "Lejárati dátum: ÉÉÉÉ-HH-NN vagy üres mező esetén soha (opcionális)"
638
+
639
+ msgid "Create a new link"
640
+ msgstr "Új link létrehozása"
641
+
642
+ msgid "Link title"
643
+ msgstr "Link címe"
644
+
645
+ msgid "Expires at"
646
+ msgstr "Lejár:"
647
+
648
+ msgid "Never"
649
+ msgstr "Soha"
650
+
651
+ msgid "Access"
652
+ msgstr "Hozzáférés"
653
+
654
+ msgid "Delete"
655
+ msgstr "Törlés"
656
+
657
+ msgid "Copy link"
658
+ msgstr "Link másolása"
659
+
660
+ msgid "Can view"
661
+ msgstr "Megtekintheti"
662
+
663
+ msgid "Can view restricted files of all versions of this record."
664
+ msgstr "Megtekintheti a rekord összes verziójának korlátozott fájljait."
665
+
666
+ msgid "Can preview drafts"
667
+ msgstr "Előnézet megtekintése vázlatokból"
668
+
669
+ msgid "Can view drafts and restricted files of all versions of this record."
670
+ msgstr ""
671
+ "Megtekintheti a vázlatokat és a rekord összes verziójának korlátozott "
672
+ "fájljait."
673
+
674
+ msgid "Can edit"
675
+ msgstr "Szerkesztheti"
676
+
677
+ msgid ""
678
+ "Can edit drafts and view restricted files of all versions of this record."
679
+ msgstr ""
680
+ "Szerkesztheti a vázlatokat, és megtekintheti az összes verzió korlátozott "
681
+ "fájljait."
682
+
683
+ msgid ""
684
+ "Can view (view access link can be created only after the record is "
685
+ "published)"
686
+ msgstr ""
687
+ "Megtekintheti (a megtekintési hivatkozás csak a közzététel után hozható "
688
+ "létre)"
689
+
690
+ msgid "Expires"
691
+ msgstr "Lejár"
692
+
693
+ msgid "This record has no links generated yet."
694
+ msgstr "Ehhez a rekordhoz még nem generáltak linkeket."
695
+
696
+ msgid "Unable to change the access request settings."
697
+ msgstr "Nem lehet módosítani a hozzáférési kérelem beállításait."
698
+
699
+ msgid "Allow authenticated users to request access to restricted files."
700
+ msgstr ""
701
+ "Engedélyezi a hitelesített felhasználóknak a korlátozott fájlokhoz való "
702
+ "hozzáférés kérését."
703
+
704
+ msgid "Allow non-authenticated users to request access to restricted files."
705
+ msgstr ""
706
+ "Engedélyezi a nem hitelesített felhasználóknak a hozzáférés kérését a "
707
+ "korlátozott fájlokhoz."
708
+
709
+ msgid "Accept conditions"
710
+ msgstr "Feltételek elfogadása"
711
+
712
+ msgid "Advanced options"
713
+ msgstr "További lehetőségek"
714
+
715
+ msgid "Save"
716
+ msgstr "Mentés"
717
+
718
+ msgid "No user has access to this record yet."
719
+ msgstr "Ehhez a rekordhoz még egy felhasználónak sincs hozzáférése."
720
+
721
+ msgid "People with access"
722
+ msgstr "Hozzáféréssel rendelkező emberek"
723
+
724
+ msgid "No group has access to this record yet."
725
+ msgstr "Ehhez a rekordhoz még egy csoportnak sincs hozzáférése."
726
+
727
+ msgid "Groups with access"
728
+ msgstr "Hozzáféréssel rendelkező csoportok"
729
+
730
+ msgid "You"
731
+ msgstr "Ön"
732
+
733
+ msgid "Add people"
734
+ msgstr "Emberek hozzáadása"
735
+
736
+ msgid "No selected users"
737
+ msgstr "Nincsenek felhasználók kiválasztva"
738
+
739
+ msgid ""
740
+ "Search for users to grant access (only users with a public profile can be "
741
+ "invited)"
742
+ msgstr ""
743
+ "Felhasználók keresése hozzáférés megadásához (csak nyilvános profillal "
744
+ "rendelkező felhasználók hívhatók meg)"
745
+
746
+ msgid "Search by email, full name or username"
747
+ msgstr "Keresés email, teljes név vagy felhasználónév alapján"
748
+
749
+ msgid "users"
750
+ msgstr "felhasználók"
751
+
752
+ msgid "Add groups"
753
+ msgstr "Csoportok hozzáadása"
754
+
755
+ msgid "Group"
756
+ msgstr "Csoport"
757
+
758
+ msgid "No selected groups"
759
+ msgstr "Nincsenek kijelölt csoportok"
760
+
761
+ msgid "Search for groups"
762
+ msgstr "Csoportok keresése"
763
+
764
+ msgid "groups"
765
+ msgstr "csoportok"
766
+
767
+ msgid "Add"
768
+ msgstr "Hozzáadás"
769
+
770
+ msgid "Notify people"
771
+ msgstr "Emberek értesítése"
772
+
773
+ msgid "Notification message"
774
+ msgstr "Értesítés szövege"
775
+
776
+ msgid "You are about to add"
777
+ msgstr "Hamarosan hozzáadja"
778
+
779
+ msgid "Access already granted"
780
+ msgstr "A hozzáférés már engedélyezve van"
781
+
782
+ msgid "Can manage"
783
+ msgstr "Kezelheti"
784
+
785
+ msgid ""
786
+ "Can manage access, edit drafts and view restricted files of all versions of "
787
+ "this record."
788
+ msgstr ""
789
+ "Kezelheti a hozzáférést, szerkesztheti a vázlatokat, és megtekintheti az "
790
+ "összes verzió korlátozott fájljait."
791
+
792
+ msgid "You don't have permissions to share this record."
793
+ msgstr "Nincs jogosultsága a rekord megosztására."
794
+
795
+ msgid "Share"
796
+ msgstr "Megosztás"
797
+
798
+ msgid "People"
799
+ msgstr "Emberek"
800
+
801
+ msgid "Groups"
802
+ msgstr "Csoportok"
803
+
804
+ msgid "Settings"
805
+ msgstr "Beállítások"
806
+
807
+ msgid "Share access"
808
+ msgstr "Hozzáférés megosztása"
809
+
810
+ msgid "Link expiration"
811
+ msgstr "Hivatkozás lejárata"
812
+
813
+ msgid "In 1 month"
814
+ msgstr "1 hónap múlva"
815
+
816
+ msgid "In 2 months"
817
+ msgstr "2 hónap múlva"
818
+
819
+ msgid "In 6 months"
820
+ msgstr "6 hónap múlva"
821
+
822
+ msgid "In 1 year"
823
+ msgstr "1 év múlva"
824
+
825
+ msgid "Invalid date format."
826
+ msgstr "Érvénytelen dátumformátum."
827
+
828
+ msgid "Access link expiration date cannot be in the past."
829
+ msgstr "A hozzáférési link lejárati dátuma nem lehet múltbeli."
830
+
831
+ msgid "Access request"
832
+ msgstr "Hozzáférés igénylése"
833
+
834
+ msgid "Unable to change the expiration request settings."
835
+ msgstr "Nem sikerült módosítani a lejárati beállításokat."
836
+
837
+ msgid "Expiration date: "
838
+ msgstr "Lejárat dátuma:"
839
+
840
+ msgid ""
841
+ "Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
842
+ "empty to set no expiration limit."
843
+ msgstr ""
844
+ "Formátum: ÉÉÉÉ-HH-NN. A megadott napon a hozzáférés lejár. Hagyja üresen, ha"
845
+ " nem szeretne lejárati időt megadni."
846
+
847
+ msgid "Link expiration date:"
848
+ msgstr "Hivatkozás lejárati dátuma:"
849
+
850
+ msgid "We couldn't find any matches for {{- search}}"
851
+ msgstr "Nincs találat a következőre: {{- search}}"
852
+
853
+ msgid "Start over"
854
+ msgstr "Újrakezdés"
855
+
856
+ msgid "ProTip"
857
+ msgstr "ProTip"
858
+
859
+ msgid "Search guide"
860
+ msgstr "Keresési útmutató"
861
+
862
+ msgid ""
863
+ "<0>For more tips, check out our <2>search guide</2> for defining advanced "
864
+ "search queries.</0>"
865
+ msgstr ""
866
+ "<0>További tippekért tekintse meg a <2>keresési útmutatónkat</2> az "
867
+ "összetett keresési lekérdezések megadásához.</0>"
868
+
869
+ msgid "Search in my communities..."
870
+ msgstr "Keresés a közösségeimben..."
871
+
872
+ msgid "View"
873
+ msgstr "Megtekintés"
874
+
875
+ msgid "Published in: {{publishedIn}}"
876
+ msgstr "Publikálva: {{publishedIn}}"
877
+
878
+ msgid "In review"
879
+ msgstr "Bírálás alatt"
880
+
881
+ msgid "Declined"
882
+ msgstr "Elutasítva"
883
+
884
+ msgid "Expired"
885
+ msgstr "Lejárt"
886
+
887
+ msgid "Draft"
888
+ msgstr "Piszkozat"
889
+
890
+ msgid "New version draft"
891
+ msgstr "Piszkozat új verzióhoz"
892
+
893
+ msgid "open"
894
+ msgstr "megnyit"
895
+
896
+ msgid "Open"
897
+ msgstr "Megnyitás"
898
+
899
+ msgid "unlock"
900
+ msgstr "felold"
901
+
902
+ msgid "Get started!"
903
+ msgstr "Kezdjük!"
904
+
905
+ msgid "Make your first upload!"
906
+ msgstr "Tegye meg az első feltöltését!"
907
+
908
+ msgid "New upload"
909
+ msgstr "Új feltöltés"
910
+
911
+ msgid "Search in my uploads..."
912
+ msgstr "Keresés a feltöltéseim között..."
913
+
914
+ msgid "ORCID profile"
915
+ msgstr "ORCID profil"
916
+
917
+ msgid "ORCID logo"
918
+ msgstr "ORCID logó"
919
+
920
+ msgid "ROR profile"
921
+ msgstr "ROR profil"
922
+
923
+ msgid "ROR logo"
924
+ msgstr "ROR logó"
925
+
926
+ msgid "GND profile"
927
+ msgstr "GND profil"
928
+
929
+ msgid "GND logo"
930
+ msgstr "GND logó"
931
+
932
+ msgid "No name"
933
+ msgstr "Név nélküli"
934
+
935
+ msgid "and {{count}} other"
936
+ msgid_plural "and {{count}} other"
937
+ msgstr[0] "és további {{count}}"
938
+ msgstr[1] "és további {{count}}"
939
+
940
+ msgid "and {{count}} others"
941
+ msgid_plural "and {{count}} others"
942
+ msgstr[0] "és további {{count}}"
943
+ msgstr[1] "és további {{count}}"
944
+
945
+ msgctxt ""
946
+ "date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
947
+ "until today.</0>"
948
+ msgid "<0><0>metadata.publication"
949
+ msgstr ""
950
+ "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> lekérdezéssel 2017. "
951
+ "január 1-jétől kezdődően a mai napig bezárólag minden publikáció listázásra "
952
+ "kerül.</0>"