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
|
@@ -0,0 +1,961 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
4
|
+
# Jiří Kunčar <jiri.kuncar@gmail.com>, 2025
|
|
5
|
+
# Ivan Masár <helix84@centrum.sk>, 2025
|
|
6
|
+
# Mirek Simek <miroslav.simek@gmail.com>, 2025
|
|
7
|
+
# daniela.hornickova, 2025
|
|
8
|
+
#
|
|
9
|
+
msgid ""
|
|
10
|
+
msgstr ""
|
|
11
|
+
"Project-Id-Version: i18next-conv\n"
|
|
12
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
13
|
+
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
14
|
+
"Last-Translator: daniela.hornickova, 2025\n"
|
|
15
|
+
"Language-Team: Czech (https://app.transifex.com/inveniosoftware/teams/23537/cs/)\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Language: cs\n"
|
|
19
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
20
|
+
"mime-version: 1.0\n"
|
|
21
|
+
|
|
22
|
+
msgid "Basic information"
|
|
23
|
+
msgstr "Základní informace"
|
|
24
|
+
|
|
25
|
+
msgid "Impersonate user"
|
|
26
|
+
msgstr "Přihlásit se jako uživatel"
|
|
27
|
+
|
|
28
|
+
msgid "Impersonate"
|
|
29
|
+
msgstr "Přihlásit se jako ..."
|
|
30
|
+
|
|
31
|
+
msgid "You must accept this."
|
|
32
|
+
msgstr "Musíte toto přijmout."
|
|
33
|
+
|
|
34
|
+
msgid "Success"
|
|
35
|
+
msgstr "Úspěch"
|
|
36
|
+
|
|
37
|
+
msgid ""
|
|
38
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
39
|
+
msgstr ""
|
|
40
|
+
"Uživatel byl úspěšně přihlášen za jiného uživatele! Brzy budete přesměrováni"
|
|
41
|
+
" na úvodní stránku."
|
|
42
|
+
|
|
43
|
+
msgid "Unable to impersonate user."
|
|
44
|
+
msgstr "Nelze se přihlásit za jiného uživatele."
|
|
45
|
+
|
|
46
|
+
msgid ""
|
|
47
|
+
"Please read carefully and confirm the following statements before you "
|
|
48
|
+
"proceed."
|
|
49
|
+
msgstr ""
|
|
50
|
+
"Před pokračováním si prosím pečlivě přečtěte a potvrďte následující "
|
|
51
|
+
"prohlášení."
|
|
52
|
+
|
|
53
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
54
|
+
msgstr ""
|
|
55
|
+
"Chystáte se přihlásit jako uživatel <bold>{{email}}(id: {{id}})</bold>."
|
|
56
|
+
|
|
57
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
58
|
+
msgstr "Po dokončení se <bold>BUDETE MUSET</bold> odhlásit."
|
|
59
|
+
|
|
60
|
+
msgid "Close"
|
|
61
|
+
msgstr "Zavřít"
|
|
62
|
+
|
|
63
|
+
msgid "Set Quota"
|
|
64
|
+
msgstr "Nastavit kvótu"
|
|
65
|
+
|
|
66
|
+
msgid "Set quota in bytes"
|
|
67
|
+
msgstr "Nastavit kvótu v bytech"
|
|
68
|
+
|
|
69
|
+
msgid "Note"
|
|
70
|
+
msgstr "Poznámka"
|
|
71
|
+
|
|
72
|
+
msgid ""
|
|
73
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
74
|
+
" this user – it will NOT update quota of existing records."
|
|
75
|
+
msgstr ""
|
|
76
|
+
"Toto je výchozí kvóta, která bude použita pro VŠECHNY NOVÉ záznamy vytvořené"
|
|
77
|
+
" tímto uživatelem – NEAKTUALIZUJE kvótu existujících záznamů."
|
|
78
|
+
|
|
79
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
80
|
+
msgstr "Kvóta uživatele {{id}} byla nastavena na {{quota}} {{unit}}"
|
|
81
|
+
|
|
82
|
+
msgid "Unable to set quota."
|
|
83
|
+
msgstr "Nelze nastavit kvótu."
|
|
84
|
+
|
|
85
|
+
msgid "Quota size ({{unit}})"
|
|
86
|
+
msgstr "Velikost kvóty ({{unit}})"
|
|
87
|
+
|
|
88
|
+
msgid "Enter quota size..."
|
|
89
|
+
msgstr "Zadejte velikost kvóty..."
|
|
90
|
+
|
|
91
|
+
msgid "Max file size ({{unit}})"
|
|
92
|
+
msgstr "Maximální velikost souboru ({{unit}})"
|
|
93
|
+
|
|
94
|
+
msgid "Enter max file size..."
|
|
95
|
+
msgstr "Zadejte maximální velikost souboru..."
|
|
96
|
+
|
|
97
|
+
msgid "Ticket 1234"
|
|
98
|
+
msgstr "Lístek 1234"
|
|
99
|
+
|
|
100
|
+
msgid "Set quota"
|
|
101
|
+
msgstr "Nastavit kvótu"
|
|
102
|
+
|
|
103
|
+
msgid "Domain"
|
|
104
|
+
msgstr "Doména"
|
|
105
|
+
|
|
106
|
+
msgid "Flagged"
|
|
107
|
+
msgstr "Označen"
|
|
108
|
+
|
|
109
|
+
msgid "Organization"
|
|
110
|
+
msgstr "Organizace"
|
|
111
|
+
|
|
112
|
+
msgid "Company"
|
|
113
|
+
msgstr "Společnost"
|
|
114
|
+
|
|
115
|
+
msgid "Mail provider"
|
|
116
|
+
msgstr "Poskytovatel e-mailu"
|
|
117
|
+
|
|
118
|
+
msgid "Spammer"
|
|
119
|
+
msgstr "Spammer"
|
|
120
|
+
|
|
121
|
+
msgid "TLD"
|
|
122
|
+
msgstr "TLD"
|
|
123
|
+
|
|
124
|
+
msgid "Status"
|
|
125
|
+
msgstr "Status"
|
|
126
|
+
|
|
127
|
+
msgid "New"
|
|
128
|
+
msgstr "Nový"
|
|
129
|
+
|
|
130
|
+
msgid "Moderated"
|
|
131
|
+
msgstr "Moderován"
|
|
132
|
+
|
|
133
|
+
msgid "Verified"
|
|
134
|
+
msgstr "Ověřen"
|
|
135
|
+
|
|
136
|
+
msgid "Blocked"
|
|
137
|
+
msgstr "Blokován"
|
|
138
|
+
|
|
139
|
+
msgid "Users"
|
|
140
|
+
msgstr "Uživatelé"
|
|
141
|
+
|
|
142
|
+
msgid "Active"
|
|
143
|
+
msgstr "Aktivní"
|
|
144
|
+
|
|
145
|
+
msgid "Inactive"
|
|
146
|
+
msgstr "Neaktivní"
|
|
147
|
+
|
|
148
|
+
msgid "Confirmed"
|
|
149
|
+
msgstr "Potvrzen"
|
|
150
|
+
|
|
151
|
+
msgid "Links"
|
|
152
|
+
msgstr "Odkazy"
|
|
153
|
+
|
|
154
|
+
msgid "Set quota for record {{recordId}}"
|
|
155
|
+
msgstr "Nastavit kvótu pro záznam {{recordId}}"
|
|
156
|
+
|
|
157
|
+
msgid "Delete record"
|
|
158
|
+
msgstr "Smazat záznam"
|
|
159
|
+
|
|
160
|
+
msgid "Restore record"
|
|
161
|
+
msgstr "Obnovit záznam"
|
|
162
|
+
|
|
163
|
+
msgid "Unavailability statement"
|
|
164
|
+
msgstr "Prohlášení o nedostupnosti"
|
|
165
|
+
|
|
166
|
+
msgid "Record {{id}} was restored."
|
|
167
|
+
msgstr "Záznam {{id}} byl obnoven."
|
|
168
|
+
|
|
169
|
+
msgid "Unable to restore."
|
|
170
|
+
msgstr "Nelze obnovit."
|
|
171
|
+
|
|
172
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
173
|
+
msgstr "Jste si jisti, že chcete obnovit #{{id}}"
|
|
174
|
+
|
|
175
|
+
msgid "Published"
|
|
176
|
+
msgstr "Publikováno"
|
|
177
|
+
|
|
178
|
+
msgid "Deleted"
|
|
179
|
+
msgstr "Smazaný"
|
|
180
|
+
|
|
181
|
+
msgid "Scheduled for purge"
|
|
182
|
+
msgstr "Naplánováno k úplnému vymazání"
|
|
183
|
+
|
|
184
|
+
msgid "Empty draft title"
|
|
185
|
+
msgstr "Prázdný název konceptu"
|
|
186
|
+
|
|
187
|
+
msgid "version"
|
|
188
|
+
msgstr "verze"
|
|
189
|
+
|
|
190
|
+
msgid "Owner"
|
|
191
|
+
msgstr "Vlastník"
|
|
192
|
+
|
|
193
|
+
msgid "Created"
|
|
194
|
+
msgstr "Vytvořeno"
|
|
195
|
+
|
|
196
|
+
msgid "Files"
|
|
197
|
+
msgstr "Soubory"
|
|
198
|
+
|
|
199
|
+
msgid "Stats"
|
|
200
|
+
msgstr "Statistiky"
|
|
201
|
+
|
|
202
|
+
msgid "Record {{id}} was deleted."
|
|
203
|
+
msgstr "Záznam {{id}} byl smazán."
|
|
204
|
+
|
|
205
|
+
msgid "Unable to delete"
|
|
206
|
+
msgstr "Nelze smazat"
|
|
207
|
+
|
|
208
|
+
msgid "Public"
|
|
209
|
+
msgstr "Veřejný"
|
|
210
|
+
|
|
211
|
+
msgid "Hidden"
|
|
212
|
+
msgstr "Skrytý"
|
|
213
|
+
|
|
214
|
+
msgid ""
|
|
215
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
216
|
+
"to provide a public tombstone when deactivating public records."
|
|
217
|
+
msgstr ""
|
|
218
|
+
"Náhrobek je nastaven na skrytý, ale Váš záznam je veřejný. Doporučuje se "
|
|
219
|
+
"poskytnout veřejný náhrobek při deaktivaci veřejných záznamů."
|
|
220
|
+
|
|
221
|
+
msgid ""
|
|
222
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
223
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
224
|
+
"tombstone below."
|
|
225
|
+
msgstr ""
|
|
226
|
+
"RIZIKO ÚNIKU INFORMACÍ: Náhrobek je nastaven na veřejný, ale Váš záznam je s"
|
|
227
|
+
" omezeným přístupem. Ujistěte se, že v náhrobku níže nejsou sdíleny žádné "
|
|
228
|
+
"neveřejné informace."
|
|
229
|
+
|
|
230
|
+
msgid "Bibliographic citation"
|
|
231
|
+
msgstr "Bibliografická citace"
|
|
232
|
+
|
|
233
|
+
msgid ""
|
|
234
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
235
|
+
"default."
|
|
236
|
+
msgstr ""
|
|
237
|
+
"Zadejte text citace. Prázdné pole bude automaticky vyplněno citací APA."
|
|
238
|
+
|
|
239
|
+
msgid "Public note"
|
|
240
|
+
msgstr "Veřejná poznámka"
|
|
241
|
+
|
|
242
|
+
msgid "User {{name}} was approved."
|
|
243
|
+
msgstr "Uživatel {{name}} byl schválen."
|
|
244
|
+
|
|
245
|
+
msgid "User {{name}} is blocked."
|
|
246
|
+
msgstr "Uživatel {{name}} je blokován."
|
|
247
|
+
|
|
248
|
+
msgid "Error"
|
|
249
|
+
msgstr "Chyba"
|
|
250
|
+
|
|
251
|
+
msgid "User"
|
|
252
|
+
msgstr "Uživatel"
|
|
253
|
+
|
|
254
|
+
msgid "Email"
|
|
255
|
+
msgstr "E-mail"
|
|
256
|
+
|
|
257
|
+
msgid "Email domain"
|
|
258
|
+
msgstr "Doména e-mailu"
|
|
259
|
+
|
|
260
|
+
msgid "Actions"
|
|
261
|
+
msgstr "Akce"
|
|
262
|
+
|
|
263
|
+
msgid "Records"
|
|
264
|
+
msgstr "Záznamy"
|
|
265
|
+
|
|
266
|
+
msgid "Username"
|
|
267
|
+
msgstr "Uživatelské jméno"
|
|
268
|
+
|
|
269
|
+
msgid "GitHub"
|
|
270
|
+
msgstr "GitHub"
|
|
271
|
+
|
|
272
|
+
msgid "Updated"
|
|
273
|
+
msgstr "Aktualizováno"
|
|
274
|
+
|
|
275
|
+
msgid "Restore"
|
|
276
|
+
msgstr "Obnovit"
|
|
277
|
+
|
|
278
|
+
msgid "Restored"
|
|
279
|
+
msgstr "Obnoveno"
|
|
280
|
+
|
|
281
|
+
msgid "Block"
|
|
282
|
+
msgstr "Blokovat"
|
|
283
|
+
|
|
284
|
+
msgid "Suspend"
|
|
285
|
+
msgstr "Pozastavit"
|
|
286
|
+
|
|
287
|
+
msgid "Suspended"
|
|
288
|
+
msgstr "Pozastaveno"
|
|
289
|
+
|
|
290
|
+
msgid "Approve"
|
|
291
|
+
msgstr "Schválit"
|
|
292
|
+
|
|
293
|
+
msgid "Approved"
|
|
294
|
+
msgstr "Schváleno"
|
|
295
|
+
|
|
296
|
+
msgid "Activate"
|
|
297
|
+
msgstr "Aktivovat"
|
|
298
|
+
|
|
299
|
+
msgid "Activated"
|
|
300
|
+
msgstr "Aktivováno"
|
|
301
|
+
|
|
302
|
+
msgid "Set default quota for {{email}}"
|
|
303
|
+
msgstr "Nastavit výchozí kvótu pro {{email}}"
|
|
304
|
+
|
|
305
|
+
msgid "Filter results"
|
|
306
|
+
msgstr "Filtrovat výsledky"
|
|
307
|
+
|
|
308
|
+
msgid "Search records in community..."
|
|
309
|
+
msgstr "Hledat záznamy v komunitě..."
|
|
310
|
+
|
|
311
|
+
msgid "Sort by"
|
|
312
|
+
msgstr "Řadit podle"
|
|
313
|
+
|
|
314
|
+
msgid " results found"
|
|
315
|
+
msgid_plural " results found"
|
|
316
|
+
msgstr[0] " nalezený výsledek"
|
|
317
|
+
msgstr[1] " nalezené výsledky"
|
|
318
|
+
msgstr[2] " nalezených výsledků"
|
|
319
|
+
msgstr[3] " nalezených výsledků"
|
|
320
|
+
|
|
321
|
+
msgid "Search records..."
|
|
322
|
+
msgstr "Hledat záznamy..."
|
|
323
|
+
|
|
324
|
+
msgid "Search"
|
|
325
|
+
msgstr "Hledat"
|
|
326
|
+
|
|
327
|
+
msgid "Views"
|
|
328
|
+
msgstr "Zobrazení"
|
|
329
|
+
|
|
330
|
+
msgid "Downloads"
|
|
331
|
+
msgstr "Stažení"
|
|
332
|
+
|
|
333
|
+
msgid "Copy to clipboard"
|
|
334
|
+
msgstr "Zkopírovat do schránky"
|
|
335
|
+
|
|
336
|
+
msgid "Copied!"
|
|
337
|
+
msgstr "Zkopírováno!"
|
|
338
|
+
|
|
339
|
+
msgid "Part of "
|
|
340
|
+
msgstr "Část "
|
|
341
|
+
|
|
342
|
+
msgid "No creation date found."
|
|
343
|
+
msgstr "Nenalezeno datum vytvoření."
|
|
344
|
+
|
|
345
|
+
msgid "No description"
|
|
346
|
+
msgstr "Bez popisu"
|
|
347
|
+
|
|
348
|
+
msgid "No publication date found."
|
|
349
|
+
msgstr "Nenalezeno datum publikování."
|
|
350
|
+
|
|
351
|
+
msgid "No resource type"
|
|
352
|
+
msgstr "Bez typu záznamu"
|
|
353
|
+
|
|
354
|
+
msgid "No title"
|
|
355
|
+
msgstr "Bez názvu"
|
|
356
|
+
|
|
357
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
358
|
+
msgstr "Nahráno dne {{uploadDate}}"
|
|
359
|
+
|
|
360
|
+
msgid "Published in: {{publishInfo}}"
|
|
361
|
+
msgstr "Publikováno v: {{publishInfo}}"
|
|
362
|
+
|
|
363
|
+
msgid "{{count}} more versions exist for this record"
|
|
364
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
365
|
+
msgstr[0] "Existuje {{count}} další verze tohoto záznamu"
|
|
366
|
+
msgstr[1] "Existují {{count}} další verze tohoto záznamu"
|
|
367
|
+
msgstr[2] "Existuje {{count}} dalších verzí tohoto záznamu"
|
|
368
|
+
msgstr[3] "Existuje {{count}} dalších verzí tohoto záznamu"
|
|
369
|
+
|
|
370
|
+
msgid "Person"
|
|
371
|
+
msgstr "Osoba"
|
|
372
|
+
|
|
373
|
+
msgid "The record has no files."
|
|
374
|
+
msgstr "Záznam nemá žádné soubory."
|
|
375
|
+
|
|
376
|
+
msgid "Creators"
|
|
377
|
+
msgstr "Autoři"
|
|
378
|
+
|
|
379
|
+
msgid "Recommended information"
|
|
380
|
+
msgstr "Doporučené informace"
|
|
381
|
+
|
|
382
|
+
msgid "Add contributor"
|
|
383
|
+
msgstr "Přidat přispěvovatele"
|
|
384
|
+
|
|
385
|
+
msgid "Contributors"
|
|
386
|
+
msgstr "Přispěvatelé"
|
|
387
|
+
|
|
388
|
+
msgid "Edit contributor"
|
|
389
|
+
msgstr "Upravit přispěvatele"
|
|
390
|
+
|
|
391
|
+
msgid "Funding"
|
|
392
|
+
msgstr "Financování"
|
|
393
|
+
|
|
394
|
+
msgid "Awards/Grants"
|
|
395
|
+
msgstr "Ocenění/Granty"
|
|
396
|
+
|
|
397
|
+
msgid "Alternate identifiers"
|
|
398
|
+
msgstr "Další identifikátory"
|
|
399
|
+
|
|
400
|
+
msgid "Related works"
|
|
401
|
+
msgstr "Související práce"
|
|
402
|
+
|
|
403
|
+
msgid "References"
|
|
404
|
+
msgstr "Zdroje"
|
|
405
|
+
|
|
406
|
+
msgid "Visibility"
|
|
407
|
+
msgstr "Viditelnost"
|
|
408
|
+
|
|
409
|
+
msgid "More"
|
|
410
|
+
msgstr "Více"
|
|
411
|
+
|
|
412
|
+
msgid "Unable to request the access."
|
|
413
|
+
msgstr "Nelze požádat o přístup."
|
|
414
|
+
|
|
415
|
+
msgid "Your email address"
|
|
416
|
+
msgstr "Vaše e-mailová adresa"
|
|
417
|
+
|
|
418
|
+
msgid "Email address"
|
|
419
|
+
msgstr "E-mailová adresa"
|
|
420
|
+
|
|
421
|
+
msgid "Your full name"
|
|
422
|
+
msgstr "Vaše celé jméno"
|
|
423
|
+
|
|
424
|
+
msgid "Full name"
|
|
425
|
+
msgstr "Celé jméno"
|
|
426
|
+
|
|
427
|
+
msgid "Request message"
|
|
428
|
+
msgstr "Zpráva žádosti"
|
|
429
|
+
|
|
430
|
+
msgid ""
|
|
431
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
432
|
+
"the record"
|
|
433
|
+
msgstr ""
|
|
434
|
+
"Souhlasím s tím, že mé celé jméno a e-mailová adresa budou sdíleny s "
|
|
435
|
+
"majiteli záznamu"
|
|
436
|
+
|
|
437
|
+
msgid "Request access"
|
|
438
|
+
msgstr "Zažádat o přístup"
|
|
439
|
+
|
|
440
|
+
msgid "Email confirmation needed"
|
|
441
|
+
msgstr "Vyžadováno potvrzení e-mailu"
|
|
442
|
+
|
|
443
|
+
msgid "We have sent you an email to verify your address."
|
|
444
|
+
msgstr "Byl Vám zaslán e-mail k ověření Vaší e-mailové adresy."
|
|
445
|
+
|
|
446
|
+
msgid ""
|
|
447
|
+
"\n"
|
|
448
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
449
|
+
" "
|
|
450
|
+
msgstr ""
|
|
451
|
+
"\n"
|
|
452
|
+
"Zkontrolujte si prosím e-mail a následujte pokyny pro dokončení žádosti o přístup."
|
|
453
|
+
|
|
454
|
+
msgid "An error occurred while fetching communities."
|
|
455
|
+
msgstr "Došlo k chybě při načítání komunit."
|
|
456
|
+
|
|
457
|
+
msgid "Communities"
|
|
458
|
+
msgstr "Komunity"
|
|
459
|
+
|
|
460
|
+
msgid "View all {{count}} communities"
|
|
461
|
+
msgid_plural "View all {{count}} communities"
|
|
462
|
+
msgstr[0] "Zobrazit {{count}} komunitu"
|
|
463
|
+
msgstr[1] "Zobrazit {{count}} komunity"
|
|
464
|
+
msgstr[2] "Zobrazit {{count}} komunit"
|
|
465
|
+
msgstr[3] "Zobrazit všech {{count}} komunit"
|
|
466
|
+
|
|
467
|
+
msgid "Submit to community"
|
|
468
|
+
msgstr "Odeslat do komunity"
|
|
469
|
+
|
|
470
|
+
msgid "Pending submissions"
|
|
471
|
+
msgstr "Nevyřízené příspěvky"
|
|
472
|
+
|
|
473
|
+
msgid "Manage communities"
|
|
474
|
+
msgstr "Spravovat komunity"
|
|
475
|
+
|
|
476
|
+
msgid "Community management menu dropdown"
|
|
477
|
+
msgstr "Rozbalovací nabídka správy komunity"
|
|
478
|
+
|
|
479
|
+
msgid "Edit"
|
|
480
|
+
msgstr "Upravit"
|
|
481
|
+
|
|
482
|
+
msgid "Export selection"
|
|
483
|
+
msgstr "Exportovat výběr"
|
|
484
|
+
|
|
485
|
+
msgid "Download file"
|
|
486
|
+
msgstr "Stáhnout soubor"
|
|
487
|
+
|
|
488
|
+
msgid "Export"
|
|
489
|
+
msgstr "Export"
|
|
490
|
+
|
|
491
|
+
msgid "Manage"
|
|
492
|
+
msgstr "Spravovat"
|
|
493
|
+
|
|
494
|
+
msgid "Manage record"
|
|
495
|
+
msgstr "Spravovat záznam"
|
|
496
|
+
|
|
497
|
+
msgid "Manage user"
|
|
498
|
+
msgstr "Spravovat uživatele"
|
|
499
|
+
|
|
500
|
+
msgid "Remove branding"
|
|
501
|
+
msgstr "Odstranit branding"
|
|
502
|
+
|
|
503
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
504
|
+
msgstr "{{communityTitle}} je výchozí branding pro tento záznam"
|
|
505
|
+
|
|
506
|
+
msgid ""
|
|
507
|
+
"Remove this community from appearing on top of the record details page."
|
|
508
|
+
msgstr ""
|
|
509
|
+
"Odstranit tuto komunitu tak, aby se nezobrazovala v horní části stránky s "
|
|
510
|
+
"podrobnostmi o záznamu."
|
|
511
|
+
|
|
512
|
+
msgid "Set branding"
|
|
513
|
+
msgstr "Nastavit branding"
|
|
514
|
+
|
|
515
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
516
|
+
msgstr "Nastavit {{communityTitle}} jako výchozí branding pro tento záznam"
|
|
517
|
+
|
|
518
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
519
|
+
msgstr ""
|
|
520
|
+
"Nastavte tuto komunitu tak, aby se zobrazovala v horní části stránky s "
|
|
521
|
+
"podrobnostmi o záznamu."
|
|
522
|
+
|
|
523
|
+
msgid "Pending communities"
|
|
524
|
+
msgstr "Komunity čekající na schválení"
|
|
525
|
+
|
|
526
|
+
msgid "Search for pending submissions to communities..."
|
|
527
|
+
msgstr "Hledat příspěvky čekající na schválení do komunit..."
|
|
528
|
+
|
|
529
|
+
msgid "An error occurred while generating the citation."
|
|
530
|
+
msgstr "Došlo k chybě při generování citace."
|
|
531
|
+
|
|
532
|
+
msgid "Style"
|
|
533
|
+
msgstr "Styl"
|
|
534
|
+
|
|
535
|
+
msgid "This record is not included in any communities yet."
|
|
536
|
+
msgstr "Tento záznam ještě není zahrnut v žádné komunitě."
|
|
537
|
+
|
|
538
|
+
msgid "Search for community..."
|
|
539
|
+
msgstr "Hledat komunitu..."
|
|
540
|
+
|
|
541
|
+
msgid "Record submitted"
|
|
542
|
+
msgstr "Záznam odeslán"
|
|
543
|
+
|
|
544
|
+
msgid "Review requested"
|
|
545
|
+
msgstr "Požádáno o kontrolu záznamu"
|
|
546
|
+
|
|
547
|
+
msgid "Search in all communities"
|
|
548
|
+
msgstr "Hledat ve všech komunitách"
|
|
549
|
+
|
|
550
|
+
msgid "Search in my communities"
|
|
551
|
+
msgstr "Hledat v mých komunitách"
|
|
552
|
+
|
|
553
|
+
msgid "Select a community"
|
|
554
|
+
msgstr "Vyberte komunitu"
|
|
555
|
+
|
|
556
|
+
msgid "Version {{- version}}"
|
|
557
|
+
msgstr "Verze {{- version}}"
|
|
558
|
+
|
|
559
|
+
msgid "Preview"
|
|
560
|
+
msgstr "Náhled"
|
|
561
|
+
|
|
562
|
+
msgid "Only published versions are displayed."
|
|
563
|
+
msgstr "Jsou zobrazeny pouze publikované verze."
|
|
564
|
+
|
|
565
|
+
msgid "An error occurred while fetching the versions."
|
|
566
|
+
msgstr "Došlo k chybě při načítání verzí."
|
|
567
|
+
|
|
568
|
+
msgid "View all {{count}} versions"
|
|
569
|
+
msgid_plural "View all {{count}} versions"
|
|
570
|
+
msgstr[0] "Zobrazit {{count}} verzi"
|
|
571
|
+
msgstr[1] "Zobrazit všechny {{count}} verze"
|
|
572
|
+
msgstr[2] "Zobrazit všech {{count}} verzí"
|
|
573
|
+
msgstr[3] "Zobrazit všech {{count}} verzí"
|
|
574
|
+
|
|
575
|
+
msgid ""
|
|
576
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
577
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
578
|
+
"latest one. <5>Read more</5>.</0>"
|
|
579
|
+
msgstr ""
|
|
580
|
+
"<0><0>Citovat všechny verze?</0> Všechny verze můžete citovat pomocí DOI "
|
|
581
|
+
"<3></3>. Toto DOI reprezentuje všechny verze a vždy se odkazuje na "
|
|
582
|
+
"nejnovější verzi. <5>Čtěte dál</5>.</0>"
|
|
583
|
+
|
|
584
|
+
msgid ""
|
|
585
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
586
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
587
|
+
"more</4>.</0>"
|
|
588
|
+
msgstr ""
|
|
589
|
+
"<0><0>Citovat všechny verze?</0> Všechny verze můžete citovat pomocí DOI. "
|
|
590
|
+
"DOI je registrováno, když je publikována první verze. <4>Čtěte dál</4>.</0>"
|
|
591
|
+
|
|
592
|
+
msgid "Remove"
|
|
593
|
+
msgstr "Odstranit"
|
|
594
|
+
|
|
595
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
596
|
+
msgstr "Odstranit {{communityTitle}} z tohoto záznamu"
|
|
597
|
+
|
|
598
|
+
msgid "Remove community"
|
|
599
|
+
msgstr "Odstranit komunitu"
|
|
600
|
+
|
|
601
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
602
|
+
msgstr "Jste si jisti, že chcete odstranit záznam z komunity?"
|
|
603
|
+
|
|
604
|
+
msgid "I understand the consequences:"
|
|
605
|
+
msgstr "Rozumím následkům:"
|
|
606
|
+
|
|
607
|
+
msgid ""
|
|
608
|
+
"The record can only be re-included in the community by going through a new "
|
|
609
|
+
"review by the community curators."
|
|
610
|
+
msgstr ""
|
|
611
|
+
"Záznam může být znovu zahrnut do komunity pouze po absolvování nové kontroly"
|
|
612
|
+
" správci komunity."
|
|
613
|
+
|
|
614
|
+
msgid "Something went wrong"
|
|
615
|
+
msgstr "Něco se pokazilo"
|
|
616
|
+
|
|
617
|
+
msgid "Cancel removal"
|
|
618
|
+
msgstr "Stornovat odstranění"
|
|
619
|
+
|
|
620
|
+
msgid "Cancel"
|
|
621
|
+
msgstr "Stornovat"
|
|
622
|
+
|
|
623
|
+
msgid "Confirm removal"
|
|
624
|
+
msgstr "Potvrdit odstranění"
|
|
625
|
+
|
|
626
|
+
msgid ""
|
|
627
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
628
|
+
"their access</4> to the record."
|
|
629
|
+
msgstr ""
|
|
630
|
+
"Členové komunity <1>\"<1>{{communityTitle}}</1>\"</1> <4>přijdou o "
|
|
631
|
+
"přístup</4> k záznamu."
|
|
632
|
+
|
|
633
|
+
msgid "Select permissions"
|
|
634
|
+
msgstr "Vyberte oprávnění"
|
|
635
|
+
|
|
636
|
+
msgid "Short name for your link (optional)."
|
|
637
|
+
msgstr "Krátký název vašeho odkazu (nepovinné)."
|
|
638
|
+
|
|
639
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
640
|
+
msgstr "Formát data expirace: RRRR-MM-DD"
|
|
641
|
+
|
|
642
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
643
|
+
msgstr "Datum expirace: RRRR-MM-DD nebo nikdy, pokud je prázdné (nepovinné)."
|
|
644
|
+
|
|
645
|
+
msgid "Create a new link"
|
|
646
|
+
msgstr "Vytvořit nový odkaz"
|
|
647
|
+
|
|
648
|
+
msgid "Link title"
|
|
649
|
+
msgstr "Název odkazu"
|
|
650
|
+
|
|
651
|
+
msgid "Expires at"
|
|
652
|
+
msgstr "Platnost vyprší"
|
|
653
|
+
|
|
654
|
+
msgid "Never"
|
|
655
|
+
msgstr "Nikdy"
|
|
656
|
+
|
|
657
|
+
msgid "Access"
|
|
658
|
+
msgstr "Přístup"
|
|
659
|
+
|
|
660
|
+
msgid "Delete"
|
|
661
|
+
msgstr "Smazat"
|
|
662
|
+
|
|
663
|
+
msgid "Copy link"
|
|
664
|
+
msgstr "Kopírovat odkaz"
|
|
665
|
+
|
|
666
|
+
msgid "Can view"
|
|
667
|
+
msgstr "Možnost zobrazení"
|
|
668
|
+
|
|
669
|
+
msgid "Can view restricted files of all versions of this record."
|
|
670
|
+
msgstr ""
|
|
671
|
+
"Může zobrazit soubory s omezeným přístupem ve všech verzích tohoto záznamu."
|
|
672
|
+
|
|
673
|
+
msgid "Can preview drafts"
|
|
674
|
+
msgstr "Možnost náhledu konceptů"
|
|
675
|
+
|
|
676
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
677
|
+
msgstr ""
|
|
678
|
+
"Může zobrazit koncepty a soubory s omezeným přístupem ve všech verzích "
|
|
679
|
+
"tohoto záznamu."
|
|
680
|
+
|
|
681
|
+
msgid "Can edit"
|
|
682
|
+
msgstr "Možnost editace"
|
|
683
|
+
|
|
684
|
+
msgid ""
|
|
685
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
686
|
+
msgstr ""
|
|
687
|
+
"Může modifikovat koncepty a zobrazit soubory s omezeným přístupem ve všech "
|
|
688
|
+
"verzích tohoto záznamu."
|
|
689
|
+
|
|
690
|
+
msgid ""
|
|
691
|
+
"Can view (view access link can be created only after the record is "
|
|
692
|
+
"published)"
|
|
693
|
+
msgstr ""
|
|
694
|
+
"Možnost zobrazení záznamu (odkaz na zobrazení může být vytvořen až po "
|
|
695
|
+
"publikaci záznamu)"
|
|
696
|
+
|
|
697
|
+
msgid "Expires"
|
|
698
|
+
msgstr "Vypršení platnosti"
|
|
699
|
+
|
|
700
|
+
msgid "This record has no links generated yet."
|
|
701
|
+
msgstr "Tento záznam zatím nemá žádné vygenerované odkazy."
|
|
702
|
+
|
|
703
|
+
msgid "Unable to change the access request settings."
|
|
704
|
+
msgstr "Nelze změnit nastavení žádosti o přístup."
|
|
705
|
+
|
|
706
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
707
|
+
msgstr ""
|
|
708
|
+
"Umožnit ověřeným uživatelům žádat o přístup k souborům s omezeným přístupem."
|
|
709
|
+
|
|
710
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
711
|
+
msgstr ""
|
|
712
|
+
"Umožnit neověřeným uživatelům žádat o přístup k souborům s omezeným "
|
|
713
|
+
"přístupem."
|
|
714
|
+
|
|
715
|
+
msgid "Accept conditions"
|
|
716
|
+
msgstr "Přijmout podmínky"
|
|
717
|
+
|
|
718
|
+
msgid "Advanced options"
|
|
719
|
+
msgstr "Pokročilé možnosti"
|
|
720
|
+
|
|
721
|
+
msgid "Save"
|
|
722
|
+
msgstr "Uložit"
|
|
723
|
+
|
|
724
|
+
msgid "No user has access to this record yet."
|
|
725
|
+
msgstr "K tomuto záznamu zatím nemá přístup žádný uživatel."
|
|
726
|
+
|
|
727
|
+
msgid "People with access"
|
|
728
|
+
msgstr "Uživatelé s přístupem"
|
|
729
|
+
|
|
730
|
+
msgid "No group has access to this record yet."
|
|
731
|
+
msgstr "K tomuto záznamu zatím nemá přístup žádná skupina."
|
|
732
|
+
|
|
733
|
+
msgid "Groups with access"
|
|
734
|
+
msgstr "Skupiny s přístupem"
|
|
735
|
+
|
|
736
|
+
msgid "You"
|
|
737
|
+
msgstr "Vy"
|
|
738
|
+
|
|
739
|
+
msgid "Add people"
|
|
740
|
+
msgstr "Přidat osoby"
|
|
741
|
+
|
|
742
|
+
msgid "No selected users"
|
|
743
|
+
msgstr "Žádní vybraní uživatelé"
|
|
744
|
+
|
|
745
|
+
msgid ""
|
|
746
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
747
|
+
"invited)"
|
|
748
|
+
msgstr ""
|
|
749
|
+
"Hledat uživatele, kterým bude udělen přístup (mohou být pozváni pouze "
|
|
750
|
+
"uživatelé s veřejným profilem)"
|
|
751
|
+
|
|
752
|
+
msgid "Search by email, full name or username"
|
|
753
|
+
msgstr "Hledat podle emailu, plného jména nebo uživatelského jména"
|
|
754
|
+
|
|
755
|
+
msgid "users"
|
|
756
|
+
msgstr "uživatelé"
|
|
757
|
+
|
|
758
|
+
msgid "Add groups"
|
|
759
|
+
msgstr "Přidat skupiny"
|
|
760
|
+
|
|
761
|
+
msgid "Group"
|
|
762
|
+
msgstr "Skupina"
|
|
763
|
+
|
|
764
|
+
msgid "No selected groups"
|
|
765
|
+
msgstr "Žádné vybrané skupiny"
|
|
766
|
+
|
|
767
|
+
msgid "Search for groups"
|
|
768
|
+
msgstr "Hledat skupiny"
|
|
769
|
+
|
|
770
|
+
msgid "groups"
|
|
771
|
+
msgstr "skupiny"
|
|
772
|
+
|
|
773
|
+
msgid "Add"
|
|
774
|
+
msgstr "Přidat"
|
|
775
|
+
|
|
776
|
+
msgid "Notify people"
|
|
777
|
+
msgstr "Upozornit uživatele"
|
|
778
|
+
|
|
779
|
+
msgid "Notification message"
|
|
780
|
+
msgstr "Text upozornění"
|
|
781
|
+
|
|
782
|
+
msgid "You are about to add"
|
|
783
|
+
msgstr "Chystáte se přidat"
|
|
784
|
+
|
|
785
|
+
msgid "Access already granted"
|
|
786
|
+
msgstr "Přístup již byl udělen"
|
|
787
|
+
|
|
788
|
+
msgid "Can manage"
|
|
789
|
+
msgstr "Může spravovat"
|
|
790
|
+
|
|
791
|
+
msgid ""
|
|
792
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
793
|
+
"this record."
|
|
794
|
+
msgstr ""
|
|
795
|
+
"Může spravovat přístup, upravovat koncepty a zobrazovat soubory s omezeným "
|
|
796
|
+
"přístupem všech verzí tohoto záznamu."
|
|
797
|
+
|
|
798
|
+
msgid "You don't have permissions to share this record."
|
|
799
|
+
msgstr "Nemáte právo na sdílení tohoto záznamu."
|
|
800
|
+
|
|
801
|
+
msgid "Share"
|
|
802
|
+
msgstr "Sdílet"
|
|
803
|
+
|
|
804
|
+
msgid "People"
|
|
805
|
+
msgstr "Osoby"
|
|
806
|
+
|
|
807
|
+
msgid "Groups"
|
|
808
|
+
msgstr "Skupiny"
|
|
809
|
+
|
|
810
|
+
msgid "Settings"
|
|
811
|
+
msgstr "Nastavení"
|
|
812
|
+
|
|
813
|
+
msgid "Share access"
|
|
814
|
+
msgstr "Sdílet přístup"
|
|
815
|
+
|
|
816
|
+
msgid "Link expiration"
|
|
817
|
+
msgstr "Vypršení platnosti odkazu"
|
|
818
|
+
|
|
819
|
+
msgid "In 1 month"
|
|
820
|
+
msgstr "za 1 měsíc"
|
|
821
|
+
|
|
822
|
+
msgid "In 2 months"
|
|
823
|
+
msgstr "za 2 měsíce"
|
|
824
|
+
|
|
825
|
+
msgid "In 6 months"
|
|
826
|
+
msgstr "za 6 měsíců"
|
|
827
|
+
|
|
828
|
+
msgid "In 1 year"
|
|
829
|
+
msgstr "za 1 rok"
|
|
830
|
+
|
|
831
|
+
msgid "Invalid date format."
|
|
832
|
+
msgstr "Chybný formát datumu."
|
|
833
|
+
|
|
834
|
+
msgid "Access link expiration date cannot be in the past."
|
|
835
|
+
msgstr "Datum vypršení odkazu pro přístup nemůže být v minulosti."
|
|
836
|
+
|
|
837
|
+
msgid "Access request"
|
|
838
|
+
msgstr "Žádost o přístup"
|
|
839
|
+
|
|
840
|
+
msgid "Unable to change the expiration request settings."
|
|
841
|
+
msgstr "Není možné změnit nastavení žádosti o vypršení platnosti."
|
|
842
|
+
|
|
843
|
+
msgid "Expiration date: "
|
|
844
|
+
msgstr "Datum vypršení:"
|
|
845
|
+
|
|
846
|
+
msgid ""
|
|
847
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
848
|
+
"empty to set no expiration limit."
|
|
849
|
+
msgstr ""
|
|
850
|
+
"Formát: RRRR-MM-DD. Udělený přístup vyprší k uvedenému datu. Nechte prázdné "
|
|
851
|
+
"pro nastavení bez časového omezení."
|
|
852
|
+
|
|
853
|
+
msgid "Link expiration date:"
|
|
854
|
+
msgstr "Datum expirace odkazu:"
|
|
855
|
+
|
|
856
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
857
|
+
msgstr "Nemůžeme najít žádné záznamy odpovídající {{- search}}"
|
|
858
|
+
|
|
859
|
+
msgid "Start over"
|
|
860
|
+
msgstr "Začít znovu"
|
|
861
|
+
|
|
862
|
+
msgid "ProTip"
|
|
863
|
+
msgstr "Pro tip"
|
|
864
|
+
|
|
865
|
+
msgid "Search guide"
|
|
866
|
+
msgstr "Průvodce vyhledáváním"
|
|
867
|
+
|
|
868
|
+
msgid ""
|
|
869
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
870
|
+
"search queries.</0>"
|
|
871
|
+
msgstr ""
|
|
872
|
+
"<0>Pro více tipů se podívejte na <2>náš průvodce vyhledáváním</2> pro "
|
|
873
|
+
"definování pokročilých vyhledávacích dotazů.</0>"
|
|
874
|
+
|
|
875
|
+
msgid "Search in my communities..."
|
|
876
|
+
msgstr "Hledat v mých komunitách..."
|
|
877
|
+
|
|
878
|
+
msgid "View"
|
|
879
|
+
msgstr "Zobrazit"
|
|
880
|
+
|
|
881
|
+
msgid "Published in: {{publishedIn}}"
|
|
882
|
+
msgstr "Publikováno v: {{publishedIn}}"
|
|
883
|
+
|
|
884
|
+
msgid "In review"
|
|
885
|
+
msgstr "V procesu kontroly"
|
|
886
|
+
|
|
887
|
+
msgid "Declined"
|
|
888
|
+
msgstr "Zamítnuto"
|
|
889
|
+
|
|
890
|
+
msgid "Expired"
|
|
891
|
+
msgstr "Vypršený"
|
|
892
|
+
|
|
893
|
+
msgid "Draft"
|
|
894
|
+
msgstr "Koncept"
|
|
895
|
+
|
|
896
|
+
msgid "New version draft"
|
|
897
|
+
msgstr "Nový koncept"
|
|
898
|
+
|
|
899
|
+
msgid "open"
|
|
900
|
+
msgstr "otevřený"
|
|
901
|
+
|
|
902
|
+
msgid "Open"
|
|
903
|
+
msgstr "Otevřený"
|
|
904
|
+
|
|
905
|
+
msgid "unlock"
|
|
906
|
+
msgstr "odemknout"
|
|
907
|
+
|
|
908
|
+
msgid "Get started!"
|
|
909
|
+
msgstr "Začít!"
|
|
910
|
+
|
|
911
|
+
msgid "Make your first upload!"
|
|
912
|
+
msgstr "Uložte svůj první záznam!"
|
|
913
|
+
|
|
914
|
+
msgid "New upload"
|
|
915
|
+
msgstr "Nový záznam"
|
|
916
|
+
|
|
917
|
+
msgid "Search in my uploads..."
|
|
918
|
+
msgstr "Hledat v mých záznamech..."
|
|
919
|
+
|
|
920
|
+
msgid "ORCID profile"
|
|
921
|
+
msgstr "ORCID profil"
|
|
922
|
+
|
|
923
|
+
msgid "ORCID logo"
|
|
924
|
+
msgstr "ORCID logo"
|
|
925
|
+
|
|
926
|
+
msgid "ROR profile"
|
|
927
|
+
msgstr "ROR profil"
|
|
928
|
+
|
|
929
|
+
msgid "ROR logo"
|
|
930
|
+
msgstr "ROR logo"
|
|
931
|
+
|
|
932
|
+
msgid "GND profile"
|
|
933
|
+
msgstr "GND profil"
|
|
934
|
+
|
|
935
|
+
msgid "GND logo"
|
|
936
|
+
msgstr "GND logo"
|
|
937
|
+
|
|
938
|
+
msgid "No name"
|
|
939
|
+
msgstr "Žádný název"
|
|
940
|
+
|
|
941
|
+
msgid "and {{count}} other"
|
|
942
|
+
msgid_plural "and {{count}} other"
|
|
943
|
+
msgstr[0] "a {{count}} další"
|
|
944
|
+
msgstr[1] "a {{count}} další"
|
|
945
|
+
msgstr[2] "a {{count}} další"
|
|
946
|
+
msgstr[3] "a {{count}} další"
|
|
947
|
+
|
|
948
|
+
msgid "and {{count}} others"
|
|
949
|
+
msgid_plural "and {{count}} others"
|
|
950
|
+
msgstr[0] "a {{count}} další"
|
|
951
|
+
msgstr[1] "a {{count}} další"
|
|
952
|
+
msgstr[2] "a {{count}} další"
|
|
953
|
+
msgstr[3] "a {{count}} další"
|
|
954
|
+
|
|
955
|
+
msgctxt ""
|
|
956
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
957
|
+
"until today.</0>"
|
|
958
|
+
msgid "<0><0>metadata.publication"
|
|
959
|
+
msgstr ""
|
|
960
|
+
"<0><0>metadata.publication_date:[2017-01-01 TO *]</0> vrátí všechny "
|
|
961
|
+
"publikace od 2017 dodnes.</0>"
|