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