invenio-app-rdm 12.0.0.dev8__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +3 -2
- invenio_app_rdm/{stats/templates/events/record_view/v7 → administration}/__init__.py +1 -3
- invenio_app_rdm/{stats/templates/events/record_view → administration/audit_logs}/__init__.py +6 -4
- invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
- invenio_app_rdm/administration/domains/__init__.py +22 -0
- invenio_app_rdm/administration/domains/domains.py +159 -0
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/__init__.py +15 -0
- invenio_app_rdm/administration/records/records.py +163 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
- invenio_app_rdm/{stats/templates/aggregations/aggr_record_view/v7 → administration/user_moderation}/__init__.py +4 -3
- invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
- invenio_app_rdm/administration/users/__init__.py +12 -0
- invenio_app_rdm/administration/users/users.py +130 -0
- invenio_app_rdm/{stats/templates/events/file_download/v7 → administration/views}/__init__.py +4 -3
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +37 -14
- invenio_app_rdm/communities_ui/searchapp.py +1 -0
- invenio_app_rdm/communities_ui/sitemap.py +63 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/{details → records}/index.html +1 -1
- invenio_app_rdm/communities_ui/views/communities.py +183 -8
- invenio_app_rdm/communities_ui/views/ui.py +52 -42
- invenio_app_rdm/config.py +586 -90
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +2 -2
- invenio_app_rdm/fixtures/pages.py +34 -12
- invenio_app_rdm/records_ui/searchapp.py +43 -0
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +59 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +236 -141
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +4 -3
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +22 -20
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +290 -230
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +30 -22
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -19
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +19 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +9 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +24 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +15 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +93 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +54 -39
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +182 -93
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +152 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +126 -1
- invenio_app_rdm/records_ui/views/__init__.py +75 -17
- invenio_app_rdm/records_ui/views/decorators.py +309 -38
- invenio_app_rdm/records_ui/views/deposits.py +302 -51
- invenio_app_rdm/records_ui/views/filters.py +74 -7
- invenio_app_rdm/records_ui/views/records.py +256 -90
- invenio_app_rdm/redirector/resource.py +1 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +34 -8
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +5 -3
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
- invenio_app_rdm/requests_ui/views/requests.py +221 -42
- invenio_app_rdm/requests_ui/views/ui.py +17 -4
- invenio_app_rdm/tasks.py +6 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +8 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +51 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +61 -31
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +680 -486
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +14 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +61 -21
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +55 -51
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +87 -89
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +44 -30
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +39 -20
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +44 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +111 -62
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +99 -61
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +98 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +216 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +104 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +230 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +13 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +238 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +72 -25
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +10 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +15 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +77 -9
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +122 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +1 -11
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +27 -412
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +47 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +43 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +32 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +15 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +15 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +24 -33
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +18 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +19 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +78 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +21 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +30 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +17 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +34 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +48 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +16 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +156 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +7 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +35 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +28 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +40 -11
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +2 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +4 -2
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +20 -33
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +805 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +306 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +700 -81
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +822 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +692 -67
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +819 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +699 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +315 -2
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +811 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +747 -134
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +810 -127
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +696 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +715 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +703 -72
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +705 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +718 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +807 -125
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +714 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +809 -142
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +800 -129
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +717 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +737 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -38
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +863 -127
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +8 -8
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +12 -12
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +33 -75
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +42 -27
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +4 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +144 -113
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +11 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +15 -16
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +33 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +43 -15
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
- invenio_app_rdm/theme/views.py +80 -28
- invenio_app_rdm/theme/webpack.py +38 -7
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +975 -378
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +913 -284
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1070 -406
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +909 -274
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1018 -407
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +964 -372
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +939 -363
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1033 -376
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +989 -372
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +970 -337
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +911 -282
- invenio_app_rdm/translations/messages.pot +982 -289
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1041 -382
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1023 -371
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +917 -288
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1007 -398
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +993 -342
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +984 -353
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +940 -348
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +2 -3
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +0 -2
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +1 -1
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/searchapp.py +9 -1
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +1 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +23 -9
- invenio_app_rdm/users_ui/views/__init__.py +1 -1
- invenio_app_rdm/users_ui/views/dashboard.py +6 -1
- invenio_app_rdm/users_ui/views/ui.py +5 -28
- invenio_app_rdm/utils/files.py +1 -1
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA +552 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD +505 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/stats/__init__.py +0 -24
- invenio_app_rdm/stats/event_builders.py +0 -112
- invenio_app_rdm/stats/permissions.py +0 -33
- invenio_app_rdm/stats/templates/aggregations/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/v7/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/events/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v2/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/v7/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v1/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v2/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/v7/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -262
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/ComputerTabletRequestsItem.js +0 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/MobileRequestsItem.js +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/static/robots.txt +0 -5
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm-12.0.0.dev8.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-12.0.0.dev8.dist-info/METADATA +0 -103
- invenio_app_rdm-12.0.0.dev8.dist-info/RECORD +0 -402
- invenio_app_rdm-12.0.0.dev8.dist-info/entry_points.txt +0 -26
- /invenio_app_rdm/{translations/.gitkeep → theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js} +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -0
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# yyones, 2024
|
|
4
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
5
|
+
# Rim Sharif, 2025
|
|
6
|
+
# Mattias Vesterlund, 2025
|
|
7
|
+
# Sam Arbid, 2025
|
|
5
8
|
#
|
|
6
9
|
msgid ""
|
|
7
10
|
msgstr ""
|
|
8
11
|
"Project-Id-Version: i18next-conv\n"
|
|
9
|
-
"POT-Creation-Date:
|
|
12
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
10
13
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
11
|
-
"Last-Translator: Sam Arbid,
|
|
12
|
-
"Language-Team: Swedish (https://
|
|
14
|
+
"Last-Translator: Sam Arbid, 2025\n"
|
|
15
|
+
"Language-Team: Swedish (https://app.transifex.com/inveniosoftware/teams/23537/sv/)\n"
|
|
13
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
15
18
|
"Language: sv\n"
|
|
@@ -19,17 +22,353 @@ msgstr ""
|
|
|
19
22
|
msgid "Basic information"
|
|
20
23
|
msgstr "Basinformation"
|
|
21
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
|
+
|
|
22
332
|
msgid "Copy to clipboard"
|
|
23
|
-
msgstr "Kopiera till
|
|
333
|
+
msgstr "Kopiera till urklipp"
|
|
24
334
|
|
|
25
335
|
msgid "Copied!"
|
|
26
336
|
msgstr "Kopierade!"
|
|
27
337
|
|
|
28
|
-
msgid "
|
|
29
|
-
msgstr "
|
|
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"
|
|
30
369
|
|
|
31
370
|
msgid "The record has no files."
|
|
32
|
-
msgstr "
|
|
371
|
+
msgstr "Posten har inga filer."
|
|
33
372
|
|
|
34
373
|
msgid "Creators"
|
|
35
374
|
msgstr "Skapare"
|
|
@@ -38,10 +377,19 @@ msgid "Recommended information"
|
|
|
38
377
|
msgstr "Rekommenderad information"
|
|
39
378
|
|
|
40
379
|
msgid "Add contributor"
|
|
41
|
-
msgstr "Lägg till
|
|
380
|
+
msgstr "Lägg till medverkande"
|
|
42
381
|
|
|
43
382
|
msgid "Contributors"
|
|
44
|
-
msgstr "
|
|
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"
|
|
45
393
|
|
|
46
394
|
msgid "Alternate identifiers"
|
|
47
395
|
msgstr "Alternativa identifierare"
|
|
@@ -49,155 +397,458 @@ msgstr "Alternativa identifierare"
|
|
|
49
397
|
msgid "Related works"
|
|
50
398
|
msgstr "Relaterade arbeten"
|
|
51
399
|
|
|
400
|
+
msgid "References"
|
|
401
|
+
msgstr "Referenser"
|
|
402
|
+
|
|
52
403
|
msgid "Visibility"
|
|
53
404
|
msgstr "Synlighet"
|
|
54
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
|
+
|
|
55
476
|
msgid "Edit"
|
|
56
477
|
msgstr "Redigera"
|
|
57
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
|
+
|
|
58
526
|
msgid "An error occurred while generating the citation."
|
|
59
527
|
msgstr "Ett fel uppstod när citatet genererades."
|
|
60
528
|
|
|
61
|
-
msgid "Citation"
|
|
62
|
-
msgstr "citering"
|
|
63
|
-
|
|
64
529
|
msgid "Style"
|
|
65
530
|
msgstr "Stil"
|
|
66
531
|
|
|
67
|
-
msgid "
|
|
68
|
-
msgstr "
|
|
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}}"
|
|
69
555
|
|
|
70
556
|
msgid "Preview"
|
|
71
|
-
msgstr "
|
|
557
|
+
msgstr "Förhandsgranska"
|
|
72
558
|
|
|
73
559
|
msgid "Only published versions are displayed."
|
|
74
560
|
msgstr "Endast publicerade versioner visas."
|
|
75
561
|
|
|
76
|
-
msgid "
|
|
77
|
-
msgstr "
|
|
562
|
+
msgid "An error occurred while fetching the versions."
|
|
563
|
+
msgstr "Ett fel uppstod när versionerna hämtades."
|
|
78
564
|
|
|
79
|
-
msgid "
|
|
80
|
-
|
|
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"
|
|
81
569
|
|
|
82
|
-
msgid "
|
|
83
|
-
|
|
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"
|
|
84
661
|
|
|
85
662
|
msgid "Can view"
|
|
86
663
|
msgstr "Kan visa"
|
|
87
664
|
|
|
88
|
-
msgid "Can
|
|
89
|
-
msgstr "Kan
|
|
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."
|
|
90
675
|
|
|
91
676
|
msgid "Can edit"
|
|
92
677
|
msgstr "Kan redigera"
|
|
93
678
|
|
|
94
|
-
msgid "
|
|
95
|
-
|
|
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."
|
|
96
684
|
|
|
97
|
-
msgid "
|
|
98
|
-
|
|
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)"
|
|
99
690
|
|
|
100
|
-
msgid "
|
|
101
|
-
msgstr "
|
|
691
|
+
msgid "Expires"
|
|
692
|
+
msgstr "Upphör att gälla"
|
|
102
693
|
|
|
103
|
-
msgid "
|
|
104
|
-
msgstr "
|
|
694
|
+
msgid "This record has no links generated yet."
|
|
695
|
+
msgstr "Inga länkar har ännu genererats för den här posten."
|
|
105
696
|
|
|
106
|
-
msgid ""
|
|
107
|
-
"
|
|
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."
|
|
108
705
|
msgstr ""
|
|
109
|
-
"
|
|
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"
|
|
110
738
|
|
|
111
739
|
msgid ""
|
|
112
|
-
"
|
|
113
|
-
"
|
|
740
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
741
|
+
"invited)"
|
|
114
742
|
msgstr ""
|
|
115
|
-
"
|
|
116
|
-
"
|
|
743
|
+
"Sök efter användare att tilldela åtkomst (endast användare med en offentlig "
|
|
744
|
+
"profil kan bjudas in)"
|
|
117
745
|
|
|
118
|
-
msgid "
|
|
119
|
-
msgstr "
|
|
746
|
+
msgid "Search by email, full name or username"
|
|
747
|
+
msgstr "Sök med e-post, fullständigt namn eller användarnamn"
|
|
120
748
|
|
|
121
|
-
msgid "
|
|
122
|
-
msgstr "
|
|
749
|
+
msgid "users"
|
|
750
|
+
msgstr "användare"
|
|
123
751
|
|
|
124
|
-
msgid "
|
|
125
|
-
msgstr "
|
|
752
|
+
msgid "Add groups"
|
|
753
|
+
msgstr "Lägg till grupper"
|
|
126
754
|
|
|
127
|
-
msgid "
|
|
128
|
-
msgstr "
|
|
755
|
+
msgid "Group"
|
|
756
|
+
msgstr "Grupp"
|
|
129
757
|
|
|
130
|
-
msgid "
|
|
131
|
-
msgstr "
|
|
758
|
+
msgid "No selected groups"
|
|
759
|
+
msgstr "Inga grupper valda"
|
|
132
760
|
|
|
133
|
-
msgid "
|
|
134
|
-
msgstr "
|
|
761
|
+
msgid "Search for groups"
|
|
762
|
+
msgstr "Sök efter grupper"
|
|
135
763
|
|
|
136
|
-
msgid "
|
|
137
|
-
msgstr "
|
|
764
|
+
msgid "groups"
|
|
765
|
+
msgstr "grupper"
|
|
138
766
|
|
|
139
|
-
msgid "
|
|
140
|
-
msgstr "
|
|
767
|
+
msgid "Add"
|
|
768
|
+
msgstr "Lägg till"
|
|
141
769
|
|
|
142
|
-
msgid "
|
|
143
|
-
msgstr "
|
|
770
|
+
msgid "Notify people"
|
|
771
|
+
msgstr "Meddela personer"
|
|
144
772
|
|
|
145
|
-
msgid "
|
|
146
|
-
msgstr "
|
|
773
|
+
msgid "Notification message"
|
|
774
|
+
msgstr "Aviseringsmeddelande"
|
|
147
775
|
|
|
148
|
-
msgid "
|
|
149
|
-
msgstr "
|
|
776
|
+
msgid "You are about to add"
|
|
777
|
+
msgstr "Du är på väg att lägga till"
|
|
150
778
|
|
|
151
|
-
msgid "
|
|
152
|
-
msgstr "
|
|
779
|
+
msgid "Access already granted"
|
|
780
|
+
msgstr "Åtkomst redan beviljad"
|
|
153
781
|
|
|
154
|
-
msgid "
|
|
155
|
-
msgstr "
|
|
782
|
+
msgid "Can manage"
|
|
783
|
+
msgstr "Kan hantera"
|
|
156
784
|
|
|
157
|
-
msgid "
|
|
158
|
-
|
|
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."
|
|
159
791
|
|
|
160
|
-
msgid "
|
|
161
|
-
msgstr "
|
|
792
|
+
msgid "You don't have permissions to share this record."
|
|
793
|
+
msgstr "Du har inte behörighet att dela denna post."
|
|
162
794
|
|
|
163
|
-
msgid "
|
|
164
|
-
msgstr "
|
|
795
|
+
msgid "Share"
|
|
796
|
+
msgstr "Dela"
|
|
165
797
|
|
|
166
|
-
msgid "
|
|
167
|
-
msgstr "
|
|
798
|
+
msgid "People"
|
|
799
|
+
msgstr "Personer"
|
|
168
800
|
|
|
169
|
-
msgid "
|
|
170
|
-
msgstr "
|
|
801
|
+
msgid "Groups"
|
|
802
|
+
msgstr "Grupper"
|
|
171
803
|
|
|
172
|
-
msgid "
|
|
173
|
-
msgstr "
|
|
804
|
+
msgid "Settings"
|
|
805
|
+
msgstr "Inställningar"
|
|
174
806
|
|
|
175
|
-
msgid "
|
|
176
|
-
msgstr "
|
|
807
|
+
msgid "Share access"
|
|
808
|
+
msgstr "Dela åtkomst"
|
|
177
809
|
|
|
178
|
-
msgid "
|
|
179
|
-
msgstr "
|
|
810
|
+
msgid "Link expiration"
|
|
811
|
+
msgstr "Länkens utgångsdatum"
|
|
180
812
|
|
|
181
|
-
msgid "
|
|
182
|
-
msgstr "
|
|
813
|
+
msgid "In 1 month"
|
|
814
|
+
msgstr "Inom 1 månad"
|
|
183
815
|
|
|
184
|
-
msgid "
|
|
185
|
-
msgstr "
|
|
816
|
+
msgid "In 2 months"
|
|
817
|
+
msgstr "Inom 2 månader"
|
|
186
818
|
|
|
187
|
-
msgid "
|
|
188
|
-
msgstr "
|
|
819
|
+
msgid "In 6 months"
|
|
820
|
+
msgstr "Inom 6 månader"
|
|
189
821
|
|
|
190
|
-
msgid "
|
|
191
|
-
msgstr "
|
|
822
|
+
msgid "In 1 year"
|
|
823
|
+
msgstr "Inom 1 år"
|
|
192
824
|
|
|
193
|
-
msgid "
|
|
194
|
-
msgstr "
|
|
825
|
+
msgid "Invalid date format."
|
|
826
|
+
msgstr "Ogiltigt datumformat."
|
|
195
827
|
|
|
196
|
-
msgid "
|
|
197
|
-
msgstr "
|
|
828
|
+
msgid "Access link expiration date cannot be in the past."
|
|
829
|
+
msgstr "Åtkomstlänkens utgångsdatum får inte ha passerat."
|
|
198
830
|
|
|
199
|
-
msgid "
|
|
200
|
-
msgstr "
|
|
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}}"
|
|
201
852
|
|
|
202
853
|
msgid "Start over"
|
|
203
854
|
msgstr "Börja om"
|
|
@@ -205,23 +856,30 @@ msgstr "Börja om"
|
|
|
205
856
|
msgid "ProTip"
|
|
206
857
|
msgstr "ProTip"
|
|
207
858
|
|
|
208
|
-
msgid "
|
|
209
|
-
msgstr "
|
|
859
|
+
msgid "Search guide"
|
|
860
|
+
msgstr "Sökguide"
|
|
210
861
|
|
|
211
|
-
msgid "
|
|
212
|
-
|
|
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>"
|
|
213
868
|
|
|
214
|
-
msgid "
|
|
215
|
-
msgstr "
|
|
869
|
+
msgid "Search in my communities..."
|
|
870
|
+
msgstr "Sök i mina communities..."
|
|
216
871
|
|
|
217
|
-
msgid "
|
|
218
|
-
msgstr "
|
|
872
|
+
msgid "View"
|
|
873
|
+
msgstr "Visa"
|
|
874
|
+
|
|
875
|
+
msgid "Published in: {{publishedIn}}"
|
|
876
|
+
msgstr "Publicerad i: {{publishedIn}}"
|
|
219
877
|
|
|
220
878
|
msgid "In review"
|
|
221
879
|
msgstr "Under granskning"
|
|
222
880
|
|
|
223
881
|
msgid "Declined"
|
|
224
|
-
msgstr "
|
|
882
|
+
msgstr "Avslagen"
|
|
225
883
|
|
|
226
884
|
msgid "Expired"
|
|
227
885
|
msgstr "Utgånget"
|
|
@@ -230,55 +888,64 @@ msgid "Draft"
|
|
|
230
888
|
msgstr "Utkast"
|
|
231
889
|
|
|
232
890
|
msgid "New version draft"
|
|
233
|
-
msgstr "
|
|
891
|
+
msgstr "Utkast till ny version"
|
|
234
892
|
|
|
235
|
-
msgid "
|
|
236
|
-
msgstr "
|
|
893
|
+
msgid "open"
|
|
894
|
+
msgstr "öppna"
|
|
237
895
|
|
|
238
|
-
msgid "
|
|
239
|
-
msgstr ""
|
|
240
|
-
"Ingen länk har skapats. Klicka på \"Hämta en länk\" för att skapa en ny "
|
|
241
|
-
"länk."
|
|
896
|
+
msgid "Open"
|
|
897
|
+
msgstr "Öppen"
|
|
242
898
|
|
|
243
|
-
msgid ""
|
|
244
|
-
"
|
|
245
|
-
"record & files."
|
|
246
|
-
msgstr ""
|
|
247
|
-
"Alla med ett konto och denna länk <1>kan redigera alla versioner</1> av "
|
|
248
|
-
"denna rekord och filer."
|
|
899
|
+
msgid "unlock"
|
|
900
|
+
msgstr "låsa upp"
|
|
249
901
|
|
|
250
|
-
msgid "
|
|
251
|
-
msgstr "
|
|
902
|
+
msgid "Get started!"
|
|
903
|
+
msgstr "Kom igång!"
|
|
252
904
|
|
|
253
|
-
msgid "
|
|
254
|
-
msgstr "
|
|
905
|
+
msgid "Make your first upload!"
|
|
906
|
+
msgstr "Gör din första uppladdning!"
|
|
255
907
|
|
|
256
|
-
msgid "
|
|
257
|
-
msgstr "
|
|
908
|
+
msgid "New upload"
|
|
909
|
+
msgstr "Ny uppladdning"
|
|
258
910
|
|
|
259
|
-
msgid "
|
|
260
|
-
msgstr "
|
|
911
|
+
msgid "Search in my uploads..."
|
|
912
|
+
msgstr "Sök i mina uppladdningar..."
|
|
261
913
|
|
|
262
|
-
msgid "
|
|
263
|
-
msgstr "
|
|
914
|
+
msgid "ORCID profile"
|
|
915
|
+
msgstr "ORCID-profil"
|
|
264
916
|
|
|
265
|
-
msgid "
|
|
266
|
-
msgstr "
|
|
917
|
+
msgid "ORCID logo"
|
|
918
|
+
msgstr "ORCID logo"
|
|
267
919
|
|
|
268
|
-
msgid "
|
|
269
|
-
msgstr "
|
|
920
|
+
msgid "ROR profile"
|
|
921
|
+
msgstr "ROR-profil"
|
|
270
922
|
|
|
271
|
-
msgid "
|
|
272
|
-
msgstr "
|
|
923
|
+
msgid "ROR logo"
|
|
924
|
+
msgstr "ROR logo"
|
|
273
925
|
|
|
274
|
-
msgid "
|
|
275
|
-
msgstr "
|
|
926
|
+
msgid "GND profile"
|
|
927
|
+
msgstr "GND-profil"
|
|
276
928
|
|
|
277
|
-
msgid "
|
|
278
|
-
msgstr "
|
|
929
|
+
msgid "GND logo"
|
|
930
|
+
msgstr "GND logo"
|
|
279
931
|
|
|
280
|
-
msgid "
|
|
281
|
-
msgstr "
|
|
932
|
+
msgid "No name"
|
|
933
|
+
msgstr "Inget namn"
|
|
282
934
|
|
|
283
|
-
msgid "
|
|
284
|
-
|
|
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>"
|