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/tr/messages.po
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
|
-
#
|
|
4
|
-
#
|
|
3
|
+
# Hakan Bayindir <hbayindir@gmail.com>, 2024
|
|
4
|
+
# Berat Aldemir <berataldemir@gmail.com>, 2024
|
|
5
|
+
# Ben Translation and Interpreting Services <info@bentercume.com>, 2025
|
|
6
|
+
# BEN TERCÜME, 2025
|
|
5
7
|
#
|
|
6
8
|
msgid ""
|
|
7
9
|
msgstr ""
|
|
8
10
|
"Project-Id-Version: i18next-conv\n"
|
|
9
|
-
"POT-Creation-Date:
|
|
11
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
10
12
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
11
|
-
"Last-Translator:
|
|
12
|
-
"Language-Team: Turkish (https://
|
|
13
|
+
"Last-Translator: BEN TERCÜME, 2025\n"
|
|
14
|
+
"Language-Team: Turkish (https://app.transifex.com/inveniosoftware/teams/23537/tr/)\n"
|
|
13
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
15
17
|
"Language: tr\n"
|
|
@@ -19,14 +21,352 @@ msgstr ""
|
|
|
19
21
|
msgid "Basic information"
|
|
20
22
|
msgstr "Temel bilgiler"
|
|
21
23
|
|
|
24
|
+
msgid "Impersonate user"
|
|
25
|
+
msgstr "Kullanıcıyı taklit et"
|
|
26
|
+
|
|
27
|
+
msgid "Impersonate"
|
|
28
|
+
msgstr "Taklit et"
|
|
29
|
+
|
|
30
|
+
msgid "You must accept this."
|
|
31
|
+
msgstr "Bunu kabul etmelisiniz."
|
|
32
|
+
|
|
33
|
+
msgid "Success"
|
|
34
|
+
msgstr "Başarı"
|
|
35
|
+
|
|
36
|
+
msgid ""
|
|
37
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
38
|
+
msgstr ""
|
|
39
|
+
"Kullanıcı başarıyla taklit edildi! Yakında ana sayfaya yönlendirileceksiniz."
|
|
40
|
+
|
|
41
|
+
msgid "Unable to impersonate user."
|
|
42
|
+
msgstr "Kullanıcı taklit edilemiyor."
|
|
43
|
+
|
|
44
|
+
msgid ""
|
|
45
|
+
"Please read carefully and confirm the following statements before you "
|
|
46
|
+
"proceed."
|
|
47
|
+
msgstr ""
|
|
48
|
+
"Lütfen devam etmeden önce aşağıdaki ifadeleri dikkatlice okuyun ve "
|
|
49
|
+
"onaylayın."
|
|
50
|
+
|
|
51
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
52
|
+
msgstr ""
|
|
53
|
+
"<bold>{{email}}(id: {{id}})</bold>kullanıcısını taklit etmek üzeresiniz."
|
|
54
|
+
|
|
55
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
56
|
+
msgstr ""
|
|
57
|
+
"Sorgulamanızı tamamladıktan sonra <bold>MUTLAKA</bold> çıkış yapmalısınız."
|
|
58
|
+
|
|
59
|
+
msgid "Close"
|
|
60
|
+
msgstr "Kapat"
|
|
61
|
+
|
|
62
|
+
msgid "Set Quota"
|
|
63
|
+
msgstr "Kota Belirle"
|
|
64
|
+
|
|
65
|
+
msgid "Set quota in bytes"
|
|
66
|
+
msgstr "Bayt olarak kota belirle"
|
|
67
|
+
|
|
68
|
+
msgid "Note"
|
|
69
|
+
msgstr "Not"
|
|
70
|
+
|
|
71
|
+
msgid ""
|
|
72
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
73
|
+
" this user – it will NOT update quota of existing records."
|
|
74
|
+
msgstr ""
|
|
75
|
+
"Bu kota, bu kullanıcı tarafından oluşturulacak tüm YENİ kayıtlara "
|
|
76
|
+
"uygulanacak olan varsayılan kotadır - mevcut kayıtların kotasını "
|
|
77
|
+
"GÜNCELLEMEZ."
|
|
78
|
+
|
|
79
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
80
|
+
msgstr "{{id}} kotası {{quota}} {{unit}} olarak ayarlandı"
|
|
81
|
+
|
|
82
|
+
msgid "Unable to set quota."
|
|
83
|
+
msgstr "Kota ayarlanamıyor."
|
|
84
|
+
|
|
85
|
+
msgid "Quota size ({{unit}})"
|
|
86
|
+
msgstr "Kota boyutu ({{unit}})"
|
|
87
|
+
|
|
88
|
+
msgid "Enter quota size..."
|
|
89
|
+
msgstr "Kota boyutunu girin..."
|
|
90
|
+
|
|
91
|
+
msgid "Max file size ({{unit}})"
|
|
92
|
+
msgstr "Maksimum dosya boyutu ({{unit}})"
|
|
93
|
+
|
|
94
|
+
msgid "Enter max file size..."
|
|
95
|
+
msgstr "Maksimum dosya boyutunu girin..."
|
|
96
|
+
|
|
97
|
+
msgid "Ticket 1234"
|
|
98
|
+
msgstr "Talep 1234"
|
|
99
|
+
|
|
100
|
+
msgid "Set quota"
|
|
101
|
+
msgstr "Kota belirle"
|
|
102
|
+
|
|
103
|
+
msgid "Domain"
|
|
104
|
+
msgstr "Etki Alanı"
|
|
105
|
+
|
|
106
|
+
msgid "Flagged"
|
|
107
|
+
msgstr "İşaretli"
|
|
108
|
+
|
|
109
|
+
msgid "Organization"
|
|
110
|
+
msgstr "Kuruluş"
|
|
111
|
+
|
|
112
|
+
msgid "Company"
|
|
113
|
+
msgstr "Şirket"
|
|
114
|
+
|
|
115
|
+
msgid "Mail provider"
|
|
116
|
+
msgstr "E-posta servis sağlayıcısı"
|
|
117
|
+
|
|
118
|
+
msgid "Spammer"
|
|
119
|
+
msgstr "Spam gönderen"
|
|
120
|
+
|
|
121
|
+
msgid "TLD"
|
|
122
|
+
msgstr "TLD"
|
|
123
|
+
|
|
124
|
+
msgid "Status"
|
|
125
|
+
msgstr "Durum"
|
|
126
|
+
|
|
127
|
+
msgid "New"
|
|
128
|
+
msgstr "Yeni"
|
|
129
|
+
|
|
130
|
+
msgid "Moderated"
|
|
131
|
+
msgstr "Denetlenmiş"
|
|
132
|
+
|
|
133
|
+
msgid "Verified"
|
|
134
|
+
msgstr "Doğrulanmış"
|
|
135
|
+
|
|
136
|
+
msgid "Blocked"
|
|
137
|
+
msgstr "Engellenmiş"
|
|
138
|
+
|
|
139
|
+
msgid "Users"
|
|
140
|
+
msgstr "Kullanıcılar"
|
|
141
|
+
|
|
142
|
+
msgid "Active"
|
|
143
|
+
msgstr "Aktif"
|
|
144
|
+
|
|
145
|
+
msgid "Inactive"
|
|
146
|
+
msgstr "Aktif olmayan"
|
|
147
|
+
|
|
148
|
+
msgid "Confirmed"
|
|
149
|
+
msgstr "Onaylı"
|
|
150
|
+
|
|
151
|
+
msgid "Links"
|
|
152
|
+
msgstr "Bağlantılar"
|
|
153
|
+
|
|
154
|
+
msgid "Set quota for record {{recordId}}"
|
|
155
|
+
msgstr "{{recordId}} kaydı için kota belirleyin"
|
|
156
|
+
|
|
157
|
+
msgid "Delete record"
|
|
158
|
+
msgstr "Kaydı sil"
|
|
159
|
+
|
|
160
|
+
msgid "Restore record"
|
|
161
|
+
msgstr "Kaydı geri yükle"
|
|
162
|
+
|
|
163
|
+
msgid "Unavailability statement"
|
|
164
|
+
msgstr "Kullanılamama bildirimi"
|
|
165
|
+
|
|
166
|
+
msgid "Record {{id}} was restored."
|
|
167
|
+
msgstr "{{id}} kaydı geri yüklendi."
|
|
168
|
+
|
|
169
|
+
msgid "Unable to restore."
|
|
170
|
+
msgstr "Geri yüklenemiyor."
|
|
171
|
+
|
|
172
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
173
|
+
msgstr "#{{id}} kaydını geri yüklemek istediğinizden emin misiniz?"
|
|
174
|
+
|
|
175
|
+
msgid "Published"
|
|
176
|
+
msgstr "Yayınlanmış"
|
|
177
|
+
|
|
178
|
+
msgid "Deleted"
|
|
179
|
+
msgstr "Silinen"
|
|
180
|
+
|
|
181
|
+
msgid "Scheduled for purge"
|
|
182
|
+
msgstr "Silinmek üzere zamanlandı"
|
|
183
|
+
|
|
184
|
+
msgid "Empty draft title"
|
|
185
|
+
msgstr "Boş taslak başlığı"
|
|
186
|
+
|
|
187
|
+
msgid "version"
|
|
188
|
+
msgstr "sürüm"
|
|
189
|
+
|
|
190
|
+
msgid "Owner"
|
|
191
|
+
msgstr "Sahip"
|
|
192
|
+
|
|
193
|
+
msgid "Created"
|
|
194
|
+
msgstr "Oluşturuldu"
|
|
195
|
+
|
|
196
|
+
msgid "Files"
|
|
197
|
+
msgstr "Dosyalar"
|
|
198
|
+
|
|
199
|
+
msgid "Stats"
|
|
200
|
+
msgstr "İstatistikler"
|
|
201
|
+
|
|
202
|
+
msgid "Record {{id}} was deleted."
|
|
203
|
+
msgstr "{{id}} kaydı silindi."
|
|
204
|
+
|
|
205
|
+
msgid "Unable to delete"
|
|
206
|
+
msgstr "Silinemiyor"
|
|
207
|
+
|
|
208
|
+
msgid "Public"
|
|
209
|
+
msgstr "Herkese açık"
|
|
210
|
+
|
|
211
|
+
msgid "Hidden"
|
|
212
|
+
msgstr "Gizli"
|
|
213
|
+
|
|
214
|
+
msgid ""
|
|
215
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
216
|
+
"to provide a public tombstone when deactivating public records."
|
|
217
|
+
msgstr ""
|
|
218
|
+
"Mezar taşı belirteci gizli olarak ayarlanmış ancak kaydınız herkese açık. En"
|
|
219
|
+
" iyi uygulama, herkese açık kayıtları devre dışı bırakırken herkese açık bir"
|
|
220
|
+
" mezar taşı sağlamaktır."
|
|
221
|
+
|
|
222
|
+
msgid ""
|
|
223
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
224
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
225
|
+
"tombstone below."
|
|
226
|
+
msgstr ""
|
|
227
|
+
"BİLGİSİ SIZINTISI RİSKİ: Mezar taşı belirteci herkese açık olarak ayarlanmış"
|
|
228
|
+
" ancak kaydınızdaki bilgiler kısıtlanmış. Lütfen aşağıdaki mezar taşında "
|
|
229
|
+
"kısıtlanmış bilgilerin paylaşılmadığından emin olun."
|
|
230
|
+
|
|
231
|
+
msgid "Bibliographic citation"
|
|
232
|
+
msgstr "Bibliyografik referans"
|
|
233
|
+
|
|
234
|
+
msgid ""
|
|
235
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
236
|
+
"default."
|
|
237
|
+
msgstr ""
|
|
238
|
+
"Referans metnini girin. Boş alan varsayılan olarak APA referansı ile "
|
|
239
|
+
"doldurulacaktır."
|
|
240
|
+
|
|
241
|
+
msgid "Public note"
|
|
242
|
+
msgstr "Herkese açık not"
|
|
243
|
+
|
|
244
|
+
msgid "User {{name}} was approved."
|
|
245
|
+
msgstr "{{name}} adlı kullanıcı onaylandı."
|
|
246
|
+
|
|
247
|
+
msgid "User {{name}} is blocked."
|
|
248
|
+
msgstr "{{name}} adlı kullanıcı engellendi."
|
|
249
|
+
|
|
250
|
+
msgid "Error"
|
|
251
|
+
msgstr "Hata"
|
|
252
|
+
|
|
253
|
+
msgid "User"
|
|
254
|
+
msgstr "Kullanıcı"
|
|
255
|
+
|
|
256
|
+
msgid "Email"
|
|
257
|
+
msgstr "E-posta"
|
|
258
|
+
|
|
259
|
+
msgid "Email domain"
|
|
260
|
+
msgstr "E-posta etki alanı"
|
|
261
|
+
|
|
262
|
+
msgid "Actions"
|
|
263
|
+
msgstr "Eylemler"
|
|
264
|
+
|
|
265
|
+
msgid "Records"
|
|
266
|
+
msgstr "Kayıtlar"
|
|
267
|
+
|
|
268
|
+
msgid "Username"
|
|
269
|
+
msgstr "Kullanıcı adı"
|
|
270
|
+
|
|
271
|
+
msgid "GitHub"
|
|
272
|
+
msgstr "GitHub"
|
|
273
|
+
|
|
274
|
+
msgid "Updated"
|
|
275
|
+
msgstr "Güncellendi"
|
|
276
|
+
|
|
277
|
+
msgid "Restore"
|
|
278
|
+
msgstr "Geri yükle"
|
|
279
|
+
|
|
280
|
+
msgid "Restored"
|
|
281
|
+
msgstr "Geri yüklendi"
|
|
282
|
+
|
|
283
|
+
msgid "Block"
|
|
284
|
+
msgstr "Engelle"
|
|
285
|
+
|
|
286
|
+
msgid "Suspend"
|
|
287
|
+
msgstr "Askıya al"
|
|
288
|
+
|
|
289
|
+
msgid "Suspended"
|
|
290
|
+
msgstr "Askıya alındı"
|
|
291
|
+
|
|
292
|
+
msgid "Approve"
|
|
293
|
+
msgstr "Onayla"
|
|
294
|
+
|
|
295
|
+
msgid "Approved"
|
|
296
|
+
msgstr "Onaylandı"
|
|
297
|
+
|
|
298
|
+
msgid "Activate"
|
|
299
|
+
msgstr "Aktive et"
|
|
300
|
+
|
|
301
|
+
msgid "Activated"
|
|
302
|
+
msgstr "Aktive edildi"
|
|
303
|
+
|
|
304
|
+
msgid "Set default quota for {{email}}"
|
|
305
|
+
msgstr "{{email}} için varsayılan kotayı ayarla"
|
|
306
|
+
|
|
307
|
+
msgid "Filter results"
|
|
308
|
+
msgstr "Sonuçları filtrele"
|
|
309
|
+
|
|
310
|
+
msgid "Search records in community..."
|
|
311
|
+
msgstr "Topluluktaki kayıtları ara..."
|
|
312
|
+
|
|
313
|
+
msgid "Sort by"
|
|
314
|
+
msgstr "Şuna göre sırala:"
|
|
315
|
+
|
|
316
|
+
msgid " results found"
|
|
317
|
+
msgid_plural " results found"
|
|
318
|
+
msgstr[0] "adet sonuç bulundu"
|
|
319
|
+
msgstr[1] "adet sonuç bulundu"
|
|
320
|
+
|
|
321
|
+
msgid "Search records..."
|
|
322
|
+
msgstr "Kayıtları ara..."
|
|
323
|
+
|
|
324
|
+
msgid "Search"
|
|
325
|
+
msgstr "Ara"
|
|
326
|
+
|
|
327
|
+
msgid "Views"
|
|
328
|
+
msgstr "Görüntüleme"
|
|
329
|
+
|
|
330
|
+
msgid "Downloads"
|
|
331
|
+
msgstr "İndirilenler"
|
|
332
|
+
|
|
22
333
|
msgid "Copy to clipboard"
|
|
23
334
|
msgstr "Panoya kopyala"
|
|
24
335
|
|
|
25
336
|
msgid "Copied!"
|
|
26
337
|
msgstr "Kopyalandı!"
|
|
27
338
|
|
|
28
|
-
msgid "
|
|
29
|
-
msgstr "
|
|
339
|
+
msgid "Part of "
|
|
340
|
+
msgstr "Şunun parçası:"
|
|
341
|
+
|
|
342
|
+
msgid "No creation date found."
|
|
343
|
+
msgstr "Oluşturulma tarihi bulunamadı."
|
|
344
|
+
|
|
345
|
+
msgid "No description"
|
|
346
|
+
msgstr "Açıklama yok"
|
|
347
|
+
|
|
348
|
+
msgid "No publication date found."
|
|
349
|
+
msgstr "Yayın tarihi bulunamadı."
|
|
350
|
+
|
|
351
|
+
msgid "No resource type"
|
|
352
|
+
msgstr "Kaynak türü yok"
|
|
353
|
+
|
|
354
|
+
msgid "No title"
|
|
355
|
+
msgstr "Başlık yok"
|
|
356
|
+
|
|
357
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
358
|
+
msgstr "Karşıya yüklenme tarihi: {{uploadDate}}"
|
|
359
|
+
|
|
360
|
+
msgid "Published in: {{publishInfo}}"
|
|
361
|
+
msgstr "Yayınlanma bilgisi: {{publishInfo}}"
|
|
362
|
+
|
|
363
|
+
msgid "{{count}} more versions exist for this record"
|
|
364
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
365
|
+
msgstr[0] "Bu kayıt için {{count}} adet daha sürüm var"
|
|
366
|
+
msgstr[1] "Bu kayıt için {{count}} adet daha sürüm var"
|
|
367
|
+
|
|
368
|
+
msgid "Person"
|
|
369
|
+
msgstr "Kişi"
|
|
30
370
|
|
|
31
371
|
msgid "The record has no files."
|
|
32
372
|
msgstr "Bu kayıt hiç dosya içermemekte."
|
|
@@ -43,29 +383,173 @@ msgstr "Katkıda bulunan kişi ekle"
|
|
|
43
383
|
msgid "Contributors"
|
|
44
384
|
msgstr "Katkıda Bulunan Kişiler"
|
|
45
385
|
|
|
386
|
+
msgid "Edit contributor"
|
|
387
|
+
msgstr ""
|
|
388
|
+
|
|
389
|
+
msgid "Funding"
|
|
390
|
+
msgstr "Finansman"
|
|
391
|
+
|
|
392
|
+
msgid "Awards/Grants"
|
|
393
|
+
msgstr "Ödüller/Hibeler"
|
|
394
|
+
|
|
46
395
|
msgid "Alternate identifiers"
|
|
47
396
|
msgstr "Alternatif tanımlayıcılar"
|
|
48
397
|
|
|
49
398
|
msgid "Related works"
|
|
50
399
|
msgstr "İlgili çalışmalar"
|
|
51
400
|
|
|
401
|
+
msgid "References"
|
|
402
|
+
msgstr "Referanslar"
|
|
403
|
+
|
|
52
404
|
msgid "Visibility"
|
|
53
405
|
msgstr "Görünürlük"
|
|
54
406
|
|
|
407
|
+
msgid "More"
|
|
408
|
+
msgstr "Daha fazla"
|
|
409
|
+
|
|
410
|
+
msgid "Unable to request the access."
|
|
411
|
+
msgstr "Erişim yetkisi talebinde bulunulamıyor."
|
|
412
|
+
|
|
413
|
+
msgid "Your email address"
|
|
414
|
+
msgstr ""
|
|
415
|
+
|
|
416
|
+
msgid "Email address"
|
|
417
|
+
msgstr "E-posta adresi"
|
|
418
|
+
|
|
419
|
+
msgid "Your full name"
|
|
420
|
+
msgstr "Tam adınız"
|
|
421
|
+
|
|
422
|
+
msgid "Full name"
|
|
423
|
+
msgstr "Tam ad"
|
|
424
|
+
|
|
425
|
+
msgid "Request message"
|
|
426
|
+
msgstr "Mesaj talep et"
|
|
427
|
+
|
|
428
|
+
msgid ""
|
|
429
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
430
|
+
"the record"
|
|
431
|
+
msgstr ""
|
|
432
|
+
"Tam adımın ve e-posta adresimin kayıt sahipleriyle paylaşılmasını kabul "
|
|
433
|
+
"ediyorum"
|
|
434
|
+
|
|
435
|
+
msgid "Request access"
|
|
436
|
+
msgstr "Erişim talebi"
|
|
437
|
+
|
|
438
|
+
msgid "Email confirmation needed"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
441
|
+
msgid "We have sent you an email to verify your address."
|
|
442
|
+
msgstr ""
|
|
443
|
+
|
|
444
|
+
msgid ""
|
|
445
|
+
"\n"
|
|
446
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
447
|
+
" "
|
|
448
|
+
msgstr ""
|
|
449
|
+
|
|
450
|
+
msgid "An error occurred while fetching communities."
|
|
451
|
+
msgstr "Topluluklar getirilirken bir hata oluştu."
|
|
452
|
+
|
|
453
|
+
msgid "Communities"
|
|
454
|
+
msgstr "Topluluklar"
|
|
455
|
+
|
|
456
|
+
msgid "View all {{count}} communities"
|
|
457
|
+
msgid_plural "View all {{count}} communities"
|
|
458
|
+
msgstr[0] "Tüm {{count}} topluluğu görüntüle"
|
|
459
|
+
msgstr[1] "Tüm {{count}} topluluğu görüntüle"
|
|
460
|
+
|
|
461
|
+
msgid "Submit to community"
|
|
462
|
+
msgstr "Topluluğa gönder"
|
|
463
|
+
|
|
464
|
+
msgid "Pending submissions"
|
|
465
|
+
msgstr "Bekleyen gönderimler"
|
|
466
|
+
|
|
467
|
+
msgid "Manage communities"
|
|
468
|
+
msgstr "Toplulukları yönetin"
|
|
469
|
+
|
|
470
|
+
msgid "Community management menu dropdown"
|
|
471
|
+
msgstr "Topluluk yönetimi aşağı açılır menüsü"
|
|
472
|
+
|
|
55
473
|
msgid "Edit"
|
|
56
474
|
msgstr "Düzenle"
|
|
57
475
|
|
|
58
|
-
msgid "
|
|
476
|
+
msgid "Export selection"
|
|
477
|
+
msgstr "Seçimi dışa aktar"
|
|
478
|
+
|
|
479
|
+
msgid "Download file"
|
|
480
|
+
msgstr "Dosya indir"
|
|
481
|
+
|
|
482
|
+
msgid "Export"
|
|
483
|
+
msgstr "Dışa Aktar"
|
|
484
|
+
|
|
485
|
+
msgid "Manage"
|
|
486
|
+
msgstr "Yönet"
|
|
487
|
+
|
|
488
|
+
msgid "Manage record"
|
|
489
|
+
msgstr "Kaydı yönet"
|
|
490
|
+
|
|
491
|
+
msgid "Manage user"
|
|
492
|
+
msgstr "Kullanıcıyı yönet"
|
|
493
|
+
|
|
494
|
+
msgid "Remove branding"
|
|
495
|
+
msgstr "Markalamayı kaldır"
|
|
496
|
+
|
|
497
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
498
|
+
msgstr "{{communityTitle}} bu kayıt için varsayılan bir markalamadır"
|
|
499
|
+
|
|
500
|
+
msgid ""
|
|
501
|
+
"Remove this community from appearing on top of the record details page."
|
|
502
|
+
msgstr ""
|
|
503
|
+
"Bu topluluğun kayıt ayrıntıları sayfasının en üstünde görünmesini "
|
|
504
|
+
"engelleyin."
|
|
505
|
+
|
|
506
|
+
msgid "Set branding"
|
|
507
|
+
msgstr "Markalamayı ayarla"
|
|
508
|
+
|
|
509
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
59
510
|
msgstr ""
|
|
511
|
+
"Bu kayıt için varsayılan markalama olarak {{communityTitle}}'ı ayarlayın"
|
|
60
512
|
|
|
61
|
-
msgid "
|
|
62
|
-
msgstr "
|
|
513
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
514
|
+
msgstr ""
|
|
515
|
+
"Bu topluluğu, kayıt ayrıntıları sayfasının en üstünde görünecek şekilde "
|
|
516
|
+
"ayarlayın."
|
|
517
|
+
|
|
518
|
+
msgid "Pending communities"
|
|
519
|
+
msgstr "Bekleyen topluluklar"
|
|
520
|
+
|
|
521
|
+
msgid "Search for pending submissions to communities..."
|
|
522
|
+
msgstr "Topluluklara iletilmiş beklemede kalan gönderileri arayın..."
|
|
523
|
+
|
|
524
|
+
msgid "An error occurred while generating the citation."
|
|
525
|
+
msgstr "Referans oluşturulurken bir hata oluştu."
|
|
63
526
|
|
|
64
527
|
msgid "Style"
|
|
65
528
|
msgstr "Stil"
|
|
66
529
|
|
|
67
|
-
msgid "
|
|
68
|
-
msgstr "
|
|
530
|
+
msgid "This record is not included in any communities yet."
|
|
531
|
+
msgstr "Bu kayıt henüz hiçbir topluluğa dahil edilmedi."
|
|
532
|
+
|
|
533
|
+
msgid "Search for community..."
|
|
534
|
+
msgstr "Topluluk arayın..."
|
|
535
|
+
|
|
536
|
+
msgid "Record submitted"
|
|
537
|
+
msgstr "Kayıt gönderildi"
|
|
538
|
+
|
|
539
|
+
msgid "Review requested"
|
|
540
|
+
msgstr "İnceleme talep edildi"
|
|
541
|
+
|
|
542
|
+
msgid "Search in all communities"
|
|
543
|
+
msgstr "Tüm topluluklarda ara"
|
|
544
|
+
|
|
545
|
+
msgid "Search in my communities"
|
|
546
|
+
msgstr "Benim topluluklarımda ara"
|
|
547
|
+
|
|
548
|
+
msgid "Select a community"
|
|
549
|
+
msgstr "Bir topluluk seçin"
|
|
550
|
+
|
|
551
|
+
msgid "Version {{- version}}"
|
|
552
|
+
msgstr "Sürüm {{- version}}"
|
|
69
553
|
|
|
70
554
|
msgid "Preview"
|
|
71
555
|
msgstr "Gözden geçir"
|
|
@@ -73,209 +557,396 @@ msgstr "Gözden geçir"
|
|
|
73
557
|
msgid "Only published versions are displayed."
|
|
74
558
|
msgstr "Yalnızca yayınlanmış sürümler görüntüleniyor."
|
|
75
559
|
|
|
76
|
-
msgid "
|
|
77
|
-
msgstr "
|
|
560
|
+
msgid "An error occurred while fetching the versions."
|
|
561
|
+
msgstr "Sürümler getirilirken bir hata oluştu."
|
|
78
562
|
|
|
79
|
-
msgid "
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
msgstr "Paylaş"
|
|
563
|
+
msgid "View all {{count}} versions"
|
|
564
|
+
msgid_plural "View all {{count}} versions"
|
|
565
|
+
msgstr[0] "Tüm {{count}} sürümü görüntüle"
|
|
566
|
+
msgstr[1] "Tüm {{count}} sürümü görüntüle"
|
|
84
567
|
|
|
85
|
-
msgid "
|
|
86
|
-
|
|
568
|
+
msgid ""
|
|
569
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
570
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
571
|
+
"latest one. <5>Read more</5>.</0>"
|
|
572
|
+
msgstr ""
|
|
573
|
+
"<0><0>Tüm sürümleri alıntıla?</0> DOI kullanarak tüm sürümleri "
|
|
574
|
+
"alıntılayabilirsiniz. <3></3>. Bu DOI, tüm sürümleri temsil eder ve her "
|
|
575
|
+
"zaman en son sürüme çözümlenir. <5>Daha fazlasını okuyun.</5>.</0>"
|
|
87
576
|
|
|
88
|
-
msgid "
|
|
89
|
-
|
|
577
|
+
msgid ""
|
|
578
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
579
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
580
|
+
"more</4>.</0>"
|
|
581
|
+
msgstr ""
|
|
582
|
+
"<0><0>Tüm sürümleri alıntıla?</0> DOI kullanarak tüm versiyonları "
|
|
583
|
+
"alıntılayabilirsiniz. DOI, ilk versiyon yayınlandığında kaydedilir. Dah "
|
|
584
|
+
"fazlasını okuyun</4>.</0>"
|
|
90
585
|
|
|
91
|
-
msgid "
|
|
92
|
-
msgstr "
|
|
586
|
+
msgid "Remove"
|
|
587
|
+
msgstr "Kaldır"
|
|
93
588
|
|
|
94
|
-
msgid "
|
|
95
|
-
msgstr "
|
|
589
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
590
|
+
msgstr "{{communityTitle}} topluluk başlığını bu kayıttan kaldır"
|
|
96
591
|
|
|
97
|
-
msgid "
|
|
98
|
-
msgstr "
|
|
592
|
+
msgid "Remove community"
|
|
593
|
+
msgstr "Topluluğu kaldır"
|
|
99
594
|
|
|
100
|
-
msgid "
|
|
101
|
-
msgstr "
|
|
595
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
596
|
+
msgstr "Kaydı topluluktan kaldırmak istediğinizden emin misiniz?"
|
|
102
597
|
|
|
103
|
-
msgid "
|
|
104
|
-
msgstr "
|
|
598
|
+
msgid "I understand the consequences:"
|
|
599
|
+
msgstr "Sonuçlarını anlıyorum:"
|
|
105
600
|
|
|
106
601
|
msgid ""
|
|
107
|
-
"
|
|
602
|
+
"The record can only be re-included in the community by going through a new "
|
|
603
|
+
"review by the community curators."
|
|
108
604
|
msgstr ""
|
|
109
|
-
"
|
|
110
|
-
"
|
|
605
|
+
"Kaydın, topluluğa yeniden dahil edilebilmesi ancak topluluk küratörleri "
|
|
606
|
+
"tarafından yeniden incelenmesiyle mümkündür."
|
|
607
|
+
|
|
608
|
+
msgid "Something went wrong"
|
|
609
|
+
msgstr "Bir şeyler ters gitti"
|
|
610
|
+
|
|
611
|
+
msgid "Cancel removal"
|
|
612
|
+
msgstr "Kaldırmayı iptal et"
|
|
613
|
+
|
|
614
|
+
msgid "Cancel"
|
|
615
|
+
msgstr "İptal"
|
|
616
|
+
|
|
617
|
+
msgid "Confirm removal"
|
|
618
|
+
msgstr "Kaldırmayı onayla"
|
|
111
619
|
|
|
112
620
|
msgid ""
|
|
113
|
-
"
|
|
114
|
-
"
|
|
621
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
622
|
+
"their access</4> to the record."
|
|
115
623
|
msgstr ""
|
|
116
|
-
"
|
|
117
|
-
"
|
|
624
|
+
" <1>\"<1>{{communityTitle}}</1>\"</1> topluluğunun üyeleri kayda <4>erişim "
|
|
625
|
+
"yetkilerini kaybedecek</4>."
|
|
118
626
|
|
|
119
|
-
msgid "
|
|
120
|
-
msgstr "
|
|
627
|
+
msgid "Select permissions"
|
|
628
|
+
msgstr "İzinleri seçin"
|
|
121
629
|
|
|
122
|
-
msgid "
|
|
123
|
-
msgstr "
|
|
630
|
+
msgid "Short name for your link (optional)."
|
|
631
|
+
msgstr "Bağlantınız için kısa adlandırma (isteğe bağlı)."
|
|
124
632
|
|
|
125
|
-
msgid "
|
|
126
|
-
msgstr "
|
|
633
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
634
|
+
msgstr "Son kullanma tarihi biçimi: YYYY-AA-GG"
|
|
127
635
|
|
|
128
|
-
msgid "
|
|
129
|
-
msgstr "
|
|
636
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
637
|
+
msgstr ""
|
|
638
|
+
"Son kullanma tarihi: YYYY-AA-GG veya boşsa hiçbir zaman (isteğe bağlı)."
|
|
130
639
|
|
|
131
|
-
msgid "
|
|
132
|
-
msgstr "
|
|
640
|
+
msgid "Create a new link"
|
|
641
|
+
msgstr "Yeni bir bağlantı oluştur"
|
|
133
642
|
|
|
134
|
-
msgid "
|
|
135
|
-
msgstr "
|
|
643
|
+
msgid "Link title"
|
|
644
|
+
msgstr "Bağlantı başlığı"
|
|
136
645
|
|
|
137
|
-
msgid "
|
|
138
|
-
msgstr "
|
|
646
|
+
msgid "Expires at"
|
|
647
|
+
msgstr ""
|
|
139
648
|
|
|
140
|
-
msgid "
|
|
141
|
-
msgstr "
|
|
649
|
+
msgid "Never"
|
|
650
|
+
msgstr "Hiçbir zaman"
|
|
142
651
|
|
|
143
|
-
msgid "
|
|
144
|
-
msgstr "
|
|
652
|
+
msgid "Access"
|
|
653
|
+
msgstr "Erişim"
|
|
145
654
|
|
|
146
|
-
msgid "
|
|
147
|
-
msgstr "
|
|
655
|
+
msgid "Delete"
|
|
656
|
+
msgstr "Sil"
|
|
148
657
|
|
|
149
|
-
msgid "
|
|
150
|
-
msgstr ""
|
|
658
|
+
msgid "Copy link"
|
|
659
|
+
msgstr "Bağlantıyı kopyala"
|
|
151
660
|
|
|
152
|
-
msgid "
|
|
153
|
-
msgstr ""
|
|
661
|
+
msgid "Can view"
|
|
662
|
+
msgstr "Görüntüleyebilir"
|
|
154
663
|
|
|
155
|
-
msgid "
|
|
156
|
-
msgstr ""
|
|
664
|
+
msgid "Can view restricted files of all versions of this record."
|
|
665
|
+
msgstr "Bu kaydın tüm sürümlerinin kısıtlanmış dosyalarını görüntüleyebilir."
|
|
157
666
|
|
|
158
|
-
msgid "
|
|
667
|
+
msgid "Can preview drafts"
|
|
668
|
+
msgstr "Taslakları önizleyebilir"
|
|
669
|
+
|
|
670
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
159
671
|
msgstr ""
|
|
672
|
+
"Bu kaydın tüm sürümlerinin taslaklarını ve kısıtlanmış dosyalarını "
|
|
673
|
+
"görüntüleyebilir."
|
|
160
674
|
|
|
161
|
-
msgid "
|
|
675
|
+
msgid "Can edit"
|
|
676
|
+
msgstr "Düzenleyebilir"
|
|
677
|
+
|
|
678
|
+
msgid ""
|
|
679
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
162
680
|
msgstr ""
|
|
681
|
+
"Bu kaydın tüm sürümlerinin taslaklarını düzenleyebilir ve kısıtlanmış "
|
|
682
|
+
"dosyalarını görüntüleyebilir."
|
|
163
683
|
|
|
164
|
-
msgid "
|
|
684
|
+
msgid ""
|
|
685
|
+
"Can view (view access link can be created only after the record is "
|
|
686
|
+
"published)"
|
|
165
687
|
msgstr ""
|
|
688
|
+
"Görüntüleyebilir (görüntüleme erişim bağlantısı yalnızca kayıt "
|
|
689
|
+
"yayınlandıktan sonra oluşturulabilir)"
|
|
166
690
|
|
|
167
|
-
msgid "
|
|
168
|
-
msgstr "
|
|
691
|
+
msgid "Expires"
|
|
692
|
+
msgstr "Süresi dolar"
|
|
169
693
|
|
|
170
|
-
msgid "
|
|
171
|
-
msgstr "
|
|
694
|
+
msgid "This record has no links generated yet."
|
|
695
|
+
msgstr "Bu kayıt için henüz hiçbir bağlantı oluşturulmadı."
|
|
172
696
|
|
|
173
|
-
msgid "
|
|
174
|
-
msgstr "
|
|
697
|
+
msgid "Unable to change the access request settings."
|
|
698
|
+
msgstr "Erişim yetkisi talebi ayarları değiştirilemiyor."
|
|
175
699
|
|
|
176
|
-
msgid "
|
|
700
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
177
701
|
msgstr ""
|
|
702
|
+
"Kimliği doğrulanmış kullanıcıların kısıtlı dosyalara erişim yetkisi "
|
|
703
|
+
"talebinde bulunmasına izin verin."
|
|
178
704
|
|
|
179
|
-
msgid "
|
|
705
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
180
706
|
msgstr ""
|
|
707
|
+
"Kimliği doğrulanmamış kullanıcıların kısıtlı dosyalara erişim yetkisi "
|
|
708
|
+
"talebinde bulunmasına izin verin."
|
|
181
709
|
|
|
182
|
-
msgid "
|
|
183
|
-
msgstr ""
|
|
710
|
+
msgid "Accept conditions"
|
|
711
|
+
msgstr "Şartları kabul edin"
|
|
184
712
|
|
|
185
|
-
msgid "
|
|
186
|
-
msgstr ""
|
|
713
|
+
msgid "Advanced options"
|
|
714
|
+
msgstr "Gelişmiş seçenekler"
|
|
187
715
|
|
|
188
|
-
msgid "
|
|
189
|
-
msgstr ""
|
|
716
|
+
msgid "Save"
|
|
717
|
+
msgstr "Kaydet"
|
|
190
718
|
|
|
191
|
-
msgid "
|
|
192
|
-
msgstr ""
|
|
719
|
+
msgid "No user has access to this record yet."
|
|
720
|
+
msgstr "Bu kayda henüz hiçbir kullanıcının erişim yetkisi yok."
|
|
721
|
+
|
|
722
|
+
msgid "People with access"
|
|
723
|
+
msgstr "Erişim yetkisi olan kişiler"
|
|
724
|
+
|
|
725
|
+
msgid "No group has access to this record yet."
|
|
726
|
+
msgstr "Bu kayda henüz hiçbir grubun erişim yetkisi yok."
|
|
727
|
+
|
|
728
|
+
msgid "Groups with access"
|
|
729
|
+
msgstr "Erişim yetkisi olan gruplar"
|
|
730
|
+
|
|
731
|
+
msgid "You"
|
|
732
|
+
msgstr "Siz"
|
|
193
733
|
|
|
194
|
-
msgid "
|
|
734
|
+
msgid "Add people"
|
|
735
|
+
msgstr "Kişileri ekle"
|
|
736
|
+
|
|
737
|
+
msgid "No selected users"
|
|
738
|
+
msgstr "Hiçbir kullanıcı seçilmedi"
|
|
739
|
+
|
|
740
|
+
msgid ""
|
|
741
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
742
|
+
"invited)"
|
|
195
743
|
msgstr ""
|
|
744
|
+
"Erişim yetkisi vermek için kullanıcıları arayın (yalnızca profili herkese "
|
|
745
|
+
"açık kullanıcılar davet edilebilir)"
|
|
746
|
+
|
|
747
|
+
msgid "Search by email, full name or username"
|
|
748
|
+
msgstr "E-posta, tam ad veya kullanıcı adı ile arama yapın"
|
|
749
|
+
|
|
750
|
+
msgid "users"
|
|
751
|
+
msgstr "kullanıcılar"
|
|
196
752
|
|
|
197
|
-
msgid "
|
|
753
|
+
msgid "Add groups"
|
|
754
|
+
msgstr "Grupları ekle"
|
|
755
|
+
|
|
756
|
+
msgid "Group"
|
|
757
|
+
msgstr "Grup"
|
|
758
|
+
|
|
759
|
+
msgid "No selected groups"
|
|
760
|
+
msgstr "Hiçbir grup seçilmedi"
|
|
761
|
+
|
|
762
|
+
msgid "Search for groups"
|
|
763
|
+
msgstr "Grupları ara"
|
|
764
|
+
|
|
765
|
+
msgid "groups"
|
|
766
|
+
msgstr "gruplar"
|
|
767
|
+
|
|
768
|
+
msgid "Add"
|
|
769
|
+
msgstr "Ekle"
|
|
770
|
+
|
|
771
|
+
msgid "Notify people"
|
|
772
|
+
msgstr "Bildirim gönder"
|
|
773
|
+
|
|
774
|
+
msgid "Notification message"
|
|
775
|
+
msgstr "Bildirim mesajı"
|
|
776
|
+
|
|
777
|
+
msgid "You are about to add"
|
|
778
|
+
msgstr "Şu grubu/grupları eklemek üzeresiniz:"
|
|
779
|
+
|
|
780
|
+
msgid "Access already granted"
|
|
781
|
+
msgstr "Erişim yetkisi zaten verilmiş"
|
|
782
|
+
|
|
783
|
+
msgid "Can manage"
|
|
784
|
+
msgstr "Yönetebilir"
|
|
785
|
+
|
|
786
|
+
msgid ""
|
|
787
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
788
|
+
"this record."
|
|
198
789
|
msgstr ""
|
|
790
|
+
"Bu kaydın tüm sürümlerine erişim yetkisini ayarlayabilir, taslakları "
|
|
791
|
+
"düzenleyebilir ve kısıtlı dosyaları görüntüleyebilir."
|
|
792
|
+
|
|
793
|
+
msgid "You don't have permissions to share this record."
|
|
794
|
+
msgstr "Bu kaydı paylaşma izniniz yok."
|
|
795
|
+
|
|
796
|
+
msgid "Share"
|
|
797
|
+
msgstr "Paylaş"
|
|
798
|
+
|
|
799
|
+
msgid "People"
|
|
800
|
+
msgstr "Kişiler"
|
|
801
|
+
|
|
802
|
+
msgid "Groups"
|
|
803
|
+
msgstr "Gruplar"
|
|
804
|
+
|
|
805
|
+
msgid "Settings"
|
|
806
|
+
msgstr "Ayarlar"
|
|
807
|
+
|
|
808
|
+
msgid "Share access"
|
|
809
|
+
msgstr "Erişim yetkisini paylaşın"
|
|
199
810
|
|
|
200
|
-
msgid "
|
|
811
|
+
msgid "Link expiration"
|
|
812
|
+
msgstr "Bağlantının son kullanma tarihi"
|
|
813
|
+
|
|
814
|
+
msgid "In 1 month"
|
|
815
|
+
msgstr "1 ay sonra"
|
|
816
|
+
|
|
817
|
+
msgid "In 2 months"
|
|
818
|
+
msgstr "2 ay sonra"
|
|
819
|
+
|
|
820
|
+
msgid "In 6 months"
|
|
821
|
+
msgstr "6 ay sonra"
|
|
822
|
+
|
|
823
|
+
msgid "In 1 year"
|
|
824
|
+
msgstr "1 yıl sonra"
|
|
825
|
+
|
|
826
|
+
msgid "Invalid date format."
|
|
827
|
+
msgstr "Geçersiz tarih biçimi."
|
|
828
|
+
|
|
829
|
+
msgid "Access link expiration date cannot be in the past."
|
|
830
|
+
msgstr "Erişim bağlantısının son kullanma tarihi geçmişte olamaz."
|
|
831
|
+
|
|
832
|
+
msgid "Access request"
|
|
833
|
+
msgstr "Erişim yetkisi talebi"
|
|
834
|
+
|
|
835
|
+
msgid "Unable to change the expiration request settings."
|
|
836
|
+
msgstr "Son kullanma tarihi isteği ayarları değiştirilemiyor."
|
|
837
|
+
|
|
838
|
+
msgid "Expiration date: "
|
|
839
|
+
msgstr "Son kullanma tarihi:"
|
|
840
|
+
|
|
841
|
+
msgid ""
|
|
842
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
843
|
+
"empty to set no expiration limit."
|
|
201
844
|
msgstr ""
|
|
845
|
+
"Biçim: YYYY-AA-GG. Verilen erişim yetkisinin süresi belirtilen tarihte "
|
|
846
|
+
"dolacaktır. Son kullanma tarihi koymamak için boş bırakın."
|
|
847
|
+
|
|
848
|
+
msgid "Link expiration date:"
|
|
849
|
+
msgstr "Bağlantının son kullanma tarihi:"
|
|
850
|
+
|
|
851
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
852
|
+
msgstr "{{- search}} için herhangi bir eşleşme bulamadık"
|
|
202
853
|
|
|
203
854
|
msgid "Start over"
|
|
204
|
-
msgstr ""
|
|
855
|
+
msgstr "Baştan başla"
|
|
205
856
|
|
|
206
857
|
msgid "ProTip"
|
|
207
|
-
msgstr ""
|
|
858
|
+
msgstr "Faydalı tavsiye"
|
|
208
859
|
|
|
209
|
-
msgid "
|
|
210
|
-
msgstr ""
|
|
860
|
+
msgid "Search guide"
|
|
861
|
+
msgstr "Arama kılavuzu"
|
|
211
862
|
|
|
212
|
-
msgid "
|
|
863
|
+
msgid ""
|
|
864
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
865
|
+
"search queries.</0>"
|
|
213
866
|
msgstr ""
|
|
867
|
+
"<0>Daha fazla tavsiye için gelişmiş arama sorgularını tanımlamaya yönelik "
|
|
868
|
+
"<2>arama kılavuzumuza</2></0> göz atın."
|
|
214
869
|
|
|
215
|
-
msgid "
|
|
216
|
-
msgstr "
|
|
870
|
+
msgid "Search in my communities..."
|
|
871
|
+
msgstr "Topluluklarımda ara..."
|
|
217
872
|
|
|
218
|
-
msgid "
|
|
219
|
-
msgstr ""
|
|
873
|
+
msgid "View"
|
|
874
|
+
msgstr "Görüntüle"
|
|
875
|
+
|
|
876
|
+
msgid "Published in: {{publishedIn}}"
|
|
877
|
+
msgstr "Yayınlandı: {{published In}}"
|
|
220
878
|
|
|
221
879
|
msgid "In review"
|
|
222
|
-
msgstr ""
|
|
880
|
+
msgstr "İnceleme aşamasında"
|
|
223
881
|
|
|
224
882
|
msgid "Declined"
|
|
225
|
-
msgstr ""
|
|
883
|
+
msgstr "Reddedildi"
|
|
226
884
|
|
|
227
885
|
msgid "Expired"
|
|
228
|
-
msgstr ""
|
|
886
|
+
msgstr "Süresi doldu"
|
|
229
887
|
|
|
230
888
|
msgid "Draft"
|
|
231
|
-
msgstr ""
|
|
889
|
+
msgstr "Taslak"
|
|
232
890
|
|
|
233
891
|
msgid "New version draft"
|
|
234
|
-
msgstr ""
|
|
892
|
+
msgstr "Yeni sürüm taslağı"
|
|
235
893
|
|
|
236
|
-
msgid "
|
|
237
|
-
msgstr ""
|
|
894
|
+
msgid "open"
|
|
895
|
+
msgstr "açık"
|
|
238
896
|
|
|
239
|
-
msgid "
|
|
240
|
-
msgstr ""
|
|
897
|
+
msgid "Open"
|
|
898
|
+
msgstr "Açık"
|
|
241
899
|
|
|
242
|
-
msgid ""
|
|
243
|
-
"
|
|
244
|
-
"record & files."
|
|
245
|
-
msgstr ""
|
|
900
|
+
msgid "unlock"
|
|
901
|
+
msgstr "kilidini kaldır"
|
|
246
902
|
|
|
247
|
-
msgid "
|
|
248
|
-
msgstr ""
|
|
903
|
+
msgid "Get started!"
|
|
904
|
+
msgstr "Başlayalım!"
|
|
249
905
|
|
|
250
|
-
msgid "
|
|
251
|
-
msgstr ""
|
|
906
|
+
msgid "Make your first upload!"
|
|
907
|
+
msgstr "İlk yüklemenizi yapın!"
|
|
252
908
|
|
|
253
|
-
msgid "
|
|
254
|
-
msgstr ""
|
|
909
|
+
msgid "New upload"
|
|
910
|
+
msgstr "Yeni Yükleme"
|
|
255
911
|
|
|
256
|
-
msgid "
|
|
257
|
-
msgstr "
|
|
912
|
+
msgid "Search in my uploads..."
|
|
913
|
+
msgstr "Karşıya yüklemelerimde ara…"
|
|
258
914
|
|
|
259
|
-
msgid "
|
|
260
|
-
msgstr "
|
|
915
|
+
msgid "ORCID profile"
|
|
916
|
+
msgstr "ORCID profili"
|
|
261
917
|
|
|
262
|
-
msgid "
|
|
918
|
+
msgid "ORCID logo"
|
|
263
919
|
msgstr ""
|
|
264
920
|
|
|
265
|
-
msgid "
|
|
266
|
-
msgstr ""
|
|
921
|
+
msgid "ROR profile"
|
|
922
|
+
msgstr "ROR profili"
|
|
267
923
|
|
|
268
|
-
msgid "
|
|
924
|
+
msgid "ROR logo"
|
|
269
925
|
msgstr ""
|
|
270
926
|
|
|
271
|
-
msgid "
|
|
272
|
-
msgstr "
|
|
927
|
+
msgid "GND profile"
|
|
928
|
+
msgstr "GND profili"
|
|
273
929
|
|
|
274
|
-
msgid "
|
|
930
|
+
msgid "GND logo"
|
|
275
931
|
msgstr ""
|
|
276
932
|
|
|
277
|
-
msgid "
|
|
933
|
+
msgid "No name"
|
|
278
934
|
msgstr ""
|
|
279
935
|
|
|
280
|
-
msgid "
|
|
936
|
+
msgid "and {{count}} other"
|
|
937
|
+
msgid_plural "and {{count}} other"
|
|
938
|
+
msgstr[0] ""
|
|
939
|
+
msgstr[1] ""
|
|
940
|
+
|
|
941
|
+
msgid "and {{count}} others"
|
|
942
|
+
msgid_plural "and {{count}} others"
|
|
943
|
+
msgstr[0] ""
|
|
944
|
+
msgstr[1] ""
|
|
945
|
+
|
|
946
|
+
msgctxt ""
|
|
947
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
948
|
+
"until today.</0>"
|
|
949
|
+
msgid "<0><0>metadata.publication"
|
|
281
950
|
msgstr ""
|
|
951
|
+
"<0><0>metadata.publication_date:[2017-01-01 TO *]</0> size 2017'den bugüne "
|
|
952
|
+
"kadar olan tüm yayınları verecektir.</0>"
|