invenio-app-rdm 12.0.0.dev8__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +3 -2
- invenio_app_rdm/{stats/templates/events/record_view/v7 → administration}/__init__.py +1 -3
- invenio_app_rdm/{stats/templates/events/record_view → administration/audit_logs}/__init__.py +6 -4
- invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
- invenio_app_rdm/administration/domains/__init__.py +22 -0
- invenio_app_rdm/administration/domains/domains.py +159 -0
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/__init__.py +15 -0
- invenio_app_rdm/administration/records/records.py +163 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
- invenio_app_rdm/{stats/templates/aggregations/aggr_record_view/v7 → administration/user_moderation}/__init__.py +4 -3
- invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
- invenio_app_rdm/administration/users/__init__.py +12 -0
- invenio_app_rdm/administration/users/users.py +130 -0
- invenio_app_rdm/{stats/templates/events/file_download/v7 → administration/views}/__init__.py +4 -3
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +37 -14
- invenio_app_rdm/communities_ui/searchapp.py +1 -0
- invenio_app_rdm/communities_ui/sitemap.py +63 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/{details → records}/index.html +1 -1
- invenio_app_rdm/communities_ui/views/communities.py +183 -8
- invenio_app_rdm/communities_ui/views/ui.py +52 -42
- invenio_app_rdm/config.py +586 -90
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +2 -2
- invenio_app_rdm/fixtures/pages.py +34 -12
- invenio_app_rdm/records_ui/searchapp.py +43 -0
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +59 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +236 -141
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +4 -3
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +22 -20
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +290 -230
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +30 -22
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -19
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +19 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +9 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +24 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +15 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +93 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +54 -39
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +182 -93
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +152 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +126 -1
- invenio_app_rdm/records_ui/views/__init__.py +75 -17
- invenio_app_rdm/records_ui/views/decorators.py +309 -38
- invenio_app_rdm/records_ui/views/deposits.py +302 -51
- invenio_app_rdm/records_ui/views/filters.py +74 -7
- invenio_app_rdm/records_ui/views/records.py +256 -90
- invenio_app_rdm/redirector/resource.py +1 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +34 -8
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +5 -3
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
- invenio_app_rdm/requests_ui/views/requests.py +221 -42
- invenio_app_rdm/requests_ui/views/ui.py +17 -4
- invenio_app_rdm/tasks.py +6 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +8 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +51 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +61 -31
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +680 -486
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +14 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +61 -21
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +55 -51
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +87 -89
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +44 -30
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +39 -20
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +44 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +111 -62
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +99 -61
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +98 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +216 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +104 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +230 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +13 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +238 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +72 -25
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +10 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +15 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +77 -9
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +122 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +1 -11
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +27 -412
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +47 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +43 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +32 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +15 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +15 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +24 -33
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +18 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +19 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +78 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +21 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +30 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +17 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +34 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +48 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +16 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +156 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +7 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +35 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +28 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +40 -11
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +2 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +4 -2
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +20 -33
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +805 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +306 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +700 -81
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +822 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +692 -67
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +819 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +699 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +315 -2
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +811 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +747 -134
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +810 -127
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +696 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +715 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +703 -72
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +705 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +718 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +807 -125
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +714 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +809 -142
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +800 -129
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +717 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +737 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -38
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +863 -127
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +8 -8
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +12 -12
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +33 -75
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +42 -27
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +4 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +144 -113
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +11 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +15 -16
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +33 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +43 -15
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
- invenio_app_rdm/theme/views.py +80 -28
- invenio_app_rdm/theme/webpack.py +38 -7
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +975 -378
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +913 -284
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1070 -406
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +909 -274
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1018 -407
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +964 -372
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +939 -363
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1033 -376
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +989 -372
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +970 -337
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +911 -282
- invenio_app_rdm/translations/messages.pot +982 -289
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1041 -382
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1023 -371
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +917 -288
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1007 -398
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +993 -342
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +984 -353
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +940 -348
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +2 -3
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +0 -2
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +1 -1
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/searchapp.py +9 -1
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +1 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +23 -9
- invenio_app_rdm/users_ui/views/__init__.py +1 -1
- invenio_app_rdm/users_ui/views/dashboard.py +6 -1
- invenio_app_rdm/users_ui/views/ui.py +5 -28
- invenio_app_rdm/utils/files.py +1 -1
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA +552 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD +505 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/stats/__init__.py +0 -24
- invenio_app_rdm/stats/event_builders.py +0 -112
- invenio_app_rdm/stats/permissions.py +0 -33
- invenio_app_rdm/stats/templates/aggregations/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/v7/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/events/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v2/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/v7/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v1/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v2/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/v7/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -262
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/ComputerTabletRequestsItem.js +0 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/MobileRequestsItem.js +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/static/robots.txt +0 -5
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm-12.0.0.dev8.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-12.0.0.dev8.dist-info/METADATA +0 -103
- invenio_app_rdm-12.0.0.dev8.dist-info/RECORD +0 -402
- invenio_app_rdm-12.0.0.dev8.dist-info/entry_points.txt +0 -26
- /invenio_app_rdm/{translations/.gitkeep → theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js} +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -0
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
3
|
# Tibor Simko <tibor.simko@cern.ch>, 2021
|
|
4
|
-
#
|
|
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
|
|
5
10
|
#
|
|
6
11
|
msgid ""
|
|
7
12
|
msgstr ""
|
|
8
13
|
"Project-Id-Version: i18next-conv\n"
|
|
9
|
-
"POT-Creation-Date:
|
|
14
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
10
15
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
11
|
-
"Last-Translator:
|
|
12
|
-
"Language-Team: Hungarian (https://
|
|
16
|
+
"Last-Translator: Zoltán Kanász-Nagy, 2025\n"
|
|
17
|
+
"Language-Team: Hungarian (https://app.transifex.com/inveniosoftware/teams/23537/hu/)\n"
|
|
13
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
19
|
"Content-Transfer-Encoding: 8bit\n"
|
|
15
20
|
"Language: hu\n"
|
|
@@ -19,14 +24,349 @@ msgstr ""
|
|
|
19
24
|
msgid "Basic information"
|
|
20
25
|
msgstr "Alapvető információ"
|
|
21
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
|
+
|
|
22
333
|
msgid "Copy to clipboard"
|
|
23
334
|
msgstr "Másolás a vágólapra"
|
|
24
335
|
|
|
25
336
|
msgid "Copied!"
|
|
26
337
|
msgstr "Másolva!"
|
|
27
338
|
|
|
28
|
-
msgid "
|
|
29
|
-
msgstr "
|
|
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"
|
|
30
370
|
|
|
31
371
|
msgid "The record has no files."
|
|
32
372
|
msgstr "A rekordhoz nem tartoznak fájlok. "
|
|
@@ -43,29 +383,173 @@ msgstr "Közreműködő hozzáadása"
|
|
|
43
383
|
msgid "Contributors"
|
|
44
384
|
msgstr "Közreműködők"
|
|
45
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
|
+
|
|
46
395
|
msgid "Alternate identifiers"
|
|
47
396
|
msgstr "Alternatív azonosítók"
|
|
48
397
|
|
|
49
398
|
msgid "Related works"
|
|
50
399
|
msgstr "Kapcsolódó munkák"
|
|
51
400
|
|
|
401
|
+
msgid "References"
|
|
402
|
+
msgstr "Hivatkozások"
|
|
403
|
+
|
|
52
404
|
msgid "Visibility"
|
|
53
405
|
msgstr "Láthatóság"
|
|
54
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
|
+
|
|
55
476
|
msgid "Edit"
|
|
56
477
|
msgstr "Szerkesztés"
|
|
57
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
|
+
|
|
58
524
|
msgid "An error occurred while generating the citation."
|
|
59
525
|
msgstr "Hiba történt az idézés generálása közben."
|
|
60
526
|
|
|
61
|
-
msgid "Citation"
|
|
62
|
-
msgstr "Idézés"
|
|
63
|
-
|
|
64
527
|
msgid "Style"
|
|
65
528
|
msgstr "Stílus"
|
|
66
529
|
|
|
67
|
-
msgid "
|
|
68
|
-
msgstr "
|
|
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ó"
|
|
69
553
|
|
|
70
554
|
msgid "Preview"
|
|
71
555
|
msgstr "Előnézet"
|
|
@@ -73,150 +557,323 @@ msgstr "Előnézet"
|
|
|
73
557
|
msgid "Only published versions are displayed."
|
|
74
558
|
msgstr "Csak a közzétett verziókat jelenítettük meg."
|
|
75
559
|
|
|
76
|
-
msgid "
|
|
77
|
-
msgstr "
|
|
560
|
+
msgid "An error occurred while fetching the versions."
|
|
561
|
+
msgstr "A verziók lekérdezése során hiba történt."
|
|
78
562
|
|
|
79
|
-
msgid "
|
|
80
|
-
|
|
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"
|
|
81
567
|
|
|
82
|
-
msgid "
|
|
83
|
-
|
|
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"
|
|
84
659
|
|
|
85
660
|
msgid "Can view"
|
|
86
661
|
msgstr "Megtekintheti"
|
|
87
662
|
|
|
88
|
-
msgid "Can
|
|
89
|
-
msgstr "Megtekintheti
|
|
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."
|
|
90
673
|
|
|
91
674
|
msgid "Can edit"
|
|
92
675
|
msgstr "Szerkesztheti"
|
|
93
676
|
|
|
94
|
-
msgid "
|
|
95
|
-
|
|
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."
|
|
96
682
|
|
|
97
|
-
msgid "
|
|
98
|
-
|
|
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)"
|
|
99
689
|
|
|
100
|
-
msgid "
|
|
101
|
-
msgstr "
|
|
690
|
+
msgid "Expires"
|
|
691
|
+
msgstr "Lejár"
|
|
102
692
|
|
|
103
|
-
msgid "
|
|
104
|
-
msgstr "
|
|
693
|
+
msgid "This record has no links generated yet."
|
|
694
|
+
msgstr "Ehhez a rekordhoz még nem generáltak linkeket."
|
|
105
695
|
|
|
106
|
-
msgid ""
|
|
107
|
-
"
|
|
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."
|
|
108
705
|
msgstr ""
|
|
109
|
-
"
|
|
110
|
-
"
|
|
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"
|
|
111
738
|
|
|
112
739
|
msgid ""
|
|
113
|
-
"
|
|
114
|
-
"
|
|
740
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
741
|
+
"invited)"
|
|
115
742
|
msgstr ""
|
|
116
|
-
"
|
|
117
|
-
"
|
|
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)"
|
|
118
745
|
|
|
119
|
-
msgid "
|
|
120
|
-
msgstr "
|
|
746
|
+
msgid "Search by email, full name or username"
|
|
747
|
+
msgstr "Keresés email, teljes név vagy felhasználónév alapján"
|
|
121
748
|
|
|
122
|
-
msgid "
|
|
123
|
-
msgstr "
|
|
749
|
+
msgid "users"
|
|
750
|
+
msgstr "felhasználók"
|
|
124
751
|
|
|
125
|
-
msgid "
|
|
126
|
-
msgstr "
|
|
752
|
+
msgid "Add groups"
|
|
753
|
+
msgstr "Csoportok hozzáadása"
|
|
127
754
|
|
|
128
|
-
msgid "
|
|
129
|
-
msgstr "
|
|
755
|
+
msgid "Group"
|
|
756
|
+
msgstr "Csoport"
|
|
130
757
|
|
|
131
|
-
msgid "
|
|
132
|
-
msgstr "
|
|
758
|
+
msgid "No selected groups"
|
|
759
|
+
msgstr "Nincsenek kijelölt csoportok"
|
|
133
760
|
|
|
134
|
-
msgid "
|
|
135
|
-
msgstr "
|
|
761
|
+
msgid "Search for groups"
|
|
762
|
+
msgstr "Csoportok keresése"
|
|
136
763
|
|
|
137
|
-
msgid "
|
|
138
|
-
msgstr "
|
|
764
|
+
msgid "groups"
|
|
765
|
+
msgstr "csoportok"
|
|
139
766
|
|
|
140
|
-
msgid "
|
|
141
|
-
msgstr "
|
|
767
|
+
msgid "Add"
|
|
768
|
+
msgstr "Hozzáadás"
|
|
142
769
|
|
|
143
|
-
msgid "
|
|
144
|
-
msgstr "
|
|
770
|
+
msgid "Notify people"
|
|
771
|
+
msgstr "Emberek értesítése"
|
|
145
772
|
|
|
146
|
-
msgid "
|
|
147
|
-
msgstr "
|
|
773
|
+
msgid "Notification message"
|
|
774
|
+
msgstr "Értesítés szövege"
|
|
148
775
|
|
|
149
|
-
msgid "
|
|
150
|
-
msgstr "
|
|
776
|
+
msgid "You are about to add"
|
|
777
|
+
msgstr "Hamarosan hozzáadja"
|
|
151
778
|
|
|
152
|
-
msgid "
|
|
153
|
-
msgstr "
|
|
779
|
+
msgid "Access already granted"
|
|
780
|
+
msgstr "A hozzáférés már engedélyezve van"
|
|
154
781
|
|
|
155
|
-
msgid "
|
|
156
|
-
msgstr "
|
|
782
|
+
msgid "Can manage"
|
|
783
|
+
msgstr "Kezelheti"
|
|
157
784
|
|
|
158
|
-
msgid "
|
|
159
|
-
|
|
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."
|
|
160
791
|
|
|
161
|
-
msgid "
|
|
162
|
-
msgstr "
|
|
792
|
+
msgid "You don't have permissions to share this record."
|
|
793
|
+
msgstr "Nincs jogosultsága a rekord megosztására."
|
|
163
794
|
|
|
164
|
-
msgid "
|
|
165
|
-
msgstr "
|
|
795
|
+
msgid "Share"
|
|
796
|
+
msgstr "Megosztás"
|
|
166
797
|
|
|
167
|
-
msgid "
|
|
168
|
-
msgstr "
|
|
798
|
+
msgid "People"
|
|
799
|
+
msgstr "Emberek"
|
|
169
800
|
|
|
170
|
-
msgid "
|
|
171
|
-
msgstr "
|
|
801
|
+
msgid "Groups"
|
|
802
|
+
msgstr "Csoportok"
|
|
172
803
|
|
|
173
|
-
msgid "
|
|
174
|
-
msgstr "
|
|
804
|
+
msgid "Settings"
|
|
805
|
+
msgstr "Beállítások"
|
|
175
806
|
|
|
176
|
-
msgid "
|
|
177
|
-
msgstr "
|
|
807
|
+
msgid "Share access"
|
|
808
|
+
msgstr "Hozzáférés megosztása"
|
|
178
809
|
|
|
179
|
-
msgid "
|
|
180
|
-
msgstr "
|
|
810
|
+
msgid "Link expiration"
|
|
811
|
+
msgstr "Hivatkozás lejárata"
|
|
181
812
|
|
|
182
|
-
msgid "
|
|
183
|
-
msgstr "
|
|
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"
|
|
184
821
|
|
|
185
|
-
msgid "
|
|
186
|
-
msgstr "
|
|
822
|
+
msgid "In 1 year"
|
|
823
|
+
msgstr "1 év múlva"
|
|
187
824
|
|
|
188
|
-
msgid "
|
|
189
|
-
msgstr "
|
|
825
|
+
msgid "Invalid date format."
|
|
826
|
+
msgstr "Érvénytelen dátumformátum."
|
|
190
827
|
|
|
191
|
-
msgid "
|
|
192
|
-
msgstr "
|
|
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."
|
|
193
830
|
|
|
194
|
-
msgid "
|
|
195
|
-
msgstr "
|
|
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."
|
|
196
846
|
|
|
197
|
-
msgid "
|
|
198
|
-
msgstr "
|
|
847
|
+
msgid "Link expiration date:"
|
|
848
|
+
msgstr "Hivatkozás lejárati dátuma:"
|
|
199
849
|
|
|
200
|
-
msgid "
|
|
201
|
-
msgstr "
|
|
850
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
851
|
+
msgstr "Nincs találat a következőre: {{- search}}"
|
|
202
852
|
|
|
203
853
|
msgid "Start over"
|
|
204
854
|
msgstr "Újrakezdés"
|
|
205
855
|
|
|
206
856
|
msgid "ProTip"
|
|
207
|
-
msgstr "
|
|
857
|
+
msgstr "ProTip"
|
|
208
858
|
|
|
209
|
-
msgid "
|
|
210
|
-
msgstr "
|
|
859
|
+
msgid "Search guide"
|
|
860
|
+
msgstr "Keresési útmutató"
|
|
211
861
|
|
|
212
|
-
msgid "
|
|
213
|
-
|
|
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>"
|
|
214
868
|
|
|
215
|
-
msgid "
|
|
216
|
-
msgstr "
|
|
869
|
+
msgid "Search in my communities..."
|
|
870
|
+
msgstr "Keresés a közösségeimben..."
|
|
217
871
|
|
|
218
|
-
msgid "
|
|
219
|
-
msgstr "
|
|
872
|
+
msgid "View"
|
|
873
|
+
msgstr "Megtekintés"
|
|
874
|
+
|
|
875
|
+
msgid "Published in: {{publishedIn}}"
|
|
876
|
+
msgstr "Publikálva: {{publishedIn}}"
|
|
220
877
|
|
|
221
878
|
msgid "In review"
|
|
222
879
|
msgstr "Bírálás alatt"
|
|
@@ -228,58 +885,68 @@ msgid "Expired"
|
|
|
228
885
|
msgstr "Lejárt"
|
|
229
886
|
|
|
230
887
|
msgid "Draft"
|
|
231
|
-
msgstr "
|
|
888
|
+
msgstr "Piszkozat"
|
|
232
889
|
|
|
233
890
|
msgid "New version draft"
|
|
234
891
|
msgstr "Piszkozat új verzióhoz"
|
|
235
892
|
|
|
236
|
-
msgid "
|
|
237
|
-
msgstr "
|
|
893
|
+
msgid "open"
|
|
894
|
+
msgstr "megnyit"
|
|
238
895
|
|
|
239
|
-
msgid "
|
|
240
|
-
msgstr ""
|
|
241
|
-
"Nem jött létre link. Új link létrehozásához kattintson a \"Linket kérek\" "
|
|
242
|
-
"gombra! "
|
|
896
|
+
msgid "Open"
|
|
897
|
+
msgstr "Megnyitás"
|
|
243
898
|
|
|
244
|
-
msgid ""
|
|
245
|
-
|
|
246
|
-
"record & files."
|
|
247
|
-
msgstr ""
|
|
248
|
-
"Ezzel a linkkel minden regisztrált felhasználó <1>szerkesztheti az összes "
|
|
249
|
-
"verziót </1>ennél a rekordnál és a fájloknál."
|
|
899
|
+
msgid "unlock"
|
|
900
|
+
msgstr "felold"
|
|
250
901
|
|
|
251
|
-
msgid "
|
|
252
|
-
msgstr "
|
|
902
|
+
msgid "Get started!"
|
|
903
|
+
msgstr "Kezdjük!"
|
|
253
904
|
|
|
254
|
-
msgid "
|
|
255
|
-
msgstr "
|
|
905
|
+
msgid "Make your first upload!"
|
|
906
|
+
msgstr "Tegye meg az első feltöltését!"
|
|
256
907
|
|
|
257
|
-
msgid "
|
|
258
|
-
msgstr "
|
|
908
|
+
msgid "New upload"
|
|
909
|
+
msgstr "Új feltöltés"
|
|
259
910
|
|
|
260
|
-
msgid "
|
|
261
|
-
msgstr "
|
|
911
|
+
msgid "Search in my uploads..."
|
|
912
|
+
msgstr "Keresés a feltöltéseim között..."
|
|
262
913
|
|
|
263
|
-
msgid "
|
|
264
|
-
msgstr "
|
|
914
|
+
msgid "ORCID profile"
|
|
915
|
+
msgstr "ORCID profil"
|
|
265
916
|
|
|
266
|
-
msgid "
|
|
267
|
-
msgstr "
|
|
917
|
+
msgid "ORCID logo"
|
|
918
|
+
msgstr "ORCID logó"
|
|
268
919
|
|
|
269
|
-
msgid "
|
|
270
|
-
msgstr "
|
|
920
|
+
msgid "ROR profile"
|
|
921
|
+
msgstr "ROR profil"
|
|
271
922
|
|
|
272
|
-
msgid "
|
|
273
|
-
msgstr "
|
|
923
|
+
msgid "ROR logo"
|
|
924
|
+
msgstr "ROR logó"
|
|
274
925
|
|
|
275
|
-
msgid "
|
|
276
|
-
msgstr "
|
|
926
|
+
msgid "GND profile"
|
|
927
|
+
msgstr "GND profil"
|
|
277
928
|
|
|
278
|
-
msgid "
|
|
279
|
-
msgstr "
|
|
929
|
+
msgid "GND logo"
|
|
930
|
+
msgstr "GND logó"
|
|
280
931
|
|
|
281
|
-
msgid "
|
|
282
|
-
msgstr "
|
|
932
|
+
msgid "No name"
|
|
933
|
+
msgstr "Név nélküli"
|
|
283
934
|
|
|
284
|
-
msgid "
|
|
285
|
-
|
|
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>"
|