invenio-app-rdm 5.0.0.dev0__py2.py3-none-any.whl → 14.0.0b4.dev4__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +1167 -100
- 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 +70 -0
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +64 -15
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +417 -172
- 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 +7 -9
- 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 +51 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +13 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +330 -22
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +5 -23
- 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 +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +34 -0
- 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 +20 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +78 -0
- 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 +42 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +16 -0
- 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 +26 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar.html +4 -45
- 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 +37 -7
- 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 +9 -8
- 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 +98 -39
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +280 -43
- 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 +176 -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 -89
- 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 +123 -38
- invenio_app_rdm/records_ui/views/decorators.py +414 -120
- invenio_app_rdm/records_ui/views/deposits.py +569 -75
- invenio_app_rdm/records_ui/views/filters.py +125 -34
- invenio_app_rdm/records_ui/views/records.py +425 -76
- 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/__init__.py +9 -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 +13 -0
- invenio_app_rdm/requests_ui/views/requests.py +374 -0
- invenio_app_rdm/requests_ui/views/ui.py +72 -0
- 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 +142 -0
- 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 +795 -440
- 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 -11
- 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 +36 -15
- 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 +162 -0
- 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 -42
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +153 -78
- 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/ShareOptions/ShareButton.js +62 -0
- 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 +102 -28
- 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 +181 -226
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +50 -16
- 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 +130 -0
- 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 +54 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +74 -0
- 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 +113 -14
- 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 -10
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -4
- 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 +112 -4
- 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 +127 -4
- 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 +73 -27
- 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 +86 -4
- 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 +560 -4
- 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 +10 -0
- 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 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +6 -0
- 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 +175 -0
- 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 +37 -0
- 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 +966 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +898 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1009 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +316 -0
- 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 +20 -0
- 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 +18 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +1009 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-icon.svg +52 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-eu-icon.svg +44 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-icon.svg +67 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-eu-icon.svg +57 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-nd-icon.svg +93 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-eu-icon.svg +55 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-sa-icon.svg +55 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-nd-icon.svg +75 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-by-sa-icon.svg +72 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-cc0-icon.svg +29 -0
- invenio_app_rdm/theme/static/icons/licenses/cc-pddc-icon.svg +25 -0
- invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
- invenio_app_rdm/theme/static/images/ror-icon.svg +14 -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 -78
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +41 -176
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +122 -65
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +18 -14
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +130 -38
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +5 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +13 -8
- 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 +108 -26
- invenio_app_rdm/theme/webpack.py +76 -32
- 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 +1410 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +1364 -0
- 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 +1371 -51
- 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 +26 -10
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +395 -0
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +161 -0
- invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +153 -0
- 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-5.0.0.dev0.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/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contributors.html +0 -32
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creators.html +0 -30
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/licenses.html +0 -35
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search_deposit.html +0 -103
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareButton.js +0 -43
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -188
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/components.js +0 -361
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_records_search/index.js +0 -41
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -126
- 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 -83
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -95
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -212
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -216
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -41
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -420
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -41
- invenio_app_rdm/theme/static/images/logo-bnl.png +0 -0
- invenio_app_rdm/theme/static/images/logo-caltechlibrary.png +0 -0
- invenio_app_rdm/theme/static/images/logo-cd2h.png +0 -0
- invenio_app_rdm/theme/static/images/logo-cern.png +0 -0
- invenio_app_rdm/theme/static/images/logo-cottagelabs.png +0 -0
- invenio_app_rdm/theme/static/images/logo-data-futures.png +0 -0
- invenio_app_rdm/theme/static/images/logo-eko-konnect.png +0 -0
- invenio_app_rdm/theme/static/images/logo-geo.svg +0 -1337
- invenio_app_rdm/theme/static/images/logo-hzdr.png +0 -0
- invenio_app_rdm/theme/static/images/logo-infn.svg +0 -28
- invenio_app_rdm/theme/static/images/logo-jrc.svg +0 -1905
- invenio_app_rdm/theme/static/images/logo-northwestern-university.png +0 -0
- invenio_app_rdm/theme/static/images/logo-openaire.png +0 -0
- invenio_app_rdm/theme/static/images/logo-tind.png +0 -0
- invenio_app_rdm/theme/static/images/logo-tu-graz.svg +0 -25
- invenio_app_rdm/theme/static/images/logo-tu-wien.svg +0 -23
- invenio_app_rdm/theme/static/images/logo-tubitak.svg +0 -49
- invenio_app_rdm/theme/static/images/logo-uni-hamburg.png +0 -0
- invenio_app_rdm/theme/static/images/logo-uni-munster.png +0 -0
- invenio_app_rdm/theme/static/images/logo-wacren.png +0 -0
- invenio_app_rdm/translations/en/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/en/LC_MESSAGES/messages.po +0 -29
- invenio_app_rdm/version.py +0 -23
- invenio_app_rdm-5.0.0.dev0.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-5.0.0.dev0.dist-info/METADATA +0 -75
- invenio_app_rdm-5.0.0.dev0.dist-info/RECORD +0 -138
- invenio_app_rdm-5.0.0.dev0.dist-info/entry_points.txt +0 -13
- /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
- {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-5.0.0.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,951 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# yyones, 2024
|
|
4
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
5
|
+
# Rim Sharif, 2025
|
|
6
|
+
# Mattias Vesterlund, 2025
|
|
7
|
+
# Sam Arbid, 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: Sam Arbid, 2025\n"
|
|
15
|
+
"Language-Team: Swedish (https://app.transifex.com/inveniosoftware/teams/23537/sv/)\n"
|
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
18
|
+
"Language: sv\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
20
|
+
"mime-version: 1.0\n"
|
|
21
|
+
|
|
22
|
+
msgid "Basic information"
|
|
23
|
+
msgstr "Basinformation"
|
|
24
|
+
|
|
25
|
+
msgid "Impersonate user"
|
|
26
|
+
msgstr "Imitera användare"
|
|
27
|
+
|
|
28
|
+
msgid "Impersonate"
|
|
29
|
+
msgstr "Imitera"
|
|
30
|
+
|
|
31
|
+
msgid "You must accept this."
|
|
32
|
+
msgstr "Du måste acceptera detta."
|
|
33
|
+
|
|
34
|
+
msgid "Success"
|
|
35
|
+
msgstr "Framgång"
|
|
36
|
+
|
|
37
|
+
msgid ""
|
|
38
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
39
|
+
msgstr ""
|
|
40
|
+
"Användaren imiterades framgångsrikt! Du kommer att omdirigeras till "
|
|
41
|
+
"förstasidan snart."
|
|
42
|
+
|
|
43
|
+
msgid "Unable to impersonate user."
|
|
44
|
+
msgstr "Kunde inte imitera användare"
|
|
45
|
+
|
|
46
|
+
msgid ""
|
|
47
|
+
"Please read carefully and confirm the following statements before you "
|
|
48
|
+
"proceed."
|
|
49
|
+
msgstr "Läs noga igenom och bekräfta följande text innan du fortsätter."
|
|
50
|
+
|
|
51
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
52
|
+
msgstr ""
|
|
53
|
+
"Du är på väg att imitera användaren <bold>{{email}}(id: {{id}})</bold>."
|
|
54
|
+
|
|
55
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
56
|
+
msgstr "Du <bold>MÅSTE</bold> logga ut efter att du avslutat din förfrågan. "
|
|
57
|
+
|
|
58
|
+
msgid "Close"
|
|
59
|
+
msgstr "Stäng"
|
|
60
|
+
|
|
61
|
+
msgid "Set Quota"
|
|
62
|
+
msgstr "Ställ in Lagringskvot"
|
|
63
|
+
|
|
64
|
+
msgid "Set quota in bytes"
|
|
65
|
+
msgstr "Ställ in lagringskvot i bytes"
|
|
66
|
+
|
|
67
|
+
msgid "Note"
|
|
68
|
+
msgstr "Notering"
|
|
69
|
+
|
|
70
|
+
msgid ""
|
|
71
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
72
|
+
" this user – it will NOT update quota of existing records."
|
|
73
|
+
msgstr ""
|
|
74
|
+
"Detta är den standardkvot som kommer att tillämpas på alla NYA poster som "
|
|
75
|
+
"skapas av den här användaren - den kommer INTE att uppdatera lagringskvoten "
|
|
76
|
+
"för befintliga poster."
|
|
77
|
+
|
|
78
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
79
|
+
msgstr "Lagringskvoten för {{id}} sattes till {{quota}} {{unit}}"
|
|
80
|
+
|
|
81
|
+
msgid "Unable to set quota."
|
|
82
|
+
msgstr "Kunde inte ställa in lagringskvot."
|
|
83
|
+
|
|
84
|
+
msgid "Quota size ({{unit}})"
|
|
85
|
+
msgstr "Storlek på lagringskvot ({{unit}})"
|
|
86
|
+
|
|
87
|
+
msgid "Enter quota size..."
|
|
88
|
+
msgstr "Ange storlek på lagringskvoten..."
|
|
89
|
+
|
|
90
|
+
msgid "Max file size ({{unit}})"
|
|
91
|
+
msgstr "Maximal filstorlek ({{unit}})"
|
|
92
|
+
|
|
93
|
+
msgid "Enter max file size..."
|
|
94
|
+
msgstr "Ange maximal filstorlek..."
|
|
95
|
+
|
|
96
|
+
msgid "Ticket 1234"
|
|
97
|
+
msgstr "Ticket 1234"
|
|
98
|
+
|
|
99
|
+
msgid "Set quota"
|
|
100
|
+
msgstr "Ställ in lagringskvot"
|
|
101
|
+
|
|
102
|
+
msgid "Domain"
|
|
103
|
+
msgstr "Domän"
|
|
104
|
+
|
|
105
|
+
msgid "Flagged"
|
|
106
|
+
msgstr "Flaggad"
|
|
107
|
+
|
|
108
|
+
msgid "Organization"
|
|
109
|
+
msgstr "Organisation"
|
|
110
|
+
|
|
111
|
+
msgid "Company"
|
|
112
|
+
msgstr "Företag"
|
|
113
|
+
|
|
114
|
+
msgid "Mail provider"
|
|
115
|
+
msgstr "E-post leverantör"
|
|
116
|
+
|
|
117
|
+
msgid "Spammer"
|
|
118
|
+
msgstr "Spammare"
|
|
119
|
+
|
|
120
|
+
msgid "TLD"
|
|
121
|
+
msgstr "TLD"
|
|
122
|
+
|
|
123
|
+
msgid "Status"
|
|
124
|
+
msgstr "Status"
|
|
125
|
+
|
|
126
|
+
msgid "New"
|
|
127
|
+
msgstr "Ny"
|
|
128
|
+
|
|
129
|
+
msgid "Moderated"
|
|
130
|
+
msgstr "Modererad"
|
|
131
|
+
|
|
132
|
+
msgid "Verified"
|
|
133
|
+
msgstr "Verifierad"
|
|
134
|
+
|
|
135
|
+
msgid "Blocked"
|
|
136
|
+
msgstr "Blockerad"
|
|
137
|
+
|
|
138
|
+
msgid "Users"
|
|
139
|
+
msgstr "Användare"
|
|
140
|
+
|
|
141
|
+
msgid "Active"
|
|
142
|
+
msgstr "Aktiv"
|
|
143
|
+
|
|
144
|
+
msgid "Inactive"
|
|
145
|
+
msgstr "Inaktiv"
|
|
146
|
+
|
|
147
|
+
msgid "Confirmed"
|
|
148
|
+
msgstr "Bekräftad"
|
|
149
|
+
|
|
150
|
+
msgid "Links"
|
|
151
|
+
msgstr "Länkar"
|
|
152
|
+
|
|
153
|
+
msgid "Set quota for record {{recordId}}"
|
|
154
|
+
msgstr "Ställ in lagringskvot för posten {{recordId}}"
|
|
155
|
+
|
|
156
|
+
msgid "Delete record"
|
|
157
|
+
msgstr "Radera post"
|
|
158
|
+
|
|
159
|
+
msgid "Restore record"
|
|
160
|
+
msgstr "Återställ post"
|
|
161
|
+
|
|
162
|
+
msgid "Unavailability statement"
|
|
163
|
+
msgstr "Meddelande om otillgänglighet"
|
|
164
|
+
|
|
165
|
+
msgid "Record {{id}} was restored."
|
|
166
|
+
msgstr "Posten {{id}} återställdes."
|
|
167
|
+
|
|
168
|
+
msgid "Unable to restore."
|
|
169
|
+
msgstr "Kunde inte återställa."
|
|
170
|
+
|
|
171
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
172
|
+
msgstr "Är du säker på att du vill återställa #{{id}}"
|
|
173
|
+
|
|
174
|
+
msgid "Published"
|
|
175
|
+
msgstr "Publicerad"
|
|
176
|
+
|
|
177
|
+
msgid "Deleted"
|
|
178
|
+
msgstr "Raderad"
|
|
179
|
+
|
|
180
|
+
msgid "Scheduled for purge"
|
|
181
|
+
msgstr "Schemalagd för utrensning"
|
|
182
|
+
|
|
183
|
+
msgid "Empty draft title"
|
|
184
|
+
msgstr "Tom titel på utkast"
|
|
185
|
+
|
|
186
|
+
msgid "version"
|
|
187
|
+
msgstr "version"
|
|
188
|
+
|
|
189
|
+
msgid "Owner"
|
|
190
|
+
msgstr "Ägare"
|
|
191
|
+
|
|
192
|
+
msgid "Created"
|
|
193
|
+
msgstr "Skapad"
|
|
194
|
+
|
|
195
|
+
msgid "Files"
|
|
196
|
+
msgstr "Filer"
|
|
197
|
+
|
|
198
|
+
msgid "Stats"
|
|
199
|
+
msgstr "Statistik"
|
|
200
|
+
|
|
201
|
+
msgid "Record {{id}} was deleted."
|
|
202
|
+
msgstr "Posten {{id}} raderades."
|
|
203
|
+
|
|
204
|
+
msgid "Unable to delete"
|
|
205
|
+
msgstr "Kunde inte radera"
|
|
206
|
+
|
|
207
|
+
msgid "Public"
|
|
208
|
+
msgstr "Offentlig"
|
|
209
|
+
|
|
210
|
+
msgid "Hidden"
|
|
211
|
+
msgstr "Dold"
|
|
212
|
+
|
|
213
|
+
msgid ""
|
|
214
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
215
|
+
"to provide a public tombstone when deactivating public records."
|
|
216
|
+
msgstr ""
|
|
217
|
+
"Gravstenssidan (tombstone page) är satt som dold men posten är offentlig. "
|
|
218
|
+
"God praxis är att tillhandahålla en offentlig gravstenssida när du "
|
|
219
|
+
"avaktiverar offentliga poster."
|
|
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
|
+
"RISK FÖR INFORMATIONSLÄCKAGE: Gravstenssidan (tombstone page) är inställd på"
|
|
227
|
+
" offentligt tillgänglig men din post är åtkomstbegränsad. Se till att ingen "
|
|
228
|
+
"sekretessbelagd information delas i gravstenen nedan."
|
|
229
|
+
|
|
230
|
+
msgid "Bibliographic citation"
|
|
231
|
+
msgstr "Bibliografisk citering"
|
|
232
|
+
|
|
233
|
+
msgid ""
|
|
234
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
235
|
+
"default."
|
|
236
|
+
msgstr ""
|
|
237
|
+
"Skriv in citeringstext. Tomt fält kommer att fyllas i med en APA-formatterad"
|
|
238
|
+
" citering."
|
|
239
|
+
|
|
240
|
+
msgid "Public note"
|
|
241
|
+
msgstr "Offentligt meddelande"
|
|
242
|
+
|
|
243
|
+
msgid "User {{name}} was approved."
|
|
244
|
+
msgstr "Användaren {{name}} godkändes."
|
|
245
|
+
|
|
246
|
+
msgid "User {{name}} is blocked."
|
|
247
|
+
msgstr "Användaren {{name}} är blockerad."
|
|
248
|
+
|
|
249
|
+
msgid "Error"
|
|
250
|
+
msgstr "Fel"
|
|
251
|
+
|
|
252
|
+
msgid "User"
|
|
253
|
+
msgstr "Användare"
|
|
254
|
+
|
|
255
|
+
msgid "Email"
|
|
256
|
+
msgstr "E-post"
|
|
257
|
+
|
|
258
|
+
msgid "Email domain"
|
|
259
|
+
msgstr "Epost-domän"
|
|
260
|
+
|
|
261
|
+
msgid "Actions"
|
|
262
|
+
msgstr "Åtgärder"
|
|
263
|
+
|
|
264
|
+
msgid "Records"
|
|
265
|
+
msgstr "Poster"
|
|
266
|
+
|
|
267
|
+
msgid "Username"
|
|
268
|
+
msgstr "Användarnamn"
|
|
269
|
+
|
|
270
|
+
msgid "GitHub"
|
|
271
|
+
msgstr "GitHub"
|
|
272
|
+
|
|
273
|
+
msgid "Updated"
|
|
274
|
+
msgstr "Uppdaterad"
|
|
275
|
+
|
|
276
|
+
msgid "Restore"
|
|
277
|
+
msgstr "Återställ"
|
|
278
|
+
|
|
279
|
+
msgid "Restored"
|
|
280
|
+
msgstr "Återställd"
|
|
281
|
+
|
|
282
|
+
msgid "Block"
|
|
283
|
+
msgstr "Blockera"
|
|
284
|
+
|
|
285
|
+
msgid "Suspend"
|
|
286
|
+
msgstr "Stäng av"
|
|
287
|
+
|
|
288
|
+
msgid "Suspended"
|
|
289
|
+
msgstr "Avstängd"
|
|
290
|
+
|
|
291
|
+
msgid "Approve"
|
|
292
|
+
msgstr "Godkänn"
|
|
293
|
+
|
|
294
|
+
msgid "Approved"
|
|
295
|
+
msgstr "Godkänd"
|
|
296
|
+
|
|
297
|
+
msgid "Activate"
|
|
298
|
+
msgstr "Aktivera"
|
|
299
|
+
|
|
300
|
+
msgid "Activated"
|
|
301
|
+
msgstr "Aktiverad"
|
|
302
|
+
|
|
303
|
+
msgid "Set default quota for {{email}}"
|
|
304
|
+
msgstr "Ange standardkvot för {{email}}"
|
|
305
|
+
|
|
306
|
+
msgid "Filter results"
|
|
307
|
+
msgstr "Filtrera resultat"
|
|
308
|
+
|
|
309
|
+
msgid "Search records in community..."
|
|
310
|
+
msgstr "Sök poster i community..."
|
|
311
|
+
|
|
312
|
+
msgid "Sort by"
|
|
313
|
+
msgstr "Sortera efter"
|
|
314
|
+
|
|
315
|
+
msgid " results found"
|
|
316
|
+
msgid_plural " results found"
|
|
317
|
+
msgstr[0] "resultat hittades"
|
|
318
|
+
msgstr[1] "resultat hittades"
|
|
319
|
+
|
|
320
|
+
msgid "Search records..."
|
|
321
|
+
msgstr "Sök poster..."
|
|
322
|
+
|
|
323
|
+
msgid "Search"
|
|
324
|
+
msgstr "Sök"
|
|
325
|
+
|
|
326
|
+
msgid "Views"
|
|
327
|
+
msgstr "Visningar"
|
|
328
|
+
|
|
329
|
+
msgid "Downloads"
|
|
330
|
+
msgstr "Nedladdningar"
|
|
331
|
+
|
|
332
|
+
msgid "Copy to clipboard"
|
|
333
|
+
msgstr "Kopiera till urklipp"
|
|
334
|
+
|
|
335
|
+
msgid "Copied!"
|
|
336
|
+
msgstr "Kopierade!"
|
|
337
|
+
|
|
338
|
+
msgid "Part of "
|
|
339
|
+
msgstr "Del av "
|
|
340
|
+
|
|
341
|
+
msgid "No creation date found."
|
|
342
|
+
msgstr "Inget datum för skapande hittades."
|
|
343
|
+
|
|
344
|
+
msgid "No description"
|
|
345
|
+
msgstr "Ingen beskrivning"
|
|
346
|
+
|
|
347
|
+
msgid "No publication date found."
|
|
348
|
+
msgstr "Inget publiceringsdatum hittades."
|
|
349
|
+
|
|
350
|
+
msgid "No resource type"
|
|
351
|
+
msgstr "Ingen resurstyp"
|
|
352
|
+
|
|
353
|
+
msgid "No title"
|
|
354
|
+
msgstr "Ingen titel"
|
|
355
|
+
|
|
356
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
357
|
+
msgstr "Uppladdad den {{uploadDate}}"
|
|
358
|
+
|
|
359
|
+
msgid "Published in: {{publishInfo}}"
|
|
360
|
+
msgstr "Publicerad i: {{publishInfo}}"
|
|
361
|
+
|
|
362
|
+
msgid "{{count}} more versions exist for this record"
|
|
363
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
364
|
+
msgstr[0] "{{count}} fler versioner finns för denna post"
|
|
365
|
+
msgstr[1] "{{count}} fler versioner finns för denna post"
|
|
366
|
+
|
|
367
|
+
msgid "Person"
|
|
368
|
+
msgstr "Person"
|
|
369
|
+
|
|
370
|
+
msgid "The record has no files."
|
|
371
|
+
msgstr "Posten har inga filer."
|
|
372
|
+
|
|
373
|
+
msgid "Creators"
|
|
374
|
+
msgstr "Skapare"
|
|
375
|
+
|
|
376
|
+
msgid "Recommended information"
|
|
377
|
+
msgstr "Rekommenderad information"
|
|
378
|
+
|
|
379
|
+
msgid "Add contributor"
|
|
380
|
+
msgstr "Lägg till medverkande"
|
|
381
|
+
|
|
382
|
+
msgid "Contributors"
|
|
383
|
+
msgstr "Medverkande"
|
|
384
|
+
|
|
385
|
+
msgid "Edit contributor"
|
|
386
|
+
msgstr "Redigera medverkande"
|
|
387
|
+
|
|
388
|
+
msgid "Funding"
|
|
389
|
+
msgstr "Finansiering"
|
|
390
|
+
|
|
391
|
+
msgid "Awards/Grants"
|
|
392
|
+
msgstr "Projektbidrag/Anslag"
|
|
393
|
+
|
|
394
|
+
msgid "Alternate identifiers"
|
|
395
|
+
msgstr "Alternativa identifierare"
|
|
396
|
+
|
|
397
|
+
msgid "Related works"
|
|
398
|
+
msgstr "Relaterade arbeten"
|
|
399
|
+
|
|
400
|
+
msgid "References"
|
|
401
|
+
msgstr "Referenser"
|
|
402
|
+
|
|
403
|
+
msgid "Visibility"
|
|
404
|
+
msgstr "Synlighet"
|
|
405
|
+
|
|
406
|
+
msgid "More"
|
|
407
|
+
msgstr "Mer"
|
|
408
|
+
|
|
409
|
+
msgid "Unable to request the access."
|
|
410
|
+
msgstr "Det gick inte att begära åtkomst."
|
|
411
|
+
|
|
412
|
+
msgid "Your email address"
|
|
413
|
+
msgstr "Din epost-adress"
|
|
414
|
+
|
|
415
|
+
msgid "Email address"
|
|
416
|
+
msgstr "Epost-adress"
|
|
417
|
+
|
|
418
|
+
msgid "Your full name"
|
|
419
|
+
msgstr "Ditt fullständiga namn"
|
|
420
|
+
|
|
421
|
+
msgid "Full name"
|
|
422
|
+
msgstr "Fullständigt namn"
|
|
423
|
+
|
|
424
|
+
msgid "Request message"
|
|
425
|
+
msgstr "Meddelande för förfrågan"
|
|
426
|
+
|
|
427
|
+
msgid ""
|
|
428
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
429
|
+
"the record"
|
|
430
|
+
msgstr ""
|
|
431
|
+
"Jag samtycker till att mitt fullständiga namn och min e-postadress delas med"
|
|
432
|
+
" ägarna till posten"
|
|
433
|
+
|
|
434
|
+
msgid "Request access"
|
|
435
|
+
msgstr "Begär åtkomst"
|
|
436
|
+
|
|
437
|
+
msgid "Email confirmation needed"
|
|
438
|
+
msgstr "E-postbekräftelse krävs"
|
|
439
|
+
|
|
440
|
+
msgid "We have sent you an email to verify your address."
|
|
441
|
+
msgstr ""
|
|
442
|
+
"Vi har skickat ett meddelande till dig för att verifiera din e-postadress."
|
|
443
|
+
|
|
444
|
+
msgid ""
|
|
445
|
+
"\n"
|
|
446
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
447
|
+
" "
|
|
448
|
+
msgstr ""
|
|
449
|
+
"\n"
|
|
450
|
+
" Vänligen kontrollera e-postmeddelandet och följ instruktionerna för att slutföra åtkomstbegäran.\n"
|
|
451
|
+
" "
|
|
452
|
+
|
|
453
|
+
msgid "An error occurred while fetching communities."
|
|
454
|
+
msgstr "Ett fel inträffade vid hämtning av communities."
|
|
455
|
+
|
|
456
|
+
msgid "Communities"
|
|
457
|
+
msgstr "Communities"
|
|
458
|
+
|
|
459
|
+
msgid "View all {{count}} communities"
|
|
460
|
+
msgid_plural "View all {{count}} communities"
|
|
461
|
+
msgstr[0] "Visa alla {{count}} communities"
|
|
462
|
+
msgstr[1] "Visa alla {{count}} communities"
|
|
463
|
+
|
|
464
|
+
msgid "Submit to community"
|
|
465
|
+
msgstr "Skicka till community"
|
|
466
|
+
|
|
467
|
+
msgid "Pending submissions"
|
|
468
|
+
msgstr "Pågående inlämningar"
|
|
469
|
+
|
|
470
|
+
msgid "Manage communities"
|
|
471
|
+
msgstr "Hantera communities"
|
|
472
|
+
|
|
473
|
+
msgid "Community management menu dropdown"
|
|
474
|
+
msgstr "Rullgardinsmeny för communityhantering"
|
|
475
|
+
|
|
476
|
+
msgid "Edit"
|
|
477
|
+
msgstr "Redigera"
|
|
478
|
+
|
|
479
|
+
msgid "Export selection"
|
|
480
|
+
msgstr "Exportera urval"
|
|
481
|
+
|
|
482
|
+
msgid "Download file"
|
|
483
|
+
msgstr "Nedladdning fil"
|
|
484
|
+
|
|
485
|
+
msgid "Export"
|
|
486
|
+
msgstr "Exportera"
|
|
487
|
+
|
|
488
|
+
msgid "Manage"
|
|
489
|
+
msgstr " Hantera"
|
|
490
|
+
|
|
491
|
+
msgid "Manage record"
|
|
492
|
+
msgstr "Hantera post"
|
|
493
|
+
|
|
494
|
+
msgid "Manage user"
|
|
495
|
+
msgstr "Hantera användare"
|
|
496
|
+
|
|
497
|
+
msgid "Remove branding"
|
|
498
|
+
msgstr "Ta bort märkning"
|
|
499
|
+
|
|
500
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
501
|
+
msgstr "{{communityTitle}} är en standardmärkning för den här posten"
|
|
502
|
+
|
|
503
|
+
msgid ""
|
|
504
|
+
"Remove this community from appearing on top of the record details page."
|
|
505
|
+
msgstr ""
|
|
506
|
+
"Ta bort denna community från att visas högst upp på postens infromationsida."
|
|
507
|
+
" "
|
|
508
|
+
|
|
509
|
+
msgid "Set branding"
|
|
510
|
+
msgstr "Ange märkning"
|
|
511
|
+
|
|
512
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
513
|
+
msgstr "Ange {{communityTitle}} som standardmärkning för den här posten"
|
|
514
|
+
|
|
515
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
516
|
+
msgstr ""
|
|
517
|
+
"Ställ in att denna community ska visas högst upp på sidan med detaljer om "
|
|
518
|
+
"posten."
|
|
519
|
+
|
|
520
|
+
msgid "Pending communities"
|
|
521
|
+
msgstr "Väntande communities"
|
|
522
|
+
|
|
523
|
+
msgid "Search for pending submissions to communities..."
|
|
524
|
+
msgstr "Sök efter pågående inlämningar till communities..."
|
|
525
|
+
|
|
526
|
+
msgid "An error occurred while generating the citation."
|
|
527
|
+
msgstr "Ett fel uppstod när citatet genererades."
|
|
528
|
+
|
|
529
|
+
msgid "Style"
|
|
530
|
+
msgstr "Stil"
|
|
531
|
+
|
|
532
|
+
msgid "This record is not included in any communities yet."
|
|
533
|
+
msgstr "Posten ingår inte i några communities ännu."
|
|
534
|
+
|
|
535
|
+
msgid "Search for community..."
|
|
536
|
+
msgstr "Sök efter community..."
|
|
537
|
+
|
|
538
|
+
msgid "Record submitted"
|
|
539
|
+
msgstr "Post inskickad"
|
|
540
|
+
|
|
541
|
+
msgid "Review requested"
|
|
542
|
+
msgstr "Granskning begärd"
|
|
543
|
+
|
|
544
|
+
msgid "Search in all communities"
|
|
545
|
+
msgstr "Sök i alla communities"
|
|
546
|
+
|
|
547
|
+
msgid "Search in my communities"
|
|
548
|
+
msgstr "Sök i mina communities"
|
|
549
|
+
|
|
550
|
+
msgid "Select a community"
|
|
551
|
+
msgstr "Välj en community"
|
|
552
|
+
|
|
553
|
+
msgid "Version {{- version}}"
|
|
554
|
+
msgstr "Version {{- version}}"
|
|
555
|
+
|
|
556
|
+
msgid "Preview"
|
|
557
|
+
msgstr "Förhandsgranska"
|
|
558
|
+
|
|
559
|
+
msgid "Only published versions are displayed."
|
|
560
|
+
msgstr "Endast publicerade versioner visas."
|
|
561
|
+
|
|
562
|
+
msgid "An error occurred while fetching the versions."
|
|
563
|
+
msgstr "Ett fel uppstod när versionerna hämtades."
|
|
564
|
+
|
|
565
|
+
msgid "View all {{count}} versions"
|
|
566
|
+
msgid_plural "View all {{count}} versions"
|
|
567
|
+
msgstr[0] "Visa alla {{count}} versioner"
|
|
568
|
+
msgstr[1] "Visa alla {{count}} versioner"
|
|
569
|
+
|
|
570
|
+
msgid ""
|
|
571
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
572
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
573
|
+
"latest one. <5>Read more</5>.</0>"
|
|
574
|
+
msgstr ""
|
|
575
|
+
"<0><0>Citera alla versioner?</0> Du kan citera alla versioner genom att "
|
|
576
|
+
"använda DOI:n <3></3>. Denna DOI representerar alla versioner och kommer "
|
|
577
|
+
"alltid att hänvisa till den senaste. <5>Läs mer</5>.</0>"
|
|
578
|
+
|
|
579
|
+
msgid ""
|
|
580
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
581
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
582
|
+
"more</4>.</0>"
|
|
583
|
+
msgstr ""
|
|
584
|
+
"<0><0>Citera alla versioner?</0> Du kan citera alla versioner genom att "
|
|
585
|
+
"använda DOI:n . DOI:n registreras när den första versionen publiceras. "
|
|
586
|
+
"<4>Läs mer</4>.</0>"
|
|
587
|
+
|
|
588
|
+
msgid "Remove"
|
|
589
|
+
msgstr "Ta bort"
|
|
590
|
+
|
|
591
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
592
|
+
msgstr "Ta bort {{communityTitle}} från den här posten"
|
|
593
|
+
|
|
594
|
+
msgid "Remove community"
|
|
595
|
+
msgstr "Ta bort community"
|
|
596
|
+
|
|
597
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
598
|
+
msgstr "Är du säker på att du vill ta bort posten från communityn?"
|
|
599
|
+
|
|
600
|
+
msgid "I understand the consequences:"
|
|
601
|
+
msgstr "Jag förstår följderna:"
|
|
602
|
+
|
|
603
|
+
msgid ""
|
|
604
|
+
"The record can only be re-included in the community by going through a new "
|
|
605
|
+
"review by the community curators."
|
|
606
|
+
msgstr ""
|
|
607
|
+
"Posten kan endast återinkluderas i communityn genom att genomgå en ny "
|
|
608
|
+
"granskning av communityns granskare."
|
|
609
|
+
|
|
610
|
+
msgid "Something went wrong"
|
|
611
|
+
msgstr "Något gick fel"
|
|
612
|
+
|
|
613
|
+
msgid "Cancel removal"
|
|
614
|
+
msgstr "Avbryt borttagning"
|
|
615
|
+
|
|
616
|
+
msgid "Cancel"
|
|
617
|
+
msgstr "Avbryt"
|
|
618
|
+
|
|
619
|
+
msgid "Confirm removal"
|
|
620
|
+
msgstr "Bekräfta borttagning"
|
|
621
|
+
|
|
622
|
+
msgid ""
|
|
623
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
624
|
+
"their access</4> to the record."
|
|
625
|
+
msgstr ""
|
|
626
|
+
"Medlemmar av communityn <1>\"<1>{{communityTitle}}</1>\"</1> kommer "
|
|
627
|
+
"<4>förlora sin åtkomst </4> till posten."
|
|
628
|
+
|
|
629
|
+
msgid "Select permissions"
|
|
630
|
+
msgstr "Välj behörigheter"
|
|
631
|
+
|
|
632
|
+
msgid "Short name for your link (optional)."
|
|
633
|
+
msgstr "Kort namn för din länk (valfritt)."
|
|
634
|
+
|
|
635
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
636
|
+
msgstr "Format för utgångsdatum: ÅÅÅÅ-MM-DD"
|
|
637
|
+
|
|
638
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
639
|
+
msgstr "Utgångsdatum: ÅÅÅÅ-MM-DD eller aldrig om fältet är tomt (valfritt)."
|
|
640
|
+
|
|
641
|
+
msgid "Create a new link"
|
|
642
|
+
msgstr "Skapa en ny länk"
|
|
643
|
+
|
|
644
|
+
msgid "Link title"
|
|
645
|
+
msgstr "Länktitel"
|
|
646
|
+
|
|
647
|
+
msgid "Expires at"
|
|
648
|
+
msgstr "Upphör att gälla"
|
|
649
|
+
|
|
650
|
+
msgid "Never"
|
|
651
|
+
msgstr "Aldrig"
|
|
652
|
+
|
|
653
|
+
msgid "Access"
|
|
654
|
+
msgstr "Tillgång"
|
|
655
|
+
|
|
656
|
+
msgid "Delete"
|
|
657
|
+
msgstr "Radera"
|
|
658
|
+
|
|
659
|
+
msgid "Copy link"
|
|
660
|
+
msgstr "Kopiera länk"
|
|
661
|
+
|
|
662
|
+
msgid "Can view"
|
|
663
|
+
msgstr "Kan visa"
|
|
664
|
+
|
|
665
|
+
msgid "Can view restricted files of all versions of this record."
|
|
666
|
+
msgstr "Kan se filer med begränsad åtkomst för alla versioner av posten."
|
|
667
|
+
|
|
668
|
+
msgid "Can preview drafts"
|
|
669
|
+
msgstr "Kan förhandsgranska utkast"
|
|
670
|
+
|
|
671
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
672
|
+
msgstr ""
|
|
673
|
+
"Kan visa utkast och filer med begränsad åtkomst för alla versioner av "
|
|
674
|
+
"posten."
|
|
675
|
+
|
|
676
|
+
msgid "Can edit"
|
|
677
|
+
msgstr "Kan redigera"
|
|
678
|
+
|
|
679
|
+
msgid ""
|
|
680
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
681
|
+
msgstr ""
|
|
682
|
+
"Kan redigera utkast och visa filer med begränsad åtkomst för alla versioner "
|
|
683
|
+
"av posten."
|
|
684
|
+
|
|
685
|
+
msgid ""
|
|
686
|
+
"Can view (view access link can be created only after the record is "
|
|
687
|
+
"published)"
|
|
688
|
+
msgstr ""
|
|
689
|
+
"Kan visa (visningslänk kan skapas först efter att posten har publicerats)"
|
|
690
|
+
|
|
691
|
+
msgid "Expires"
|
|
692
|
+
msgstr "Upphör att gälla"
|
|
693
|
+
|
|
694
|
+
msgid "This record has no links generated yet."
|
|
695
|
+
msgstr "Inga länkar har ännu genererats för den här posten."
|
|
696
|
+
|
|
697
|
+
msgid "Unable to change the access request settings."
|
|
698
|
+
msgstr "Det går inte att ändra inställningarna för åtkomstbegäran."
|
|
699
|
+
|
|
700
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
701
|
+
msgstr ""
|
|
702
|
+
"Tillåt autentiserade användare att begära åtkomst till begränsade filer."
|
|
703
|
+
|
|
704
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
705
|
+
msgstr ""
|
|
706
|
+
"Tillåt icke-autentiserade användare att begära åtkomst till begränsade "
|
|
707
|
+
"filer."
|
|
708
|
+
|
|
709
|
+
msgid "Accept conditions"
|
|
710
|
+
msgstr "Acceptera villkor"
|
|
711
|
+
|
|
712
|
+
msgid "Advanced options"
|
|
713
|
+
msgstr "Avancerade inställningar"
|
|
714
|
+
|
|
715
|
+
msgid "Save"
|
|
716
|
+
msgstr "Spara"
|
|
717
|
+
|
|
718
|
+
msgid "No user has access to this record yet."
|
|
719
|
+
msgstr "Ingen användare har åtkomst till denna post ännu."
|
|
720
|
+
|
|
721
|
+
msgid "People with access"
|
|
722
|
+
msgstr "Personer med åtkomst"
|
|
723
|
+
|
|
724
|
+
msgid "No group has access to this record yet."
|
|
725
|
+
msgstr "Ingen grupp har åtkomst till denna post ännu."
|
|
726
|
+
|
|
727
|
+
msgid "Groups with access"
|
|
728
|
+
msgstr "Grupper med åtkomst"
|
|
729
|
+
|
|
730
|
+
msgid "You"
|
|
731
|
+
msgstr "Du"
|
|
732
|
+
|
|
733
|
+
msgid "Add people"
|
|
734
|
+
msgstr "Lägg till personer"
|
|
735
|
+
|
|
736
|
+
msgid "No selected users"
|
|
737
|
+
msgstr "Inga användare valda"
|
|
738
|
+
|
|
739
|
+
msgid ""
|
|
740
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
741
|
+
"invited)"
|
|
742
|
+
msgstr ""
|
|
743
|
+
"Sök efter användare att tilldela åtkomst (endast användare med en offentlig "
|
|
744
|
+
"profil kan bjudas in)"
|
|
745
|
+
|
|
746
|
+
msgid "Search by email, full name or username"
|
|
747
|
+
msgstr "Sök med e-post, fullständigt namn eller användarnamn"
|
|
748
|
+
|
|
749
|
+
msgid "users"
|
|
750
|
+
msgstr "användare"
|
|
751
|
+
|
|
752
|
+
msgid "Add groups"
|
|
753
|
+
msgstr "Lägg till grupper"
|
|
754
|
+
|
|
755
|
+
msgid "Group"
|
|
756
|
+
msgstr "Grupp"
|
|
757
|
+
|
|
758
|
+
msgid "No selected groups"
|
|
759
|
+
msgstr "Inga grupper valda"
|
|
760
|
+
|
|
761
|
+
msgid "Search for groups"
|
|
762
|
+
msgstr "Sök efter grupper"
|
|
763
|
+
|
|
764
|
+
msgid "groups"
|
|
765
|
+
msgstr "grupper"
|
|
766
|
+
|
|
767
|
+
msgid "Add"
|
|
768
|
+
msgstr "Lägg till"
|
|
769
|
+
|
|
770
|
+
msgid "Notify people"
|
|
771
|
+
msgstr "Meddela personer"
|
|
772
|
+
|
|
773
|
+
msgid "Notification message"
|
|
774
|
+
msgstr "Aviseringsmeddelande"
|
|
775
|
+
|
|
776
|
+
msgid "You are about to add"
|
|
777
|
+
msgstr "Du är på väg att lägga till"
|
|
778
|
+
|
|
779
|
+
msgid "Access already granted"
|
|
780
|
+
msgstr "Åtkomst redan beviljad"
|
|
781
|
+
|
|
782
|
+
msgid "Can manage"
|
|
783
|
+
msgstr "Kan hantera"
|
|
784
|
+
|
|
785
|
+
msgid ""
|
|
786
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
787
|
+
"this record."
|
|
788
|
+
msgstr ""
|
|
789
|
+
"Kan hantera åtkomst, redigera utkast och visa filer med begränsad åtkomst "
|
|
790
|
+
"för alla versioner av posten."
|
|
791
|
+
|
|
792
|
+
msgid "You don't have permissions to share this record."
|
|
793
|
+
msgstr "Du har inte behörighet att dela denna post."
|
|
794
|
+
|
|
795
|
+
msgid "Share"
|
|
796
|
+
msgstr "Dela"
|
|
797
|
+
|
|
798
|
+
msgid "People"
|
|
799
|
+
msgstr "Personer"
|
|
800
|
+
|
|
801
|
+
msgid "Groups"
|
|
802
|
+
msgstr "Grupper"
|
|
803
|
+
|
|
804
|
+
msgid "Settings"
|
|
805
|
+
msgstr "Inställningar"
|
|
806
|
+
|
|
807
|
+
msgid "Share access"
|
|
808
|
+
msgstr "Dela åtkomst"
|
|
809
|
+
|
|
810
|
+
msgid "Link expiration"
|
|
811
|
+
msgstr "Länkens utgångsdatum"
|
|
812
|
+
|
|
813
|
+
msgid "In 1 month"
|
|
814
|
+
msgstr "Inom 1 månad"
|
|
815
|
+
|
|
816
|
+
msgid "In 2 months"
|
|
817
|
+
msgstr "Inom 2 månader"
|
|
818
|
+
|
|
819
|
+
msgid "In 6 months"
|
|
820
|
+
msgstr "Inom 6 månader"
|
|
821
|
+
|
|
822
|
+
msgid "In 1 year"
|
|
823
|
+
msgstr "Inom 1 år"
|
|
824
|
+
|
|
825
|
+
msgid "Invalid date format."
|
|
826
|
+
msgstr "Ogiltigt datumformat."
|
|
827
|
+
|
|
828
|
+
msgid "Access link expiration date cannot be in the past."
|
|
829
|
+
msgstr "Åtkomstlänkens utgångsdatum får inte ha passerat."
|
|
830
|
+
|
|
831
|
+
msgid "Access request"
|
|
832
|
+
msgstr "Åtkomstbegäran"
|
|
833
|
+
|
|
834
|
+
msgid "Unable to change the expiration request settings."
|
|
835
|
+
msgstr "Det går inte att ändra inställningarna för begäran om utgångsdatum."
|
|
836
|
+
|
|
837
|
+
msgid "Expiration date: "
|
|
838
|
+
msgstr "Utgångsdatum:"
|
|
839
|
+
|
|
840
|
+
msgid ""
|
|
841
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
842
|
+
"empty to set no expiration limit."
|
|
843
|
+
msgstr ""
|
|
844
|
+
"Format: ÅÅÅÅ-MM-DD. Beviljad åtkomst upphör att gälla på det angivna "
|
|
845
|
+
"datumet. Lämna fältet tomt för att inte ange något utgångsdatum."
|
|
846
|
+
|
|
847
|
+
msgid "Link expiration date:"
|
|
848
|
+
msgstr "Länkens utgångsdatum:"
|
|
849
|
+
|
|
850
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
851
|
+
msgstr "Vi kunde inte hitta några träffar för {{- search}}"
|
|
852
|
+
|
|
853
|
+
msgid "Start over"
|
|
854
|
+
msgstr "Börja om"
|
|
855
|
+
|
|
856
|
+
msgid "ProTip"
|
|
857
|
+
msgstr "ProTip"
|
|
858
|
+
|
|
859
|
+
msgid "Search guide"
|
|
860
|
+
msgstr "Sökguide"
|
|
861
|
+
|
|
862
|
+
msgid ""
|
|
863
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
864
|
+
"search queries.</0>"
|
|
865
|
+
msgstr ""
|
|
866
|
+
"<0>Om du vill ha fler tips kan du kolla in vår <2>sökguide</2> för att "
|
|
867
|
+
"konstruera avancerade sökfrågor.</0>"
|
|
868
|
+
|
|
869
|
+
msgid "Search in my communities..."
|
|
870
|
+
msgstr "Sök i mina communities..."
|
|
871
|
+
|
|
872
|
+
msgid "View"
|
|
873
|
+
msgstr "Visa"
|
|
874
|
+
|
|
875
|
+
msgid "Published in: {{publishedIn}}"
|
|
876
|
+
msgstr "Publicerad i: {{publishedIn}}"
|
|
877
|
+
|
|
878
|
+
msgid "In review"
|
|
879
|
+
msgstr "Under granskning"
|
|
880
|
+
|
|
881
|
+
msgid "Declined"
|
|
882
|
+
msgstr "Avslagen"
|
|
883
|
+
|
|
884
|
+
msgid "Expired"
|
|
885
|
+
msgstr "Utgånget"
|
|
886
|
+
|
|
887
|
+
msgid "Draft"
|
|
888
|
+
msgstr "Utkast"
|
|
889
|
+
|
|
890
|
+
msgid "New version draft"
|
|
891
|
+
msgstr "Utkast till ny version"
|
|
892
|
+
|
|
893
|
+
msgid "open"
|
|
894
|
+
msgstr "öppna"
|
|
895
|
+
|
|
896
|
+
msgid "Open"
|
|
897
|
+
msgstr "Öppen"
|
|
898
|
+
|
|
899
|
+
msgid "unlock"
|
|
900
|
+
msgstr "låsa upp"
|
|
901
|
+
|
|
902
|
+
msgid "Get started!"
|
|
903
|
+
msgstr "Kom igång!"
|
|
904
|
+
|
|
905
|
+
msgid "Make your first upload!"
|
|
906
|
+
msgstr "Gör din första uppladdning!"
|
|
907
|
+
|
|
908
|
+
msgid "New upload"
|
|
909
|
+
msgstr "Ny uppladdning"
|
|
910
|
+
|
|
911
|
+
msgid "Search in my uploads..."
|
|
912
|
+
msgstr "Sök i mina uppladdningar..."
|
|
913
|
+
|
|
914
|
+
msgid "ORCID profile"
|
|
915
|
+
msgstr "ORCID-profil"
|
|
916
|
+
|
|
917
|
+
msgid "ORCID logo"
|
|
918
|
+
msgstr "ORCID logo"
|
|
919
|
+
|
|
920
|
+
msgid "ROR profile"
|
|
921
|
+
msgstr "ROR-profil"
|
|
922
|
+
|
|
923
|
+
msgid "ROR logo"
|
|
924
|
+
msgstr "ROR logo"
|
|
925
|
+
|
|
926
|
+
msgid "GND profile"
|
|
927
|
+
msgstr "GND-profil"
|
|
928
|
+
|
|
929
|
+
msgid "GND logo"
|
|
930
|
+
msgstr "GND logo"
|
|
931
|
+
|
|
932
|
+
msgid "No name"
|
|
933
|
+
msgstr "Inget namn"
|
|
934
|
+
|
|
935
|
+
msgid "and {{count}} other"
|
|
936
|
+
msgid_plural "and {{count}} other"
|
|
937
|
+
msgstr[0] "och {{count}} andra"
|
|
938
|
+
msgstr[1] "och {{count}} andra"
|
|
939
|
+
|
|
940
|
+
msgid "and {{count}} others"
|
|
941
|
+
msgid_plural "and {{count}} others"
|
|
942
|
+
msgstr[0] "och {{count}} andra"
|
|
943
|
+
msgstr[1] "och {{count}} andra"
|
|
944
|
+
|
|
945
|
+
msgctxt ""
|
|
946
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
947
|
+
"until today.</0>"
|
|
948
|
+
msgid "<0><0>metadata.publication"
|
|
949
|
+
msgstr ""
|
|
950
|
+
"<0><0>metadata.publication_date:[2017-01-01 TO *]</0> ger alla publiceringar"
|
|
951
|
+
" från 2017 till och med idag.</0>"
|