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