invenio-app-rdm 8.0.0.dev9__py2.py3-none-any.whl → 14.0.0b4.dev4__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +13 -4
- invenio_app_rdm/administration/__init__.py +8 -0
- invenio_app_rdm/administration/audit_logs/__init__.py +12 -0
- 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 +93 -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/administration/user_moderation/__init__.py +11 -0
- 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/administration/views/__init__.py +11 -0
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +95 -0
- invenio_app_rdm/communities_ui/__init__.py +9 -0
- invenio_app_rdm/communities_ui/searchapp.py +27 -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/records/index.html +24 -0
- invenio_app_rdm/communities_ui/views/__init__.py +13 -0
- invenio_app_rdm/communities_ui/views/communities.py +206 -0
- invenio_app_rdm/communities_ui/views/ui.py +93 -0
- invenio_app_rdm/config.py +1072 -182
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +56 -0
- invenio_app_rdm/fixtures/data/oai_sets.yaml +6 -0
- invenio_app_rdm/fixtures/oai_sets.py +20 -0
- invenio_app_rdm/fixtures/pages/.gitkeep +1 -0
- invenio_app_rdm/fixtures/pages.py +76 -0
- invenio_app_rdm/records_ui/previewer/__init__.py +9 -0
- invenio_app_rdm/records_ui/previewer/iiif_simple.py +51 -0
- invenio_app_rdm/records_ui/searchapp.py +46 -232
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +63 -18
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +316 -169
- 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 +299 -167
- 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 +34 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -15
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +18 -41
- 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 +33 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +5 -9
- 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 +112 -90
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +21 -19
- 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 +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +69 -48
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +234 -49
- 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 +170 -71
- 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/stats_popup.html +21 -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/search.html +3 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +127 -2
- invenio_app_rdm/records_ui/views/__init__.py +114 -38
- invenio_app_rdm/records_ui/views/decorators.py +395 -117
- invenio_app_rdm/records_ui/views/deposits.py +414 -104
- invenio_app_rdm/records_ui/views/filters.py +118 -11
- invenio_app_rdm/records_ui/views/records.py +395 -66
- invenio_app_rdm/redirector/__init__.py +8 -0
- invenio_app_rdm/redirector/resource.py +106 -0
- invenio_app_rdm/redirector/views.py +18 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
- 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 +78 -0
- 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/__init__.py +1 -3
- invenio_app_rdm/requests_ui/views/requests.py +345 -53
- invenio_app_rdm/requests_ui/views/ui.py +38 -9
- invenio_app_rdm/tasks.py +45 -0
- 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 +79 -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/UserModerationBulkActions.js +0 -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 +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +61 -39
- 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 +189 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +788 -307
- 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 +27 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
- 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 +179 -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 +30 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
- 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 +68 -73
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
- 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 +123 -43
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +143 -79
- 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 +111 -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 +236 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -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} +23 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -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 +92 -124
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -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 +165 -299
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +48 -20
- 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 +164 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +85 -74
- 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 +26 -70
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +110 -17
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +103 -15
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +121 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +68 -37
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +80 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +557 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +4 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
- 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/tab.overrides +3 -23
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +164 -10
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
- 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 +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +830 -160
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +883 -4
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +259 -65
- 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 +290 -63
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -6
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
- 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 +907 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -8
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +872 -142
- invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -79
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +40 -57
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +114 -76
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +16 -13
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +151 -61
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +3 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +12 -7
- 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.en.html +197 -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 +98 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
- 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 +63 -0
- 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/semantic-ui/invenio_previewer/latest_record.html +18 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -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 +106 -37
- invenio_app_rdm/theme/webpack.py +72 -36
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1085 -372
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +987 -367
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
- 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 +1361 -0
- invenio_app_rdm/translations/messages.pot +1046 -271
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
- 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_13_0_to_14_0.py +268 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
- invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +4 -6
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +30 -43
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +1 -5
- invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +7 -11
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/__init__.py +9 -0
- invenio_app_rdm/users_ui/searchapp.py +53 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
- invenio_app_rdm/users_ui/views/__init__.py +14 -0
- invenio_app_rdm/users_ui/views/dashboard.py +59 -0
- invenio_app_rdm/users_ui/views/ui.py +68 -0
- invenio_app_rdm/utils/files.py +120 -0
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/dashboard.html +0 -47
- invenio_app_rdm/records_ui/views/utils.py +0 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/Image.js +0 -36
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -257
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/base.js +0 -140
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/communities.js +0 -200
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/requests.js +0 -394
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/uploads.js +0 -287
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/index.js +0 -155
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm_requests/menuTabInit.js +0 -24
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -158
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -88
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/details.less +0 -53
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/sidebar.less +0 -47
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -423
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -305
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -52
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -492
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -60
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm_requests/theme.less +0 -22
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -63
- 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 -39
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/templates/semantic-ui/invenio_requests/community-submission/index.html +0 -67
- invenio_app_rdm/version.py +0 -23
- invenio_app_rdm-8.0.0.dev9.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-8.0.0.dev9.dist-info/METADATA +0 -74
- invenio_app_rdm-8.0.0.dev9.dist-info/RECORD +0 -179
- invenio_app_rdm-8.0.0.dev9.dist-info/entry_points.txt +0 -14
- /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
|
@@ -5,21 +5,352 @@ msgstr ""
|
|
|
5
5
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
6
6
|
"Content-Transfer-Encoding: 8bit\n"
|
|
7
7
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
|
8
|
-
"POT-Creation-Date:
|
|
9
|
-
"PO-Revision-Date:
|
|
8
|
+
"POT-Creation-Date: 2025-06-30T21:08:07.188Z\n"
|
|
9
|
+
"PO-Revision-Date: 2025-06-30T21:08:07.188Z\n"
|
|
10
10
|
"Language: en\n"
|
|
11
11
|
|
|
12
|
-
msgid "
|
|
13
|
-
msgstr "
|
|
12
|
+
msgid "Recent changes"
|
|
13
|
+
msgstr "Recent changes"
|
|
14
14
|
|
|
15
|
-
msgid "
|
|
16
|
-
msgstr "
|
|
15
|
+
msgid "Audit Log Details"
|
|
16
|
+
msgstr "Audit Log Details"
|
|
17
17
|
|
|
18
|
-
msgid "
|
|
19
|
-
msgstr "
|
|
18
|
+
msgid "Resource"
|
|
19
|
+
msgstr "Resource"
|
|
20
|
+
|
|
21
|
+
msgid "Resource ID"
|
|
22
|
+
msgstr "Resource ID"
|
|
23
|
+
|
|
24
|
+
msgid "Action"
|
|
25
|
+
msgstr "Action"
|
|
26
|
+
|
|
27
|
+
msgid "User"
|
|
28
|
+
msgstr "User"
|
|
29
|
+
|
|
30
|
+
msgid "Created"
|
|
31
|
+
msgstr "Created"
|
|
32
|
+
|
|
33
|
+
msgid "No revision ID found."
|
|
34
|
+
msgstr "No revision ID found."
|
|
35
|
+
|
|
36
|
+
msgid "Unable to fetch revisions."
|
|
37
|
+
msgstr "Unable to fetch revisions."
|
|
38
|
+
|
|
39
|
+
msgid "Cancel revision comparison"
|
|
40
|
+
msgstr "Cancel revision comparison"
|
|
41
|
+
|
|
42
|
+
msgid "Impersonate user"
|
|
43
|
+
msgstr "Impersonate user"
|
|
44
|
+
|
|
45
|
+
msgid "Impersonate"
|
|
46
|
+
msgstr "Impersonate"
|
|
47
|
+
|
|
48
|
+
msgid "You must accept this."
|
|
49
|
+
msgstr "You must accept this."
|
|
50
|
+
|
|
51
|
+
msgid "Success"
|
|
52
|
+
msgstr "Success"
|
|
53
|
+
|
|
54
|
+
msgid "User impersonated succesfully! You will be redirected in frontpage soon."
|
|
55
|
+
msgstr "User impersonated succesfully! You will be redirected in frontpage soon."
|
|
56
|
+
|
|
57
|
+
msgid "Unable to impersonate user."
|
|
58
|
+
msgstr "Unable to impersonate user."
|
|
59
|
+
|
|
60
|
+
msgid ""
|
|
61
|
+
"Please read carefully and confirm the following statements before you "
|
|
62
|
+
"proceed."
|
|
63
|
+
msgstr ""
|
|
64
|
+
"Please read carefully and confirm the following statements before you "
|
|
65
|
+
"proceed."
|
|
66
|
+
|
|
67
|
+
msgid "You are about to impersonate user "
|
|
68
|
+
msgstr "You are about to impersonate user "
|
|
69
|
+
|
|
70
|
+
msgid "You "
|
|
71
|
+
msgstr "You "
|
|
72
|
+
|
|
73
|
+
msgid "MUST"
|
|
74
|
+
msgstr "MUST"
|
|
75
|
+
|
|
76
|
+
msgid " logout after completing your inquiry."
|
|
77
|
+
msgstr " logout after completing your inquiry."
|
|
78
|
+
|
|
79
|
+
msgid "Close"
|
|
80
|
+
msgstr "Close"
|
|
81
|
+
|
|
82
|
+
msgid "Set Quota"
|
|
83
|
+
msgstr "Set Quota"
|
|
84
|
+
|
|
85
|
+
msgid "Set quota in bytes"
|
|
86
|
+
msgstr "Set quota in bytes"
|
|
87
|
+
|
|
88
|
+
msgid "Note"
|
|
89
|
+
msgstr "Note"
|
|
90
|
+
|
|
91
|
+
msgid ""
|
|
92
|
+
"This is the default quota that will be applied to any NEW records created "
|
|
93
|
+
"by this user - it will NOT update quota of existing records."
|
|
94
|
+
msgstr ""
|
|
95
|
+
"This is the default quota that will be applied to any NEW records created "
|
|
96
|
+
"by this user - it will NOT update quota of existing records."
|
|
97
|
+
|
|
98
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
99
|
+
msgstr "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
100
|
+
|
|
101
|
+
msgid "Unable to set quota."
|
|
102
|
+
msgstr "Unable to set quota."
|
|
103
|
+
|
|
104
|
+
msgid "Quota size ({{unit}})"
|
|
105
|
+
msgstr "Quota size ({{unit}})"
|
|
106
|
+
|
|
107
|
+
msgid "Enter quota size..."
|
|
108
|
+
msgstr "Enter quota size..."
|
|
109
|
+
|
|
110
|
+
msgid "Max file size ({{unit}})"
|
|
111
|
+
msgstr "Max file size ({{unit}})"
|
|
112
|
+
|
|
113
|
+
msgid "Enter max file size..."
|
|
114
|
+
msgstr "Enter max file size..."
|
|
115
|
+
|
|
116
|
+
msgid "Ticket 1234"
|
|
117
|
+
msgstr "Ticket 1234"
|
|
118
|
+
|
|
119
|
+
msgid "Set quota"
|
|
120
|
+
msgstr "Set quota"
|
|
121
|
+
|
|
122
|
+
msgid "Domain"
|
|
123
|
+
msgstr "Domain"
|
|
124
|
+
|
|
125
|
+
msgid "Flagged"
|
|
126
|
+
msgstr "Flagged"
|
|
127
|
+
|
|
128
|
+
msgid "Organization"
|
|
129
|
+
msgstr "Organization"
|
|
130
|
+
|
|
131
|
+
msgid "Company"
|
|
132
|
+
msgstr "Company"
|
|
133
|
+
|
|
134
|
+
msgid "Mail provider"
|
|
135
|
+
msgstr "Mail provider"
|
|
20
136
|
|
|
21
|
-
msgid "
|
|
22
|
-
msgstr "
|
|
137
|
+
msgid "Spammer"
|
|
138
|
+
msgstr "Spammer"
|
|
139
|
+
|
|
140
|
+
msgid "TLD"
|
|
141
|
+
msgstr "TLD"
|
|
142
|
+
|
|
143
|
+
msgid "Status"
|
|
144
|
+
msgstr "Status"
|
|
145
|
+
|
|
146
|
+
msgid "New"
|
|
147
|
+
msgstr "New"
|
|
148
|
+
|
|
149
|
+
msgid "Moderated"
|
|
150
|
+
msgstr "Moderated"
|
|
151
|
+
|
|
152
|
+
msgid "Verified"
|
|
153
|
+
msgstr "Verified"
|
|
154
|
+
|
|
155
|
+
msgid "Blocked"
|
|
156
|
+
msgstr "Blocked"
|
|
157
|
+
|
|
158
|
+
msgid "Users"
|
|
159
|
+
msgstr "Users"
|
|
160
|
+
|
|
161
|
+
msgid "Active"
|
|
162
|
+
msgstr "Active"
|
|
163
|
+
|
|
164
|
+
msgid "Inactive"
|
|
165
|
+
msgstr "Inactive"
|
|
166
|
+
|
|
167
|
+
msgid "Confirmed"
|
|
168
|
+
msgstr "Confirmed"
|
|
169
|
+
|
|
170
|
+
msgid "Links"
|
|
171
|
+
msgstr "Links"
|
|
172
|
+
|
|
173
|
+
msgid "Set quota for record {{recordId}}"
|
|
174
|
+
msgstr "Set quota for record {{recordId}}"
|
|
175
|
+
|
|
176
|
+
msgid "Compare revisions"
|
|
177
|
+
msgstr "Compare revisions"
|
|
178
|
+
|
|
179
|
+
msgid "Delete record"
|
|
180
|
+
msgstr "Delete record"
|
|
181
|
+
|
|
182
|
+
msgid "Restore record"
|
|
183
|
+
msgstr "Restore record"
|
|
184
|
+
|
|
185
|
+
msgid "Unavailability statement"
|
|
186
|
+
msgstr "Unavailability statement"
|
|
187
|
+
|
|
188
|
+
msgid "Record {{id}} was restored."
|
|
189
|
+
msgstr "Record {{id}} was restored."
|
|
190
|
+
|
|
191
|
+
msgid "Unable to restore."
|
|
192
|
+
msgstr "Unable to restore."
|
|
193
|
+
|
|
194
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
195
|
+
msgstr "Are you sure you want to restore #{{id}}"
|
|
196
|
+
|
|
197
|
+
msgid "Published"
|
|
198
|
+
msgstr "Published"
|
|
199
|
+
|
|
200
|
+
msgid "Deleted"
|
|
201
|
+
msgstr "Deleted"
|
|
202
|
+
|
|
203
|
+
msgid "Scheduled for purge"
|
|
204
|
+
msgstr "Scheduled for purge"
|
|
205
|
+
|
|
206
|
+
msgid "Empty draft title"
|
|
207
|
+
msgstr "Empty draft title"
|
|
208
|
+
|
|
209
|
+
msgid "version"
|
|
210
|
+
msgstr "version"
|
|
211
|
+
|
|
212
|
+
msgid "Owner"
|
|
213
|
+
msgstr "Owner"
|
|
214
|
+
|
|
215
|
+
msgid "System"
|
|
216
|
+
msgstr "System"
|
|
217
|
+
|
|
218
|
+
msgid "Files"
|
|
219
|
+
msgstr "Files"
|
|
220
|
+
|
|
221
|
+
msgid "Stats"
|
|
222
|
+
msgstr "Stats"
|
|
223
|
+
|
|
224
|
+
msgid "Record {{id}} was deleted."
|
|
225
|
+
msgstr "Record {{id}} was deleted."
|
|
226
|
+
|
|
227
|
+
msgid "Unable to delete"
|
|
228
|
+
msgstr "Unable to delete"
|
|
229
|
+
|
|
230
|
+
msgid "Public"
|
|
231
|
+
msgstr "Public"
|
|
232
|
+
|
|
233
|
+
msgid "Hidden"
|
|
234
|
+
msgstr "Hidden"
|
|
235
|
+
|
|
236
|
+
msgid ""
|
|
237
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
238
|
+
"to provide a public tombstone when deactivating public records."
|
|
239
|
+
msgstr ""
|
|
240
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
241
|
+
"to provide a public tombstone when deactivating public records."
|
|
242
|
+
|
|
243
|
+
msgid ""
|
|
244
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
245
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
246
|
+
"tombstone below."
|
|
247
|
+
msgstr ""
|
|
248
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
249
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
250
|
+
"tombstone below."
|
|
251
|
+
|
|
252
|
+
msgid "Bibliographic citation"
|
|
253
|
+
msgstr "Bibliographic citation"
|
|
254
|
+
|
|
255
|
+
msgid ""
|
|
256
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
257
|
+
"default."
|
|
258
|
+
msgstr ""
|
|
259
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
260
|
+
"default."
|
|
261
|
+
|
|
262
|
+
msgid "Public note"
|
|
263
|
+
msgstr "Public note"
|
|
264
|
+
|
|
265
|
+
msgid "User {{name}} was approved."
|
|
266
|
+
msgstr "User {{name}} was approved."
|
|
267
|
+
|
|
268
|
+
msgid "User {{name}} is blocked."
|
|
269
|
+
msgstr "User {{name}} is blocked."
|
|
270
|
+
|
|
271
|
+
msgid "Error"
|
|
272
|
+
msgstr "Error"
|
|
273
|
+
|
|
274
|
+
msgid "Email"
|
|
275
|
+
msgstr "Email"
|
|
276
|
+
|
|
277
|
+
msgid "Email domain"
|
|
278
|
+
msgstr "Email domain"
|
|
279
|
+
|
|
280
|
+
msgid "Actions"
|
|
281
|
+
msgstr "Actions"
|
|
282
|
+
|
|
283
|
+
msgid "Records"
|
|
284
|
+
msgstr "Records"
|
|
285
|
+
|
|
286
|
+
msgid "Username"
|
|
287
|
+
msgstr "Username"
|
|
288
|
+
|
|
289
|
+
msgid "GitHub"
|
|
290
|
+
msgstr "GitHub"
|
|
291
|
+
|
|
292
|
+
msgid "Updated"
|
|
293
|
+
msgstr "Updated"
|
|
294
|
+
|
|
295
|
+
msgid "Drafts"
|
|
296
|
+
msgstr "Drafts"
|
|
297
|
+
|
|
298
|
+
msgid "Moderation"
|
|
299
|
+
msgstr "Moderation"
|
|
300
|
+
|
|
301
|
+
msgid "Restore"
|
|
302
|
+
msgstr "Restore"
|
|
303
|
+
|
|
304
|
+
msgid "Restored"
|
|
305
|
+
msgstr "Restored"
|
|
306
|
+
|
|
307
|
+
msgid "Block"
|
|
308
|
+
msgstr "Block"
|
|
309
|
+
|
|
310
|
+
msgid "Suspend"
|
|
311
|
+
msgstr "Suspend"
|
|
312
|
+
|
|
313
|
+
msgid "Suspended"
|
|
314
|
+
msgstr "Suspended"
|
|
315
|
+
|
|
316
|
+
msgid "Approve"
|
|
317
|
+
msgstr "Approve"
|
|
318
|
+
|
|
319
|
+
msgid "Approved"
|
|
320
|
+
msgstr "Approved"
|
|
321
|
+
|
|
322
|
+
msgid "Activate"
|
|
323
|
+
msgstr "Activate"
|
|
324
|
+
|
|
325
|
+
msgid "Activated"
|
|
326
|
+
msgstr "Activated"
|
|
327
|
+
|
|
328
|
+
msgid "Set default quota for {{email}}"
|
|
329
|
+
msgstr "Set default quota for {{email}}"
|
|
330
|
+
|
|
331
|
+
msgid "Filter results"
|
|
332
|
+
msgstr "Filter results"
|
|
333
|
+
|
|
334
|
+
msgid "Search records in community..."
|
|
335
|
+
msgstr "Search records in community..."
|
|
336
|
+
|
|
337
|
+
msgid "results found"
|
|
338
|
+
msgstr "results found"
|
|
339
|
+
|
|
340
|
+
msgid "Sort by"
|
|
341
|
+
msgstr "Sort by"
|
|
342
|
+
|
|
343
|
+
msgid "Search records..."
|
|
344
|
+
msgstr "Search records..."
|
|
345
|
+
|
|
346
|
+
msgid "Search"
|
|
347
|
+
msgstr "Search"
|
|
348
|
+
|
|
349
|
+
msgid "Views"
|
|
350
|
+
msgstr "Views"
|
|
351
|
+
|
|
352
|
+
msgid "Downloads"
|
|
353
|
+
msgstr "Downloads"
|
|
23
354
|
|
|
24
355
|
msgid "Copy to clipboard"
|
|
25
356
|
msgstr "Copy to clipboard"
|
|
@@ -27,12 +358,53 @@ msgstr "Copy to clipboard"
|
|
|
27
358
|
msgid "Copied!"
|
|
28
359
|
msgstr "Copied!"
|
|
29
360
|
|
|
30
|
-
msgid "
|
|
31
|
-
msgstr "
|
|
361
|
+
msgid "Part of "
|
|
362
|
+
msgstr "Part of "
|
|
363
|
+
|
|
364
|
+
msgid "No creation date found."
|
|
365
|
+
msgstr "No creation date found."
|
|
366
|
+
|
|
367
|
+
msgid "No description"
|
|
368
|
+
msgstr "No description"
|
|
369
|
+
|
|
370
|
+
msgid "No publication date found."
|
|
371
|
+
msgstr "No publication date found."
|
|
372
|
+
|
|
373
|
+
msgid "No resource type"
|
|
374
|
+
msgstr "No resource type"
|
|
375
|
+
|
|
376
|
+
msgid "No title"
|
|
377
|
+
msgstr "No title"
|
|
378
|
+
|
|
379
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
380
|
+
msgstr "Uploaded on {{uploadDate}}"
|
|
381
|
+
|
|
382
|
+
msgid "Published in: {{- publishInfo }}"
|
|
383
|
+
msgstr "Published in: {{- publishInfo }}"
|
|
384
|
+
|
|
385
|
+
msgid "{{count}} more versions exist for this record"
|
|
386
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
387
|
+
msgstr[0] "{{count}} more versions exist for this record"
|
|
388
|
+
msgstr[1] "{{count}} more versions exist for this record"
|
|
389
|
+
|
|
390
|
+
msgid "Recommendation"
|
|
391
|
+
msgstr "Recommendation"
|
|
392
|
+
|
|
393
|
+
msgid "This check is recommended but not mandatory."
|
|
394
|
+
msgstr "This check is recommended but not mandatory."
|
|
395
|
+
|
|
396
|
+
msgid "This check indicates a critical issue that must be addressed."
|
|
397
|
+
msgstr "This check indicates a critical issue that must be addressed."
|
|
398
|
+
|
|
399
|
+
msgid "Person"
|
|
400
|
+
msgstr "Person"
|
|
32
401
|
|
|
33
402
|
msgid "The record has no files."
|
|
34
403
|
msgstr "The record has no files."
|
|
35
404
|
|
|
405
|
+
msgid "Basic information"
|
|
406
|
+
msgstr "Basic information"
|
|
407
|
+
|
|
36
408
|
msgid "Creators"
|
|
37
409
|
msgstr "Creators"
|
|
38
410
|
|
|
@@ -45,32 +417,184 @@ msgstr "Add contributor"
|
|
|
45
417
|
msgid "Contributors"
|
|
46
418
|
msgstr "Contributors"
|
|
47
419
|
|
|
420
|
+
msgid "Edit contributor"
|
|
421
|
+
msgstr "Edit contributor"
|
|
422
|
+
|
|
423
|
+
msgid "Funding"
|
|
424
|
+
msgstr "Funding"
|
|
425
|
+
|
|
426
|
+
msgid "Awards/Grants"
|
|
427
|
+
msgstr "Awards/Grants"
|
|
428
|
+
|
|
48
429
|
msgid "Alternate identifiers"
|
|
49
430
|
msgstr "Alternate identifiers"
|
|
50
431
|
|
|
51
|
-
msgid "Alternate identifier(s)"
|
|
52
|
-
msgstr "Alternate identifier(s)"
|
|
53
|
-
|
|
54
432
|
msgid "Related works"
|
|
55
433
|
msgstr "Related works"
|
|
56
434
|
|
|
435
|
+
msgid "References"
|
|
436
|
+
msgstr "References"
|
|
437
|
+
|
|
57
438
|
msgid "Visibility"
|
|
58
439
|
msgstr "Visibility"
|
|
59
440
|
|
|
441
|
+
msgid "More"
|
|
442
|
+
msgstr "More"
|
|
443
|
+
|
|
444
|
+
msgid "Unable to request the access."
|
|
445
|
+
msgstr "Unable to request the access."
|
|
446
|
+
|
|
447
|
+
msgid "Your email address"
|
|
448
|
+
msgstr "Your email address"
|
|
449
|
+
|
|
450
|
+
msgid "Email address"
|
|
451
|
+
msgstr "Email address"
|
|
452
|
+
|
|
453
|
+
msgid "Your full name"
|
|
454
|
+
msgstr "Your full name"
|
|
455
|
+
|
|
456
|
+
msgid "Full name"
|
|
457
|
+
msgstr "Full name"
|
|
458
|
+
|
|
459
|
+
msgid "Request message"
|
|
460
|
+
msgstr "Request message"
|
|
461
|
+
|
|
462
|
+
msgid ""
|
|
463
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
464
|
+
"the record"
|
|
465
|
+
msgstr ""
|
|
466
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
467
|
+
"the record"
|
|
468
|
+
|
|
469
|
+
msgid "Request access"
|
|
470
|
+
msgstr "Request access"
|
|
471
|
+
|
|
472
|
+
msgid "Email confirmation needed"
|
|
473
|
+
msgstr "Email confirmation needed"
|
|
474
|
+
|
|
475
|
+
msgid "We have sent you an email to verify your address."
|
|
476
|
+
msgstr "We have sent you an email to verify your address."
|
|
477
|
+
|
|
478
|
+
msgid ""
|
|
479
|
+
"\n"
|
|
480
|
+
" Please check the email and follow the instructions to "
|
|
481
|
+
"complete the access request.\n"
|
|
482
|
+
" "
|
|
483
|
+
msgstr ""
|
|
484
|
+
"\n"
|
|
485
|
+
" Please check the email and follow the instructions to "
|
|
486
|
+
"complete the access request.\n"
|
|
487
|
+
" "
|
|
488
|
+
|
|
489
|
+
msgid "An error occurred while fetching communities."
|
|
490
|
+
msgstr "An error occurred while fetching communities."
|
|
491
|
+
|
|
492
|
+
msgid "Communities"
|
|
493
|
+
msgstr "Communities"
|
|
494
|
+
|
|
495
|
+
msgid "View all {{count}} communities"
|
|
496
|
+
msgid_plural "View all {{count}} communities"
|
|
497
|
+
msgstr[0] "View all {{count}} communities"
|
|
498
|
+
msgstr[1] "View all {{count}} communities"
|
|
499
|
+
|
|
500
|
+
msgid "Submit to community"
|
|
501
|
+
msgstr "Submit to community"
|
|
502
|
+
|
|
503
|
+
msgid "Pending submissions"
|
|
504
|
+
msgstr "Pending submissions"
|
|
505
|
+
|
|
506
|
+
msgid "Manage communities"
|
|
507
|
+
msgstr "Manage communities"
|
|
508
|
+
|
|
509
|
+
msgid "Community management menu dropdown"
|
|
510
|
+
msgstr "Community management menu dropdown"
|
|
511
|
+
|
|
60
512
|
msgid "Edit"
|
|
61
513
|
msgstr "Edit"
|
|
62
514
|
|
|
515
|
+
msgid "Export selection"
|
|
516
|
+
msgstr "Export selection"
|
|
517
|
+
|
|
518
|
+
msgid "Download file"
|
|
519
|
+
msgstr "Download file"
|
|
520
|
+
|
|
521
|
+
msgid "Export"
|
|
522
|
+
msgstr "Export"
|
|
523
|
+
|
|
524
|
+
msgid "Manage"
|
|
525
|
+
msgstr "Manage"
|
|
526
|
+
|
|
527
|
+
msgid "Manage record"
|
|
528
|
+
msgstr "Manage record"
|
|
529
|
+
|
|
530
|
+
msgid "Manage user"
|
|
531
|
+
msgstr "Manage user"
|
|
532
|
+
|
|
533
|
+
msgid "Block user"
|
|
534
|
+
msgstr "Block user"
|
|
535
|
+
|
|
536
|
+
msgid "Block User"
|
|
537
|
+
msgstr "Block User"
|
|
538
|
+
|
|
539
|
+
msgid "Blocking the user will delete all existing records of the user."
|
|
540
|
+
msgstr "Blocking the user will delete all existing records of the user."
|
|
541
|
+
|
|
542
|
+
msgid "Remove branding"
|
|
543
|
+
msgstr "Remove branding"
|
|
544
|
+
|
|
545
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
546
|
+
msgstr "{{communityTitle}} is a default branding for this record"
|
|
547
|
+
|
|
548
|
+
msgid "Remove this community from appearing on top of the record details page."
|
|
549
|
+
msgstr "Remove this community from appearing on top of the record details page."
|
|
550
|
+
|
|
551
|
+
msgid "Set branding"
|
|
552
|
+
msgstr "Set branding"
|
|
553
|
+
|
|
554
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
555
|
+
msgstr "Set {{communityTitle}} as a default branding for this record"
|
|
556
|
+
|
|
557
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
558
|
+
msgstr "Set this community to appear on the top of the record details page."
|
|
559
|
+
|
|
560
|
+
msgid "Pending communities"
|
|
561
|
+
msgstr "Pending communities"
|
|
562
|
+
|
|
563
|
+
msgid "Search for pending submissions to communities..."
|
|
564
|
+
msgstr "Search for pending submissions to communities..."
|
|
565
|
+
|
|
63
566
|
msgid "An error occurred while generating the citation."
|
|
64
567
|
msgstr "An error occurred while generating the citation."
|
|
65
568
|
|
|
66
|
-
msgid "Citation"
|
|
67
|
-
msgstr "Citation"
|
|
68
|
-
|
|
69
569
|
msgid "Style"
|
|
70
570
|
msgstr "Style"
|
|
71
571
|
|
|
72
|
-
msgid "
|
|
73
|
-
msgstr "
|
|
572
|
+
msgid "This record is not included in any communities yet."
|
|
573
|
+
msgstr "This record is not included in any communities yet."
|
|
574
|
+
|
|
575
|
+
msgid "Part of"
|
|
576
|
+
msgstr "Part of"
|
|
577
|
+
|
|
578
|
+
msgid "Search for community..."
|
|
579
|
+
msgstr "Search for community..."
|
|
580
|
+
|
|
581
|
+
msgid "Record submitted"
|
|
582
|
+
msgstr "Record submitted"
|
|
583
|
+
|
|
584
|
+
msgid "Review requested"
|
|
585
|
+
msgstr "Review requested"
|
|
586
|
+
|
|
587
|
+
msgid "Search in all communities"
|
|
588
|
+
msgstr "Search in all communities"
|
|
589
|
+
|
|
590
|
+
msgid "Search in my communities"
|
|
591
|
+
msgstr "Search in my communities"
|
|
592
|
+
|
|
593
|
+
msgid "Select a community"
|
|
594
|
+
msgstr "Select a community"
|
|
595
|
+
|
|
596
|
+
msgid "Version {{- version}}"
|
|
597
|
+
msgstr "Version {{- version}}"
|
|
74
598
|
|
|
75
599
|
msgid "Preview"
|
|
76
600
|
msgstr "Preview"
|
|
@@ -78,187 +602,299 @@ msgstr "Preview"
|
|
|
78
602
|
msgid "Only published versions are displayed."
|
|
79
603
|
msgstr "Only published versions are displayed."
|
|
80
604
|
|
|
81
|
-
msgid "
|
|
82
|
-
msgstr "
|
|
605
|
+
msgid "An error occurred while fetching the versions."
|
|
606
|
+
msgstr "An error occurred while fetching the versions."
|
|
83
607
|
|
|
84
|
-
msgid "
|
|
85
|
-
|
|
608
|
+
msgid "View all {{count}} versions"
|
|
609
|
+
msgid_plural "View all {{count}} versions"
|
|
610
|
+
msgstr[0] "View all {{count}} versions"
|
|
611
|
+
msgstr[1] "View all {{count}} versions"
|
|
86
612
|
|
|
87
|
-
msgid "
|
|
88
|
-
msgstr "
|
|
613
|
+
msgid "Cite all versions?"
|
|
614
|
+
msgstr "Cite all versions?"
|
|
89
615
|
|
|
90
|
-
msgid "
|
|
91
|
-
msgstr "
|
|
616
|
+
msgid "You can cite all versions by using the DOI"
|
|
617
|
+
msgstr "You can cite all versions by using the DOI"
|
|
92
618
|
|
|
93
|
-
msgid "
|
|
94
|
-
msgstr "
|
|
619
|
+
msgid "This DOI represents all versions, and will always resolve to the latest one."
|
|
620
|
+
msgstr "This DOI represents all versions, and will always resolve to the latest one."
|
|
95
621
|
|
|
96
|
-
msgid "
|
|
97
|
-
msgstr "
|
|
622
|
+
msgid "Read more"
|
|
623
|
+
msgstr "Read more"
|
|
624
|
+
|
|
625
|
+
msgid "The DOI is registered when the first version is published."
|
|
626
|
+
msgstr "The DOI is registered when the first version is published."
|
|
627
|
+
|
|
628
|
+
msgid "Remove"
|
|
629
|
+
msgstr "Remove"
|
|
630
|
+
|
|
631
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
632
|
+
msgstr "Remove {{communityTitle}} from this record"
|
|
98
633
|
|
|
99
|
-
msgid "
|
|
100
|
-
msgstr "
|
|
634
|
+
msgid "Remove community"
|
|
635
|
+
msgstr "Remove community"
|
|
636
|
+
|
|
637
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
638
|
+
msgstr "Are you sure you want to remove the record from the community?"
|
|
639
|
+
|
|
640
|
+
msgid "I understand the consequences:"
|
|
641
|
+
msgstr "I understand the consequences:"
|
|
642
|
+
|
|
643
|
+
msgid "Members of the community "
|
|
644
|
+
msgstr "Members of the community "
|
|
645
|
+
|
|
646
|
+
msgid " will "
|
|
647
|
+
msgstr " will "
|
|
648
|
+
|
|
649
|
+
msgid "lose their access"
|
|
650
|
+
msgstr "lose their access"
|
|
651
|
+
|
|
652
|
+
msgid " to the record."
|
|
653
|
+
msgstr " to the record."
|
|
654
|
+
|
|
655
|
+
msgid ""
|
|
656
|
+
"The record can only be re-included in the community by going through a new "
|
|
657
|
+
"review by the community curators."
|
|
658
|
+
msgstr ""
|
|
659
|
+
"The record can only be re-included in the community by going through a new "
|
|
660
|
+
"review by the community curators."
|
|
661
|
+
|
|
662
|
+
msgid "Something went wrong"
|
|
663
|
+
msgstr "Something went wrong"
|
|
664
|
+
|
|
665
|
+
msgid "Cancel removal"
|
|
666
|
+
msgstr "Cancel removal"
|
|
667
|
+
|
|
668
|
+
msgid "Cancel"
|
|
669
|
+
msgstr "Cancel"
|
|
670
|
+
|
|
671
|
+
msgid "Confirm removal"
|
|
672
|
+
msgstr "Confirm removal"
|
|
673
|
+
|
|
674
|
+
msgid "Select permissions"
|
|
675
|
+
msgstr "Select permissions"
|
|
676
|
+
|
|
677
|
+
msgid "Short name for your link (optional)."
|
|
678
|
+
msgstr "Short name for your link (optional)."
|
|
679
|
+
|
|
680
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
681
|
+
msgstr "Expiration date format: YYYY-MM-DD"
|
|
682
|
+
|
|
683
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
684
|
+
msgstr "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
685
|
+
|
|
686
|
+
msgid "Create a new link"
|
|
687
|
+
msgstr "Create a new link"
|
|
688
|
+
|
|
689
|
+
msgid "Link title"
|
|
690
|
+
msgstr "Link title"
|
|
691
|
+
|
|
692
|
+
msgid "Expires at"
|
|
693
|
+
msgstr "Expires at"
|
|
694
|
+
|
|
695
|
+
msgid "Never"
|
|
696
|
+
msgstr "Never"
|
|
697
|
+
|
|
698
|
+
msgid "Access"
|
|
699
|
+
msgstr "Access"
|
|
700
|
+
|
|
701
|
+
msgid "Delete"
|
|
702
|
+
msgstr "Delete"
|
|
101
703
|
|
|
102
704
|
msgid "Copy link"
|
|
103
705
|
msgstr "Copy link"
|
|
104
706
|
|
|
105
|
-
msgid "
|
|
106
|
-
msgstr "
|
|
707
|
+
msgid "Can view"
|
|
708
|
+
msgstr "Can view"
|
|
107
709
|
|
|
108
|
-
msgid "
|
|
109
|
-
msgstr "
|
|
710
|
+
msgid "Can view restricted files of all versions of this record."
|
|
711
|
+
msgstr "Can view restricted files of all versions of this record."
|
|
110
712
|
|
|
111
|
-
msgid "
|
|
112
|
-
msgstr "
|
|
713
|
+
msgid "Can preview drafts"
|
|
714
|
+
msgstr "Can preview drafts"
|
|
113
715
|
|
|
114
|
-
msgid "
|
|
115
|
-
|
|
716
|
+
msgid ""
|
|
717
|
+
"Can view drafts, restricted files, and comment on associated draft requests "
|
|
718
|
+
"of all versions of this record."
|
|
719
|
+
msgstr ""
|
|
720
|
+
"Can view drafts, restricted files, and comment on associated draft requests "
|
|
721
|
+
"of all versions of this record."
|
|
722
|
+
|
|
723
|
+
msgid "Can edit"
|
|
724
|
+
msgstr "Can edit"
|
|
116
725
|
|
|
117
726
|
msgid ""
|
|
118
|
-
"
|
|
119
|
-
"versions
|
|
727
|
+
"Can edit drafts, view restricted files, and comment on associated draft "
|
|
728
|
+
"requests of all versions of this record."
|
|
120
729
|
msgstr ""
|
|
121
|
-
"
|
|
122
|
-
"versions
|
|
730
|
+
"Can edit drafts, view restricted files, and comment on associated draft "
|
|
731
|
+
"requests of all versions of this record."
|
|
123
732
|
|
|
124
733
|
msgid ""
|
|
125
|
-
"
|
|
126
|
-
"
|
|
734
|
+
"Can view (view access link can be created only after the record is "
|
|
735
|
+
"published)"
|
|
127
736
|
msgstr ""
|
|
128
|
-
"
|
|
129
|
-
"
|
|
737
|
+
"Can view (view access link can be created only after the record is "
|
|
738
|
+
"published)"
|
|
130
739
|
|
|
131
|
-
msgid "
|
|
132
|
-
msgstr "
|
|
740
|
+
msgid "Expires"
|
|
741
|
+
msgstr "Expires"
|
|
133
742
|
|
|
134
|
-
msgid "
|
|
135
|
-
msgstr "
|
|
743
|
+
msgid "This record has no links generated yet."
|
|
744
|
+
msgstr "This record has no links generated yet."
|
|
136
745
|
|
|
137
|
-
msgid "
|
|
138
|
-
msgstr "
|
|
746
|
+
msgid "Unable to change the access request settings."
|
|
747
|
+
msgstr "Unable to change the access request settings."
|
|
139
748
|
|
|
140
|
-
msgid "
|
|
141
|
-
msgstr "
|
|
749
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
750
|
+
msgstr "Allow authenticated users to request access to restricted files."
|
|
142
751
|
|
|
143
|
-
msgid "
|
|
144
|
-
msgstr "
|
|
752
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
753
|
+
msgstr "Allow non-authenticated users to request access to restricted files."
|
|
145
754
|
|
|
146
|
-
msgid "
|
|
147
|
-
msgstr "
|
|
755
|
+
msgid "Accept conditions"
|
|
756
|
+
msgstr "Accept conditions"
|
|
148
757
|
|
|
149
|
-
msgid "
|
|
150
|
-
msgstr "
|
|
758
|
+
msgid "Advanced options"
|
|
759
|
+
msgstr "Advanced options"
|
|
151
760
|
|
|
152
|
-
msgid "
|
|
153
|
-
msgstr "
|
|
761
|
+
msgid "Save"
|
|
762
|
+
msgstr "Save"
|
|
154
763
|
|
|
155
|
-
msgid "
|
|
156
|
-
msgstr "
|
|
764
|
+
msgid "No user has access to this record yet."
|
|
765
|
+
msgstr "No user has access to this record yet."
|
|
157
766
|
|
|
158
|
-
msgid "
|
|
159
|
-
msgstr "
|
|
767
|
+
msgid "People with access"
|
|
768
|
+
msgstr "People with access"
|
|
160
769
|
|
|
161
|
-
msgid "
|
|
162
|
-
msgstr "
|
|
770
|
+
msgid "No group has access to this record yet."
|
|
771
|
+
msgstr "No group has access to this record yet."
|
|
163
772
|
|
|
164
|
-
msgid "
|
|
165
|
-
msgstr "
|
|
773
|
+
msgid "Groups with access"
|
|
774
|
+
msgstr "Groups with access"
|
|
166
775
|
|
|
167
|
-
msgid "
|
|
168
|
-
msgstr "
|
|
776
|
+
msgid "You"
|
|
777
|
+
msgstr "You"
|
|
169
778
|
|
|
170
|
-
msgid "
|
|
171
|
-
msgstr "
|
|
779
|
+
msgid "Add people"
|
|
780
|
+
msgstr "Add people"
|
|
172
781
|
|
|
173
|
-
msgid "
|
|
174
|
-
msgstr "
|
|
782
|
+
msgid "No selected users"
|
|
783
|
+
msgstr "No selected users"
|
|
175
784
|
|
|
176
|
-
msgid "
|
|
177
|
-
|
|
785
|
+
msgid ""
|
|
786
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
787
|
+
"invited)"
|
|
788
|
+
msgstr ""
|
|
789
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
790
|
+
"invited)"
|
|
178
791
|
|
|
179
|
-
msgid "
|
|
180
|
-
msgstr "
|
|
792
|
+
msgid "Search by email, full name or username"
|
|
793
|
+
msgstr "Search by email, full name or username"
|
|
181
794
|
|
|
182
|
-
msgid "
|
|
183
|
-
msgstr "
|
|
795
|
+
msgid "users"
|
|
796
|
+
msgstr "users"
|
|
184
797
|
|
|
185
|
-
msgid "
|
|
186
|
-
msgstr "
|
|
798
|
+
msgid "Add groups"
|
|
799
|
+
msgstr "Add groups"
|
|
187
800
|
|
|
188
|
-
msgid "
|
|
189
|
-
msgstr "
|
|
801
|
+
msgid "Group"
|
|
802
|
+
msgstr "Group"
|
|
190
803
|
|
|
191
|
-
msgid "
|
|
192
|
-
msgstr "
|
|
804
|
+
msgid "No selected groups"
|
|
805
|
+
msgstr "No selected groups"
|
|
193
806
|
|
|
194
|
-
msgid "
|
|
195
|
-
msgstr "
|
|
807
|
+
msgid "Search for groups"
|
|
808
|
+
msgstr "Search for groups"
|
|
196
809
|
|
|
197
|
-
msgid "
|
|
198
|
-
msgstr "
|
|
810
|
+
msgid "groups"
|
|
811
|
+
msgstr "groups"
|
|
199
812
|
|
|
200
|
-
msgid "
|
|
201
|
-
msgstr "
|
|
813
|
+
msgid "Add"
|
|
814
|
+
msgstr "Add"
|
|
202
815
|
|
|
203
|
-
msgid "
|
|
204
|
-
msgstr "
|
|
816
|
+
msgid "Notify people"
|
|
817
|
+
msgstr "Notify people"
|
|
205
818
|
|
|
206
|
-
msgid "
|
|
207
|
-
msgstr "
|
|
819
|
+
msgid "Notification message"
|
|
820
|
+
msgstr "Notification message"
|
|
208
821
|
|
|
209
|
-
msgid "
|
|
210
|
-
msgstr "
|
|
822
|
+
msgid "You are about to add"
|
|
823
|
+
msgstr "You are about to add"
|
|
211
824
|
|
|
212
|
-
msgid "
|
|
213
|
-
msgstr "
|
|
825
|
+
msgid "Access already granted"
|
|
826
|
+
msgstr "Access already granted"
|
|
214
827
|
|
|
215
|
-
msgid "
|
|
216
|
-
msgstr "
|
|
828
|
+
msgid "Can manage"
|
|
829
|
+
msgstr "Can manage"
|
|
217
830
|
|
|
218
|
-
msgid "
|
|
219
|
-
|
|
831
|
+
msgid ""
|
|
832
|
+
"Can manage access, edit drafts, view restricted files, and comment on "
|
|
833
|
+
"associated draft requests of all versions of this record."
|
|
834
|
+
msgstr ""
|
|
835
|
+
"Can manage access, edit drafts, view restricted files, and comment on "
|
|
836
|
+
"associated draft requests of all versions of this record."
|
|
220
837
|
|
|
221
|
-
msgid "
|
|
222
|
-
msgstr "
|
|
838
|
+
msgid "You don't have permissions to share this record."
|
|
839
|
+
msgstr "You don't have permissions to share this record."
|
|
223
840
|
|
|
224
|
-
msgid "
|
|
225
|
-
msgstr "
|
|
841
|
+
msgid "Share"
|
|
842
|
+
msgstr "Share"
|
|
226
843
|
|
|
227
|
-
msgid "
|
|
228
|
-
msgstr "
|
|
844
|
+
msgid "People"
|
|
845
|
+
msgstr "People"
|
|
229
846
|
|
|
230
|
-
msgid "
|
|
231
|
-
msgstr "
|
|
847
|
+
msgid "Groups"
|
|
848
|
+
msgstr "Groups"
|
|
232
849
|
|
|
233
|
-
msgid "
|
|
234
|
-
msgstr "
|
|
850
|
+
msgid "Settings"
|
|
851
|
+
msgstr "Settings"
|
|
235
852
|
|
|
236
|
-
msgid "
|
|
237
|
-
msgstr "
|
|
853
|
+
msgid "Share access"
|
|
854
|
+
msgstr "Share access"
|
|
238
855
|
|
|
239
|
-
msgid "
|
|
240
|
-
msgstr "
|
|
856
|
+
msgid "Link expiration"
|
|
857
|
+
msgstr "Link expiration"
|
|
241
858
|
|
|
242
|
-
msgid "
|
|
243
|
-
msgstr "
|
|
859
|
+
msgid "In 1 month"
|
|
860
|
+
msgstr "In 1 month"
|
|
244
861
|
|
|
245
|
-
msgid "
|
|
246
|
-
msgstr "
|
|
862
|
+
msgid "In 2 months"
|
|
863
|
+
msgstr "In 2 months"
|
|
247
864
|
|
|
248
|
-
msgid "
|
|
249
|
-
msgstr "
|
|
865
|
+
msgid "In 6 months"
|
|
866
|
+
msgstr "In 6 months"
|
|
250
867
|
|
|
251
|
-
msgid "
|
|
252
|
-
msgstr "
|
|
868
|
+
msgid "In 1 year"
|
|
869
|
+
msgstr "In 1 year"
|
|
253
870
|
|
|
254
|
-
msgid "
|
|
255
|
-
msgstr "
|
|
871
|
+
msgid "Invalid date format."
|
|
872
|
+
msgstr "Invalid date format."
|
|
256
873
|
|
|
257
|
-
msgid "
|
|
258
|
-
msgstr "
|
|
874
|
+
msgid "Access link expiration date cannot be in the past."
|
|
875
|
+
msgstr "Access link expiration date cannot be in the past."
|
|
259
876
|
|
|
260
|
-
msgid "
|
|
261
|
-
msgstr "
|
|
877
|
+
msgid "Access request"
|
|
878
|
+
msgstr "Access request"
|
|
879
|
+
|
|
880
|
+
msgid "Unable to change the expiration request settings."
|
|
881
|
+
msgstr "Unable to change the expiration request settings."
|
|
882
|
+
|
|
883
|
+
msgid "Expiration date: "
|
|
884
|
+
msgstr "Expiration date: "
|
|
885
|
+
|
|
886
|
+
msgid ""
|
|
887
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
888
|
+
"empty to set no expiration limit."
|
|
889
|
+
msgstr ""
|
|
890
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
891
|
+
"empty to set no expiration limit."
|
|
892
|
+
|
|
893
|
+
msgid "Link expiration date:"
|
|
894
|
+
msgstr "Link expiration date:"
|
|
895
|
+
|
|
896
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
897
|
+
msgstr "We couldn't find any matches for {{- search}}"
|
|
262
898
|
|
|
263
899
|
msgid "Start over"
|
|
264
900
|
msgstr "Start over"
|
|
@@ -266,14 +902,108 @@ msgstr "Start over"
|
|
|
266
902
|
msgid "ProTip"
|
|
267
903
|
msgstr "ProTip"
|
|
268
904
|
|
|
269
|
-
msgid "will give you all the publications from
|
|
270
|
-
msgstr "will give you all the publications from
|
|
905
|
+
msgid "will give you all the publications from 2025 until today."
|
|
906
|
+
msgstr "will give you all the publications from 2025 until today."
|
|
271
907
|
|
|
272
908
|
msgid "For more tips, check out our "
|
|
273
909
|
msgstr "For more tips, check out our "
|
|
274
910
|
|
|
911
|
+
msgid "Search guide"
|
|
912
|
+
msgstr "Search guide"
|
|
913
|
+
|
|
275
914
|
msgid "search guide"
|
|
276
915
|
msgstr "search guide"
|
|
277
916
|
|
|
278
|
-
msgid "
|
|
279
|
-
msgstr "
|
|
917
|
+
msgid "for defining advanced search queries."
|
|
918
|
+
msgstr "for defining advanced search queries."
|
|
919
|
+
|
|
920
|
+
msgid "This community has no subcommunities"
|
|
921
|
+
msgstr "This community has no subcommunities"
|
|
922
|
+
|
|
923
|
+
msgid "Logging in..."
|
|
924
|
+
msgstr "Logging in..."
|
|
925
|
+
|
|
926
|
+
msgid "Logging out..."
|
|
927
|
+
msgstr "Logging out..."
|
|
928
|
+
|
|
929
|
+
msgid "Search in my communities..."
|
|
930
|
+
msgstr "Search in my communities..."
|
|
931
|
+
|
|
932
|
+
msgid "My communities"
|
|
933
|
+
msgstr "My communities"
|
|
934
|
+
|
|
935
|
+
msgid "View"
|
|
936
|
+
msgstr "View"
|
|
937
|
+
|
|
938
|
+
msgid "Published in: {{- publishedIn }}"
|
|
939
|
+
msgstr "Published in: {{- publishedIn }}"
|
|
940
|
+
|
|
941
|
+
msgid "In review"
|
|
942
|
+
msgstr "In review"
|
|
943
|
+
|
|
944
|
+
msgid "Declined"
|
|
945
|
+
msgstr "Declined"
|
|
946
|
+
|
|
947
|
+
msgid "Expired"
|
|
948
|
+
msgstr "Expired"
|
|
949
|
+
|
|
950
|
+
msgid "Draft"
|
|
951
|
+
msgstr "Draft"
|
|
952
|
+
|
|
953
|
+
msgid "New version draft"
|
|
954
|
+
msgstr "New version draft"
|
|
955
|
+
|
|
956
|
+
msgid "open"
|
|
957
|
+
msgstr "open"
|
|
958
|
+
|
|
959
|
+
msgid "Open"
|
|
960
|
+
msgstr "Open"
|
|
961
|
+
|
|
962
|
+
msgid "unlock"
|
|
963
|
+
msgstr "unlock"
|
|
964
|
+
|
|
965
|
+
msgid "Get started!"
|
|
966
|
+
msgstr "Get started!"
|
|
967
|
+
|
|
968
|
+
msgid "Make your first upload!"
|
|
969
|
+
msgstr "Make your first upload!"
|
|
970
|
+
|
|
971
|
+
msgid "New upload"
|
|
972
|
+
msgstr "New upload"
|
|
973
|
+
|
|
974
|
+
msgid "Search in my uploads..."
|
|
975
|
+
msgstr "Search in my uploads..."
|
|
976
|
+
|
|
977
|
+
msgid "My uploads"
|
|
978
|
+
msgstr "My uploads"
|
|
979
|
+
|
|
980
|
+
msgid "ORCID profile"
|
|
981
|
+
msgstr "ORCID profile"
|
|
982
|
+
|
|
983
|
+
msgid "ORCID logo"
|
|
984
|
+
msgstr "ORCID logo"
|
|
985
|
+
|
|
986
|
+
msgid "ROR profile"
|
|
987
|
+
msgstr "ROR profile"
|
|
988
|
+
|
|
989
|
+
msgid "ROR logo"
|
|
990
|
+
msgstr "ROR logo"
|
|
991
|
+
|
|
992
|
+
msgid "GND profile"
|
|
993
|
+
msgstr "GND profile"
|
|
994
|
+
|
|
995
|
+
msgid "GND logo"
|
|
996
|
+
msgstr "GND logo"
|
|
997
|
+
|
|
998
|
+
msgid "No name"
|
|
999
|
+
msgstr "No name"
|
|
1000
|
+
|
|
1001
|
+
msgid "and {{count}} other"
|
|
1002
|
+
msgid_plural "and {{count}} other"
|
|
1003
|
+
msgstr[0] "and {{count}} other"
|
|
1004
|
+
msgstr[1] "and {{count}} other"
|
|
1005
|
+
|
|
1006
|
+
msgid "and {{count}} others"
|
|
1007
|
+
msgid_plural "and {{count}} others"
|
|
1008
|
+
msgstr[0] "and {{count}} others"
|
|
1009
|
+
msgstr[1] "and {{count}} others"
|