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
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po
ADDED
|
@@ -0,0 +1,889 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Translators:
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: i18next-conv\n"
|
|
8
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
9
|
+
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
10
|
+
"Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2024\n"
|
|
11
|
+
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/inveniosoftware/teams/23537/zh_TW/)\n"
|
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
14
|
+
"Language: zh_TW\n"
|
|
15
|
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
16
|
+
"mime-version: 1.0\n"
|
|
17
|
+
|
|
18
|
+
msgid "Basic information"
|
|
19
|
+
msgstr ""
|
|
20
|
+
|
|
21
|
+
msgid "Impersonate user"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
msgid "Impersonate"
|
|
25
|
+
msgstr ""
|
|
26
|
+
|
|
27
|
+
msgid "You must accept this."
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
30
|
+
msgid "Success"
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
msgid ""
|
|
34
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
msgid "Unable to impersonate user."
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
msgid ""
|
|
41
|
+
"Please read carefully and confirm the following statements before you "
|
|
42
|
+
"proceed."
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "Close"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
msgid "Set Quota"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
msgid "Set quota in bytes"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
60
|
+
msgid "Note"
|
|
61
|
+
msgstr "注意"
|
|
62
|
+
|
|
63
|
+
msgid ""
|
|
64
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
65
|
+
" this user – it will NOT update quota of existing records."
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
msgid "Unable to set quota."
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
74
|
+
msgid "Quota size ({{unit}})"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
77
|
+
msgid "Enter quota size..."
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
msgid "Max file size ({{unit}})"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
msgid "Enter max file size..."
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Ticket 1234"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
msgid "Set quota"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
92
|
+
msgid "Domain"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
msgid "Flagged"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Organization"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
msgid "Company"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
msgid "Mail provider"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
msgid "Spammer"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
msgid "TLD"
|
|
111
|
+
msgstr ""
|
|
112
|
+
|
|
113
|
+
msgid "Status"
|
|
114
|
+
msgstr "狀態"
|
|
115
|
+
|
|
116
|
+
msgid "New"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
msgid "Moderated"
|
|
120
|
+
msgstr ""
|
|
121
|
+
|
|
122
|
+
msgid "Verified"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
125
|
+
msgid "Blocked"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
msgid "Users"
|
|
129
|
+
msgstr "用戶"
|
|
130
|
+
|
|
131
|
+
msgid "Active"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
msgid "Inactive"
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
msgid "Confirmed"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
msgid "Links"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
msgid "Set quota for record {{recordId}}"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
msgid "Delete record"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
msgid "Restore record"
|
|
150
|
+
msgstr ""
|
|
151
|
+
|
|
152
|
+
msgid "Unavailability statement"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
msgid "Record {{id}} was restored."
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
msgid "Unable to restore."
|
|
159
|
+
msgstr ""
|
|
160
|
+
|
|
161
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
msgid "Published"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
msgid "Deleted"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
msgid "Scheduled for purge"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
173
|
+
msgid "Empty draft title"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
176
|
+
msgid "version"
|
|
177
|
+
msgstr "版本"
|
|
178
|
+
|
|
179
|
+
msgid "Owner"
|
|
180
|
+
msgstr "擁有者"
|
|
181
|
+
|
|
182
|
+
msgid "Created"
|
|
183
|
+
msgstr ""
|
|
184
|
+
|
|
185
|
+
msgid "Files"
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
msgid "Stats"
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
msgid "Record {{id}} was deleted."
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
msgid "Unable to delete"
|
|
195
|
+
msgstr ""
|
|
196
|
+
|
|
197
|
+
msgid "Public"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
msgid "Hidden"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
msgid ""
|
|
204
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
205
|
+
"to provide a public tombstone when deactivating public records."
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
208
|
+
msgid ""
|
|
209
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
210
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
211
|
+
"tombstone below."
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
214
|
+
msgid "Bibliographic citation"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
msgid ""
|
|
218
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
219
|
+
"default."
|
|
220
|
+
msgstr ""
|
|
221
|
+
|
|
222
|
+
msgid "Public note"
|
|
223
|
+
msgstr ""
|
|
224
|
+
|
|
225
|
+
msgid "User {{name}} was approved."
|
|
226
|
+
msgstr ""
|
|
227
|
+
|
|
228
|
+
msgid "User {{name}} is blocked."
|
|
229
|
+
msgstr ""
|
|
230
|
+
|
|
231
|
+
msgid "Error"
|
|
232
|
+
msgstr "錯誤"
|
|
233
|
+
|
|
234
|
+
msgid "User"
|
|
235
|
+
msgstr ""
|
|
236
|
+
|
|
237
|
+
msgid "Email"
|
|
238
|
+
msgstr "電郵"
|
|
239
|
+
|
|
240
|
+
msgid "Email domain"
|
|
241
|
+
msgstr ""
|
|
242
|
+
|
|
243
|
+
msgid "Actions"
|
|
244
|
+
msgstr "行動"
|
|
245
|
+
|
|
246
|
+
msgid "Records"
|
|
247
|
+
msgstr ""
|
|
248
|
+
|
|
249
|
+
msgid "Username"
|
|
250
|
+
msgstr "帳號"
|
|
251
|
+
|
|
252
|
+
msgid "GitHub"
|
|
253
|
+
msgstr ""
|
|
254
|
+
|
|
255
|
+
msgid "Updated"
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
msgid "Restore"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
261
|
+
msgid "Restored"
|
|
262
|
+
msgstr ""
|
|
263
|
+
|
|
264
|
+
msgid "Block"
|
|
265
|
+
msgstr ""
|
|
266
|
+
|
|
267
|
+
msgid "Suspend"
|
|
268
|
+
msgstr ""
|
|
269
|
+
|
|
270
|
+
msgid "Suspended"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
msgid "Approve"
|
|
274
|
+
msgstr ""
|
|
275
|
+
|
|
276
|
+
msgid "Approved"
|
|
277
|
+
msgstr "已批核"
|
|
278
|
+
|
|
279
|
+
msgid "Activate"
|
|
280
|
+
msgstr ""
|
|
281
|
+
|
|
282
|
+
msgid "Activated"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
msgid "Set default quota for {{email}}"
|
|
286
|
+
msgstr ""
|
|
287
|
+
|
|
288
|
+
msgid "Filter results"
|
|
289
|
+
msgstr ""
|
|
290
|
+
|
|
291
|
+
msgid "Search records in community..."
|
|
292
|
+
msgstr ""
|
|
293
|
+
|
|
294
|
+
msgid "Sort by"
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
msgid " results found"
|
|
298
|
+
msgid_plural " results found"
|
|
299
|
+
msgstr[0] ""
|
|
300
|
+
|
|
301
|
+
msgid "Search records..."
|
|
302
|
+
msgstr ""
|
|
303
|
+
|
|
304
|
+
msgid "Search"
|
|
305
|
+
msgstr "搜尋"
|
|
306
|
+
|
|
307
|
+
msgid "Views"
|
|
308
|
+
msgstr ""
|
|
309
|
+
|
|
310
|
+
msgid "Downloads"
|
|
311
|
+
msgstr ""
|
|
312
|
+
|
|
313
|
+
msgid "Copy to clipboard"
|
|
314
|
+
msgstr ""
|
|
315
|
+
|
|
316
|
+
msgid "Copied!"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
msgid "Part of "
|
|
320
|
+
msgstr ""
|
|
321
|
+
|
|
322
|
+
msgid "No creation date found."
|
|
323
|
+
msgstr ""
|
|
324
|
+
|
|
325
|
+
msgid "No description"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
msgid "No publication date found."
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
msgid "No resource type"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
msgid "No title"
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
msgid "Published in: {{publishInfo}}"
|
|
341
|
+
msgstr ""
|
|
342
|
+
|
|
343
|
+
msgid "{{count}} more versions exist for this record"
|
|
344
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
345
|
+
msgstr[0] ""
|
|
346
|
+
|
|
347
|
+
msgid "Person"
|
|
348
|
+
msgstr ""
|
|
349
|
+
|
|
350
|
+
msgid "The record has no files."
|
|
351
|
+
msgstr ""
|
|
352
|
+
|
|
353
|
+
msgid "Creators"
|
|
354
|
+
msgstr ""
|
|
355
|
+
|
|
356
|
+
msgid "Recommended information"
|
|
357
|
+
msgstr ""
|
|
358
|
+
|
|
359
|
+
msgid "Add contributor"
|
|
360
|
+
msgstr ""
|
|
361
|
+
|
|
362
|
+
msgid "Contributors"
|
|
363
|
+
msgstr ""
|
|
364
|
+
|
|
365
|
+
msgid "Edit contributor"
|
|
366
|
+
msgstr ""
|
|
367
|
+
|
|
368
|
+
msgid "Funding"
|
|
369
|
+
msgstr ""
|
|
370
|
+
|
|
371
|
+
msgid "Awards/Grants"
|
|
372
|
+
msgstr ""
|
|
373
|
+
|
|
374
|
+
msgid "Alternate identifiers"
|
|
375
|
+
msgstr ""
|
|
376
|
+
|
|
377
|
+
msgid "Related works"
|
|
378
|
+
msgstr ""
|
|
379
|
+
|
|
380
|
+
msgid "References"
|
|
381
|
+
msgstr ""
|
|
382
|
+
|
|
383
|
+
msgid "Visibility"
|
|
384
|
+
msgstr ""
|
|
385
|
+
|
|
386
|
+
msgid "More"
|
|
387
|
+
msgstr ""
|
|
388
|
+
|
|
389
|
+
msgid "Unable to request the access."
|
|
390
|
+
msgstr ""
|
|
391
|
+
|
|
392
|
+
msgid "Your email address"
|
|
393
|
+
msgstr ""
|
|
394
|
+
|
|
395
|
+
msgid "Email address"
|
|
396
|
+
msgstr "電郵"
|
|
397
|
+
|
|
398
|
+
msgid "Your full name"
|
|
399
|
+
msgstr ""
|
|
400
|
+
|
|
401
|
+
msgid "Full name"
|
|
402
|
+
msgstr ""
|
|
403
|
+
|
|
404
|
+
msgid "Request message"
|
|
405
|
+
msgstr ""
|
|
406
|
+
|
|
407
|
+
msgid ""
|
|
408
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
409
|
+
"the record"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
412
|
+
msgid "Request access"
|
|
413
|
+
msgstr ""
|
|
414
|
+
|
|
415
|
+
msgid "Email confirmation needed"
|
|
416
|
+
msgstr ""
|
|
417
|
+
|
|
418
|
+
msgid "We have sent you an email to verify your address."
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
421
|
+
msgid ""
|
|
422
|
+
"\n"
|
|
423
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
424
|
+
" "
|
|
425
|
+
msgstr ""
|
|
426
|
+
|
|
427
|
+
msgid "An error occurred while fetching communities."
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid "Communities"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
msgid "View all {{count}} communities"
|
|
434
|
+
msgid_plural "View all {{count}} communities"
|
|
435
|
+
msgstr[0] ""
|
|
436
|
+
|
|
437
|
+
msgid "Submit to community"
|
|
438
|
+
msgstr ""
|
|
439
|
+
|
|
440
|
+
msgid "Pending submissions"
|
|
441
|
+
msgstr ""
|
|
442
|
+
|
|
443
|
+
msgid "Manage communities"
|
|
444
|
+
msgstr ""
|
|
445
|
+
|
|
446
|
+
msgid "Community management menu dropdown"
|
|
447
|
+
msgstr ""
|
|
448
|
+
|
|
449
|
+
msgid "Edit"
|
|
450
|
+
msgstr "編輯"
|
|
451
|
+
|
|
452
|
+
msgid "Export selection"
|
|
453
|
+
msgstr ""
|
|
454
|
+
|
|
455
|
+
msgid "Download file"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
msgid "Export"
|
|
459
|
+
msgstr ""
|
|
460
|
+
|
|
461
|
+
msgid "Manage"
|
|
462
|
+
msgstr ""
|
|
463
|
+
|
|
464
|
+
msgid "Manage record"
|
|
465
|
+
msgstr ""
|
|
466
|
+
|
|
467
|
+
msgid "Manage user"
|
|
468
|
+
msgstr ""
|
|
469
|
+
|
|
470
|
+
msgid "Remove branding"
|
|
471
|
+
msgstr ""
|
|
472
|
+
|
|
473
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
476
|
+
msgid ""
|
|
477
|
+
"Remove this community from appearing on top of the record details page."
|
|
478
|
+
msgstr ""
|
|
479
|
+
|
|
480
|
+
msgid "Set branding"
|
|
481
|
+
msgstr ""
|
|
482
|
+
|
|
483
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
484
|
+
msgstr ""
|
|
485
|
+
|
|
486
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
487
|
+
msgstr ""
|
|
488
|
+
|
|
489
|
+
msgid "Pending communities"
|
|
490
|
+
msgstr ""
|
|
491
|
+
|
|
492
|
+
msgid "Search for pending submissions to communities..."
|
|
493
|
+
msgstr ""
|
|
494
|
+
|
|
495
|
+
msgid "An error occurred while generating the citation."
|
|
496
|
+
msgstr ""
|
|
497
|
+
|
|
498
|
+
msgid "Style"
|
|
499
|
+
msgstr ""
|
|
500
|
+
|
|
501
|
+
msgid "This record is not included in any communities yet."
|
|
502
|
+
msgstr ""
|
|
503
|
+
|
|
504
|
+
msgid "Search for community..."
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
msgid "Record submitted"
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
510
|
+
msgid "Review requested"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
msgid "Search in all communities"
|
|
514
|
+
msgstr ""
|
|
515
|
+
|
|
516
|
+
msgid "Search in my communities"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
msgid "Select a community"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
522
|
+
msgid "Version {{- version}}"
|
|
523
|
+
msgstr ""
|
|
524
|
+
|
|
525
|
+
msgid "Preview"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
528
|
+
msgid "Only published versions are displayed."
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
531
|
+
msgid "An error occurred while fetching the versions."
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
534
|
+
msgid "View all {{count}} versions"
|
|
535
|
+
msgid_plural "View all {{count}} versions"
|
|
536
|
+
msgstr[0] ""
|
|
537
|
+
|
|
538
|
+
msgid ""
|
|
539
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
540
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
541
|
+
"latest one. <5>Read more</5>.</0>"
|
|
542
|
+
msgstr ""
|
|
543
|
+
|
|
544
|
+
msgid ""
|
|
545
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
546
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
547
|
+
"more</4>.</0>"
|
|
548
|
+
msgstr ""
|
|
549
|
+
|
|
550
|
+
msgid "Remove"
|
|
551
|
+
msgstr "移除"
|
|
552
|
+
|
|
553
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
554
|
+
msgstr ""
|
|
555
|
+
|
|
556
|
+
msgid "Remove community"
|
|
557
|
+
msgstr ""
|
|
558
|
+
|
|
559
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
msgid "I understand the consequences:"
|
|
563
|
+
msgstr ""
|
|
564
|
+
|
|
565
|
+
msgid ""
|
|
566
|
+
"The record can only be re-included in the community by going through a new "
|
|
567
|
+
"review by the community curators."
|
|
568
|
+
msgstr ""
|
|
569
|
+
|
|
570
|
+
msgid "Something went wrong"
|
|
571
|
+
msgstr ""
|
|
572
|
+
|
|
573
|
+
msgid "Cancel removal"
|
|
574
|
+
msgstr ""
|
|
575
|
+
|
|
576
|
+
msgid "Cancel"
|
|
577
|
+
msgstr "取消"
|
|
578
|
+
|
|
579
|
+
msgid "Confirm removal"
|
|
580
|
+
msgstr ""
|
|
581
|
+
|
|
582
|
+
msgid ""
|
|
583
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
584
|
+
"their access</4> to the record."
|
|
585
|
+
msgstr ""
|
|
586
|
+
|
|
587
|
+
msgid "Select permissions"
|
|
588
|
+
msgstr ""
|
|
589
|
+
|
|
590
|
+
msgid "Short name for your link (optional)."
|
|
591
|
+
msgstr ""
|
|
592
|
+
|
|
593
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
594
|
+
msgstr ""
|
|
595
|
+
|
|
596
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
msgid "Create a new link"
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
602
|
+
msgid "Link title"
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
605
|
+
msgid "Expires at"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
msgid "Never"
|
|
609
|
+
msgstr ""
|
|
610
|
+
|
|
611
|
+
msgid "Access"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
msgid "Delete"
|
|
615
|
+
msgstr "刪除"
|
|
616
|
+
|
|
617
|
+
msgid "Copy link"
|
|
618
|
+
msgstr ""
|
|
619
|
+
|
|
620
|
+
msgid "Can view"
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
623
|
+
msgid "Can view restricted files of all versions of this record."
|
|
624
|
+
msgstr ""
|
|
625
|
+
|
|
626
|
+
msgid "Can preview drafts"
|
|
627
|
+
msgstr ""
|
|
628
|
+
|
|
629
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
630
|
+
msgstr ""
|
|
631
|
+
|
|
632
|
+
msgid "Can edit"
|
|
633
|
+
msgstr ""
|
|
634
|
+
|
|
635
|
+
msgid ""
|
|
636
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
637
|
+
msgstr ""
|
|
638
|
+
|
|
639
|
+
msgid ""
|
|
640
|
+
"Can view (view access link can be created only after the record is "
|
|
641
|
+
"published)"
|
|
642
|
+
msgstr ""
|
|
643
|
+
|
|
644
|
+
msgid "Expires"
|
|
645
|
+
msgstr ""
|
|
646
|
+
|
|
647
|
+
msgid "This record has no links generated yet."
|
|
648
|
+
msgstr ""
|
|
649
|
+
|
|
650
|
+
msgid "Unable to change the access request settings."
|
|
651
|
+
msgstr ""
|
|
652
|
+
|
|
653
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
654
|
+
msgstr ""
|
|
655
|
+
|
|
656
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
657
|
+
msgstr ""
|
|
658
|
+
|
|
659
|
+
msgid "Accept conditions"
|
|
660
|
+
msgstr ""
|
|
661
|
+
|
|
662
|
+
msgid "Advanced options"
|
|
663
|
+
msgstr ""
|
|
664
|
+
|
|
665
|
+
msgid "Save"
|
|
666
|
+
msgstr ""
|
|
667
|
+
|
|
668
|
+
msgid "No user has access to this record yet."
|
|
669
|
+
msgstr ""
|
|
670
|
+
|
|
671
|
+
msgid "People with access"
|
|
672
|
+
msgstr ""
|
|
673
|
+
|
|
674
|
+
msgid "No group has access to this record yet."
|
|
675
|
+
msgstr ""
|
|
676
|
+
|
|
677
|
+
msgid "Groups with access"
|
|
678
|
+
msgstr ""
|
|
679
|
+
|
|
680
|
+
msgid "You"
|
|
681
|
+
msgstr ""
|
|
682
|
+
|
|
683
|
+
msgid "Add people"
|
|
684
|
+
msgstr ""
|
|
685
|
+
|
|
686
|
+
msgid "No selected users"
|
|
687
|
+
msgstr ""
|
|
688
|
+
|
|
689
|
+
msgid ""
|
|
690
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
691
|
+
"invited)"
|
|
692
|
+
msgstr ""
|
|
693
|
+
|
|
694
|
+
msgid "Search by email, full name or username"
|
|
695
|
+
msgstr ""
|
|
696
|
+
|
|
697
|
+
msgid "users"
|
|
698
|
+
msgstr ""
|
|
699
|
+
|
|
700
|
+
msgid "Add groups"
|
|
701
|
+
msgstr ""
|
|
702
|
+
|
|
703
|
+
msgid "Group"
|
|
704
|
+
msgstr "組別"
|
|
705
|
+
|
|
706
|
+
msgid "No selected groups"
|
|
707
|
+
msgstr ""
|
|
708
|
+
|
|
709
|
+
msgid "Search for groups"
|
|
710
|
+
msgstr ""
|
|
711
|
+
|
|
712
|
+
msgid "groups"
|
|
713
|
+
msgstr ""
|
|
714
|
+
|
|
715
|
+
msgid "Add"
|
|
716
|
+
msgstr ""
|
|
717
|
+
|
|
718
|
+
msgid "Notify people"
|
|
719
|
+
msgstr ""
|
|
720
|
+
|
|
721
|
+
msgid "Notification message"
|
|
722
|
+
msgstr ""
|
|
723
|
+
|
|
724
|
+
msgid "You are about to add"
|
|
725
|
+
msgstr ""
|
|
726
|
+
|
|
727
|
+
msgid "Access already granted"
|
|
728
|
+
msgstr ""
|
|
729
|
+
|
|
730
|
+
msgid "Can manage"
|
|
731
|
+
msgstr ""
|
|
732
|
+
|
|
733
|
+
msgid ""
|
|
734
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
735
|
+
"this record."
|
|
736
|
+
msgstr ""
|
|
737
|
+
|
|
738
|
+
msgid "You don't have permissions to share this record."
|
|
739
|
+
msgstr ""
|
|
740
|
+
|
|
741
|
+
msgid "Share"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
744
|
+
msgid "People"
|
|
745
|
+
msgstr ""
|
|
746
|
+
|
|
747
|
+
msgid "Groups"
|
|
748
|
+
msgstr "組別"
|
|
749
|
+
|
|
750
|
+
msgid "Settings"
|
|
751
|
+
msgstr ""
|
|
752
|
+
|
|
753
|
+
msgid "Share access"
|
|
754
|
+
msgstr ""
|
|
755
|
+
|
|
756
|
+
msgid "Link expiration"
|
|
757
|
+
msgstr ""
|
|
758
|
+
|
|
759
|
+
msgid "In 1 month"
|
|
760
|
+
msgstr ""
|
|
761
|
+
|
|
762
|
+
msgid "In 2 months"
|
|
763
|
+
msgstr ""
|
|
764
|
+
|
|
765
|
+
msgid "In 6 months"
|
|
766
|
+
msgstr ""
|
|
767
|
+
|
|
768
|
+
msgid "In 1 year"
|
|
769
|
+
msgstr ""
|
|
770
|
+
|
|
771
|
+
msgid "Invalid date format."
|
|
772
|
+
msgstr ""
|
|
773
|
+
|
|
774
|
+
msgid "Access link expiration date cannot be in the past."
|
|
775
|
+
msgstr ""
|
|
776
|
+
|
|
777
|
+
msgid "Access request"
|
|
778
|
+
msgstr ""
|
|
779
|
+
|
|
780
|
+
msgid "Unable to change the expiration request settings."
|
|
781
|
+
msgstr ""
|
|
782
|
+
|
|
783
|
+
msgid "Expiration date: "
|
|
784
|
+
msgstr ""
|
|
785
|
+
|
|
786
|
+
msgid ""
|
|
787
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
788
|
+
"empty to set no expiration limit."
|
|
789
|
+
msgstr ""
|
|
790
|
+
|
|
791
|
+
msgid "Link expiration date:"
|
|
792
|
+
msgstr ""
|
|
793
|
+
|
|
794
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
msgid "Start over"
|
|
798
|
+
msgstr ""
|
|
799
|
+
|
|
800
|
+
msgid "ProTip"
|
|
801
|
+
msgstr ""
|
|
802
|
+
|
|
803
|
+
msgid "Search guide"
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
msgid ""
|
|
807
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
808
|
+
"search queries.</0>"
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
msgid "Search in my communities..."
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
msgid "View"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
817
|
+
msgid "Published in: {{publishedIn}}"
|
|
818
|
+
msgstr ""
|
|
819
|
+
|
|
820
|
+
msgid "In review"
|
|
821
|
+
msgstr ""
|
|
822
|
+
|
|
823
|
+
msgid "Declined"
|
|
824
|
+
msgstr ""
|
|
825
|
+
|
|
826
|
+
msgid "Expired"
|
|
827
|
+
msgstr ""
|
|
828
|
+
|
|
829
|
+
msgid "Draft"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
832
|
+
msgid "New version draft"
|
|
833
|
+
msgstr ""
|
|
834
|
+
|
|
835
|
+
msgid "open"
|
|
836
|
+
msgstr ""
|
|
837
|
+
|
|
838
|
+
msgid "Open"
|
|
839
|
+
msgstr ""
|
|
840
|
+
|
|
841
|
+
msgid "unlock"
|
|
842
|
+
msgstr ""
|
|
843
|
+
|
|
844
|
+
msgid "Get started!"
|
|
845
|
+
msgstr ""
|
|
846
|
+
|
|
847
|
+
msgid "Make your first upload!"
|
|
848
|
+
msgstr ""
|
|
849
|
+
|
|
850
|
+
msgid "New upload"
|
|
851
|
+
msgstr ""
|
|
852
|
+
|
|
853
|
+
msgid "Search in my uploads..."
|
|
854
|
+
msgstr ""
|
|
855
|
+
|
|
856
|
+
msgid "ORCID profile"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
msgid "ORCID logo"
|
|
860
|
+
msgstr ""
|
|
861
|
+
|
|
862
|
+
msgid "ROR profile"
|
|
863
|
+
msgstr ""
|
|
864
|
+
|
|
865
|
+
msgid "ROR logo"
|
|
866
|
+
msgstr ""
|
|
867
|
+
|
|
868
|
+
msgid "GND profile"
|
|
869
|
+
msgstr ""
|
|
870
|
+
|
|
871
|
+
msgid "GND logo"
|
|
872
|
+
msgstr ""
|
|
873
|
+
|
|
874
|
+
msgid "No name"
|
|
875
|
+
msgstr ""
|
|
876
|
+
|
|
877
|
+
msgid "and {{count}} other"
|
|
878
|
+
msgid_plural "and {{count}} other"
|
|
879
|
+
msgstr[0] ""
|
|
880
|
+
|
|
881
|
+
msgid "and {{count}} others"
|
|
882
|
+
msgid_plural "and {{count}} others"
|
|
883
|
+
msgstr[0] ""
|
|
884
|
+
|
|
885
|
+
msgctxt ""
|
|
886
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
887
|
+
"until today.</0>"
|
|
888
|
+
msgid "<0><0>metadata.publication"
|
|
889
|
+
msgstr ""
|