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
|
@@ -1,417 +1,952 @@
|
|
|
1
1
|
# Translations template for invenio-app-rdm.
|
|
2
|
-
# Copyright (C)
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
3
|
# This file is distributed under the same license as the invenio-app-rdm
|
|
4
4
|
# project.
|
|
5
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
6
|
#
|
|
7
7
|
# Translators:
|
|
8
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
8
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
9
|
+
# Anna Sakoyan, 2025
|
|
9
10
|
#
|
|
10
11
|
#, fuzzy
|
|
11
12
|
msgid ""
|
|
12
13
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: invenio-app-rdm
|
|
14
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
14
15
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
15
|
-
"POT-Creation-Date:
|
|
16
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
16
17
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
17
|
-
"Last-Translator:
|
|
18
|
+
"Last-Translator: Anna Sakoyan, 2025\n"
|
|
18
19
|
"Language-Team: Russian (https://app.transifex.com/inveniosoftware/teams/23537/ru/)\n"
|
|
19
20
|
"MIME-Version: 1.0\n"
|
|
20
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
22
|
"Content-Transfer-Encoding: 8bit\n"
|
|
22
|
-
"Generated-By: Babel 2.
|
|
23
|
+
"Generated-By: Babel 2.17.0\n"
|
|
23
24
|
"Language: ru\n"
|
|
24
25
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
|
25
26
|
|
|
26
|
-
#: invenio_app_rdm/config.py:
|
|
27
|
+
#: invenio_app_rdm/config.py:219
|
|
27
28
|
msgid "The turn-key research data management repository"
|
|
28
29
|
msgstr ""
|
|
29
30
|
|
|
30
|
-
#: invenio_app_rdm/config.py:
|
|
31
|
+
#: invenio_app_rdm/config.py:258
|
|
32
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
31
33
|
msgid "InvenioRDM"
|
|
32
|
-
msgstr ""
|
|
34
|
+
msgstr "InvenioRDM"
|
|
33
35
|
|
|
34
|
-
#: invenio_app_rdm/config.py:
|
|
36
|
+
#: invenio_app_rdm/config.py:353
|
|
35
37
|
msgid "Welcome to Invenio App RDM!"
|
|
36
|
-
msgstr ""
|
|
38
|
+
msgstr "Добро пожаловать в приложение Invenio RDM!"
|
|
37
39
|
|
|
38
|
-
#: invenio_app_rdm/config.py:
|
|
40
|
+
#: invenio_app_rdm/config.py:750
|
|
39
41
|
msgid "JSON"
|
|
40
|
-
msgstr ""
|
|
42
|
+
msgstr "JSON"
|
|
43
|
+
|
|
44
|
+
#: invenio_app_rdm/config.py:757
|
|
45
|
+
msgid "JSON-LD"
|
|
46
|
+
msgstr "JSON-LD"
|
|
41
47
|
|
|
42
|
-
#: invenio_app_rdm/config.py:
|
|
48
|
+
#: invenio_app_rdm/config.py:765
|
|
43
49
|
msgid "CSL"
|
|
44
|
-
msgstr ""
|
|
50
|
+
msgstr "CSL"
|
|
45
51
|
|
|
46
|
-
#: invenio_app_rdm/config.py:
|
|
52
|
+
#: invenio_app_rdm/config.py:772
|
|
47
53
|
msgid "DataCite JSON"
|
|
48
|
-
msgstr ""
|
|
54
|
+
msgstr "DataCite JSON"
|
|
49
55
|
|
|
50
|
-
#: invenio_app_rdm/config.py:
|
|
56
|
+
#: invenio_app_rdm/config.py:781
|
|
51
57
|
msgid "DataCite XML"
|
|
52
|
-
msgstr ""
|
|
58
|
+
msgstr "DataCite XML"
|
|
53
59
|
|
|
54
|
-
#: invenio_app_rdm/config.py:
|
|
60
|
+
#: invenio_app_rdm/config.py:790
|
|
55
61
|
msgid "Dublin Core XML"
|
|
56
|
-
msgstr ""
|
|
62
|
+
msgstr "Dublin Core XML"
|
|
63
|
+
|
|
64
|
+
#: invenio_app_rdm/config.py:799
|
|
65
|
+
msgid "MARCXML"
|
|
66
|
+
msgstr "MARCXML"
|
|
67
|
+
|
|
68
|
+
#: invenio_app_rdm/config.py:806
|
|
69
|
+
msgid "BibTeX"
|
|
70
|
+
msgstr "BibTeX"
|
|
71
|
+
|
|
72
|
+
#: invenio_app_rdm/config.py:813
|
|
73
|
+
msgid "GeoJSON"
|
|
74
|
+
msgstr "GeoJSON"
|
|
75
|
+
|
|
76
|
+
#: invenio_app_rdm/config.py:820
|
|
77
|
+
msgid "DCAT"
|
|
78
|
+
msgstr "DCAT"
|
|
79
|
+
|
|
80
|
+
#: invenio_app_rdm/config.py:827
|
|
81
|
+
msgid "Codemeta"
|
|
82
|
+
msgstr "Codemeta"
|
|
57
83
|
|
|
58
|
-
#: invenio_app_rdm/config.py:
|
|
84
|
+
#: invenio_app_rdm/config.py:834
|
|
85
|
+
msgid "Citation File Format"
|
|
86
|
+
msgstr "Формат файла цитирования"
|
|
87
|
+
|
|
88
|
+
#: invenio_app_rdm/config.py:996
|
|
59
89
|
msgid "APA"
|
|
60
|
-
msgstr ""
|
|
90
|
+
msgstr "APA"
|
|
61
91
|
|
|
62
|
-
#: invenio_app_rdm/config.py:
|
|
92
|
+
#: invenio_app_rdm/config.py:997
|
|
63
93
|
msgid "Harvard"
|
|
64
|
-
msgstr ""
|
|
94
|
+
msgstr "Harvard"
|
|
65
95
|
|
|
66
|
-
#: invenio_app_rdm/config.py:
|
|
96
|
+
#: invenio_app_rdm/config.py:998
|
|
67
97
|
msgid "MLA"
|
|
68
|
-
msgstr ""
|
|
98
|
+
msgstr "MLA"
|
|
69
99
|
|
|
70
|
-
#: invenio_app_rdm/config.py:
|
|
100
|
+
#: invenio_app_rdm/config.py:999
|
|
71
101
|
msgid "Vancouver"
|
|
72
|
-
msgstr ""
|
|
102
|
+
msgstr "Vancouver"
|
|
73
103
|
|
|
74
|
-
#: invenio_app_rdm/config.py:
|
|
104
|
+
#: invenio_app_rdm/config.py:1000
|
|
75
105
|
msgid "Chicago"
|
|
76
|
-
msgstr ""
|
|
106
|
+
msgstr "Chicago"
|
|
77
107
|
|
|
78
|
-
#: invenio_app_rdm/config.py:
|
|
108
|
+
#: invenio_app_rdm/config.py:1001
|
|
79
109
|
msgid "IEEE"
|
|
110
|
+
msgstr "IEEE"
|
|
111
|
+
|
|
112
|
+
#: invenio_app_rdm/ext.py:57
|
|
113
|
+
msgid "My dashboard"
|
|
114
|
+
msgstr "Моя панель управления"
|
|
115
|
+
|
|
116
|
+
#: invenio_app_rdm/ext.py:63
|
|
117
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
118
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
119
|
+
msgid "New upload"
|
|
120
|
+
msgstr "Новая загрузка"
|
|
121
|
+
|
|
122
|
+
#: invenio_app_rdm/ext.py:77
|
|
123
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
124
|
+
msgid "Uploads"
|
|
125
|
+
msgstr "Загрузки"
|
|
126
|
+
|
|
127
|
+
#: invenio_app_rdm/ext.py:82
|
|
128
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
129
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
130
|
+
msgid "Communities"
|
|
131
|
+
msgstr "Сообщества"
|
|
132
|
+
|
|
133
|
+
#: invenio_app_rdm/ext.py:87
|
|
134
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
135
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
136
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
137
|
+
msgid "Requests"
|
|
138
|
+
msgstr "Запросы"
|
|
139
|
+
|
|
140
|
+
#: invenio_app_rdm/ext.py:110
|
|
141
|
+
msgid "Home"
|
|
142
|
+
msgstr "Главная страница"
|
|
143
|
+
|
|
144
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
145
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
146
|
+
#: invenio_app_rdm/ext.py:118
|
|
147
|
+
msgid "Records"
|
|
148
|
+
msgstr "Записи"
|
|
149
|
+
|
|
150
|
+
#: invenio_app_rdm/ext.py:125
|
|
151
|
+
msgid "Submit"
|
|
152
|
+
msgstr "Отправить"
|
|
153
|
+
|
|
154
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
155
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
156
|
+
msgid "Domains"
|
|
157
|
+
msgstr "Домены"
|
|
158
|
+
|
|
159
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
160
|
+
msgid "Site management"
|
|
161
|
+
msgstr "Управление сайтом"
|
|
162
|
+
|
|
163
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
165
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
166
|
+
msgid "Domain"
|
|
167
|
+
msgstr "Домен"
|
|
168
|
+
|
|
169
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
170
|
+
msgid "TLD"
|
|
171
|
+
msgstr "Домен верхнего уровня"
|
|
172
|
+
|
|
173
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
175
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
176
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
177
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
178
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
179
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
180
|
+
msgid "Status"
|
|
181
|
+
msgstr "Статус"
|
|
182
|
+
|
|
183
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
184
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
185
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
186
|
+
msgid "Users"
|
|
187
|
+
msgstr "Пользователи"
|
|
188
|
+
|
|
189
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
190
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
191
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
192
|
+
msgid "Active"
|
|
193
|
+
msgstr "Активен"
|
|
194
|
+
|
|
195
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
196
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
197
|
+
msgid "Inactive"
|
|
198
|
+
msgstr "Неактивен"
|
|
199
|
+
|
|
200
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
201
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
202
|
+
msgid "Confirmed"
|
|
203
|
+
msgstr "Подтверждено"
|
|
204
|
+
|
|
205
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
206
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
207
|
+
msgid "Verified"
|
|
208
|
+
msgstr "Проверено"
|
|
209
|
+
|
|
210
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
211
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
212
|
+
msgid "Blocked"
|
|
213
|
+
msgstr "Заблокировано"
|
|
214
|
+
|
|
215
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
216
|
+
msgid "Domain name (all lowercase)"
|
|
217
|
+
msgstr "Доменное имя (только нижний регистр)"
|
|
218
|
+
|
|
219
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
220
|
+
msgid ""
|
|
221
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
222
|
+
"domain require moderation), verified (users in domain does not require "
|
|
223
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
80
224
|
msgstr ""
|
|
81
225
|
|
|
82
|
-
#: invenio_app_rdm/
|
|
83
|
-
|
|
226
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
227
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
228
|
+
msgid "Category"
|
|
229
|
+
msgstr "Категория"
|
|
230
|
+
|
|
231
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
232
|
+
msgid "A label to categorise the domain."
|
|
84
233
|
msgstr ""
|
|
85
234
|
|
|
86
|
-
#: invenio_app_rdm/
|
|
87
|
-
#: invenio_app_rdm/
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
msgstr "Искать"
|
|
235
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
236
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
237
|
+
msgid "Flagged"
|
|
238
|
+
msgstr "Отмечено"
|
|
91
239
|
|
|
92
|
-
#: invenio_app_rdm/
|
|
93
|
-
msgid "
|
|
240
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
241
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
94
242
|
msgstr ""
|
|
95
243
|
|
|
96
|
-
#: invenio_app_rdm/
|
|
97
|
-
#: invenio_app_rdm/
|
|
98
|
-
msgid "
|
|
244
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
245
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
246
|
+
msgid "Source of flag"
|
|
99
247
|
msgstr ""
|
|
100
248
|
|
|
101
|
-
#: invenio_app_rdm/
|
|
102
|
-
msgid "
|
|
249
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
250
|
+
msgid "Which source flagged the domain."
|
|
103
251
|
msgstr ""
|
|
104
252
|
|
|
105
|
-
#: invenio_app_rdm/
|
|
106
|
-
msgid "
|
|
253
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
254
|
+
msgid "Create domain"
|
|
255
|
+
msgstr "Создать домен"
|
|
256
|
+
|
|
257
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
258
|
+
msgid "Edit domain"
|
|
259
|
+
msgstr "Редактировать домен"
|
|
260
|
+
|
|
261
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
262
|
+
msgid "Domain details"
|
|
263
|
+
msgstr "Подробности по домену"
|
|
264
|
+
|
|
265
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
266
|
+
msgid "Top-level domain"
|
|
267
|
+
msgstr "Домен верхнего уровня"
|
|
268
|
+
|
|
269
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
270
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
271
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
272
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
273
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
274
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
275
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
276
|
+
msgid "Created"
|
|
277
|
+
msgstr "Создано"
|
|
278
|
+
|
|
279
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
280
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
281
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
282
|
+
msgid "Updated"
|
|
283
|
+
msgstr "Обновлено"
|
|
284
|
+
|
|
285
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
286
|
+
msgid "Organisation"
|
|
287
|
+
msgstr "Организация"
|
|
288
|
+
|
|
289
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
290
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
291
|
+
msgid "Records & files"
|
|
292
|
+
msgstr ""
|
|
293
|
+
|
|
294
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
295
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
296
|
+
msgid "Title"
|
|
297
|
+
msgstr "Название"
|
|
298
|
+
|
|
299
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
300
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
301
|
+
msgid "Owner"
|
|
302
|
+
msgstr "Владелец"
|
|
303
|
+
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
305
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
306
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
307
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
308
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
309
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
310
|
+
msgid "Files"
|
|
311
|
+
msgstr "Файлы"
|
|
312
|
+
|
|
313
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
315
|
+
msgid "Stats"
|
|
316
|
+
msgstr "Статистика"
|
|
317
|
+
|
|
318
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
319
|
+
msgid "Delete record"
|
|
320
|
+
msgstr "Удалить запись"
|
|
321
|
+
|
|
322
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
323
|
+
msgid "Restore record"
|
|
324
|
+
msgstr "Восстановить запись"
|
|
325
|
+
|
|
326
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
327
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
328
|
+
msgid "Drafts"
|
|
107
329
|
msgstr ""
|
|
108
330
|
|
|
109
|
-
#: invenio_app_rdm/
|
|
110
|
-
msgid "
|
|
331
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
332
|
+
msgid "Set quota"
|
|
333
|
+
msgstr "Установить квоту"
|
|
334
|
+
|
|
335
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
336
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
337
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
338
|
+
msgid "Moderation"
|
|
111
339
|
msgstr ""
|
|
112
340
|
|
|
113
|
-
#: invenio_app_rdm/
|
|
114
|
-
|
|
341
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
342
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
343
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
344
|
+
msgid "User"
|
|
345
|
+
msgstr "Пользователь"
|
|
346
|
+
|
|
347
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
348
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
349
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
350
|
+
msgid "Email"
|
|
351
|
+
msgstr "Электронная почта"
|
|
352
|
+
|
|
353
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
354
|
+
msgid "Email domain"
|
|
355
|
+
msgstr "Домен электронной почты"
|
|
356
|
+
|
|
357
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
358
|
+
msgid "Activity"
|
|
115
359
|
msgstr ""
|
|
116
360
|
|
|
117
|
-
#: invenio_app_rdm/
|
|
118
|
-
|
|
361
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
362
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
363
|
+
msgid "Approve"
|
|
364
|
+
msgstr "Одобрить"
|
|
365
|
+
|
|
366
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
367
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
368
|
+
msgid "Block"
|
|
369
|
+
msgstr "Заблокировать"
|
|
370
|
+
|
|
371
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
372
|
+
msgid "User moderation"
|
|
373
|
+
msgstr "Пользовательская модерация"
|
|
374
|
+
|
|
375
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
376
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
377
|
+
msgid "ID"
|
|
378
|
+
msgstr "ID"
|
|
379
|
+
|
|
380
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
381
|
+
msgid "Open"
|
|
382
|
+
msgstr "Открыто"
|
|
383
|
+
|
|
384
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
385
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
386
|
+
msgid "Username"
|
|
387
|
+
msgstr "Имя пользователя"
|
|
388
|
+
|
|
389
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
390
|
+
msgid "Domain "
|
|
391
|
+
msgstr "Домен"
|
|
392
|
+
|
|
393
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
394
|
+
msgid "Visibility"
|
|
395
|
+
msgstr "Видимость"
|
|
396
|
+
|
|
397
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
398
|
+
msgid "Confirmed at"
|
|
399
|
+
msgstr "Подтверждено в"
|
|
400
|
+
|
|
401
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
402
|
+
msgid "Verified at"
|
|
403
|
+
msgstr "Заверено в"
|
|
404
|
+
|
|
405
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
406
|
+
msgid "Blocked at"
|
|
407
|
+
msgstr "Заблокировано в"
|
|
408
|
+
|
|
409
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
410
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
411
|
+
msgid "User management"
|
|
412
|
+
msgstr ""
|
|
413
|
+
|
|
414
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
415
|
+
msgid "Restore"
|
|
416
|
+
msgstr "Восстановить"
|
|
417
|
+
|
|
418
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
419
|
+
msgid "Suspend"
|
|
420
|
+
msgstr "Приостановить"
|
|
421
|
+
|
|
422
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
423
|
+
msgid "User details"
|
|
424
|
+
msgstr "Подробности о пользователе"
|
|
425
|
+
|
|
426
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
427
|
+
msgid "Search "
|
|
428
|
+
msgstr "Искать"
|
|
429
|
+
|
|
430
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
431
|
+
msgid "New version"
|
|
432
|
+
msgstr "Новая версия"
|
|
433
|
+
|
|
434
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
435
|
+
msgid "Edit upload"
|
|
436
|
+
msgstr "Редактировать загруженный материал"
|
|
437
|
+
|
|
438
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
439
|
+
msgid "Information banner"
|
|
119
440
|
msgstr ""
|
|
120
441
|
|
|
442
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
443
|
+
msgid "Community visibility"
|
|
444
|
+
msgstr "Видимость сообщества"
|
|
445
|
+
|
|
121
446
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
122
|
-
|
|
123
|
-
|
|
447
|
+
msgid "The community is restricted to users with access."
|
|
448
|
+
msgstr "Это сообщество доступно только пользователям, имеющим на это право."
|
|
449
|
+
|
|
450
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
451
|
+
msgid "Restricted"
|
|
452
|
+
msgstr "Ограниченный доступ"
|
|
453
|
+
|
|
454
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
455
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
456
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
124
457
|
msgid "Preview"
|
|
125
|
-
msgstr ""
|
|
458
|
+
msgstr "Предварительный просмотр"
|
|
126
459
|
|
|
127
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
460
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
128
461
|
msgid "You are previewing a published record."
|
|
129
|
-
msgstr ""
|
|
462
|
+
msgstr "Перед вами предварительный просмотр опубликованной записи."
|
|
130
463
|
|
|
131
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
464
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
132
465
|
msgid "You are previewing changes that have not yet been published."
|
|
133
466
|
msgstr ""
|
|
467
|
+
"Перед вами предварительный просмотр изменений, которые еще не были "
|
|
468
|
+
"опубликованы."
|
|
134
469
|
|
|
135
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
470
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
136
471
|
msgid "You are previewing a new record that has not yet been published."
|
|
137
472
|
msgstr ""
|
|
473
|
+
"Перед вами предварительный просмотр новой, еще не опубликованной записи."
|
|
138
474
|
|
|
139
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
475
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
140
476
|
msgid ""
|
|
141
477
|
"You are previewing a new record version that has not yet been published."
|
|
142
478
|
msgstr ""
|
|
479
|
+
"Перед вами предварительный просмотр новой, еще не опубликованной версии "
|
|
480
|
+
"записи."
|
|
143
481
|
|
|
144
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
482
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
145
483
|
#, python-format
|
|
146
484
|
msgid ""
|
|
147
485
|
"\n"
|
|
148
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
486
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
487
|
+
" available.\n"
|
|
149
488
|
" "
|
|
150
489
|
msgstr ""
|
|
490
|
+
"\n"
|
|
491
|
+
" Есть %(link_start)sболее новая версия%(link_end)s записи.\n"
|
|
492
|
+
" "
|
|
151
493
|
|
|
152
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
494
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
153
495
|
msgid "Record access information"
|
|
154
|
-
msgstr ""
|
|
496
|
+
msgstr "Информация о доступе к записи"
|
|
155
497
|
|
|
156
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
158
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
498
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
499
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
500
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
501
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
159
502
|
msgid "Reason"
|
|
160
|
-
msgstr ""
|
|
503
|
+
msgstr "Основание"
|
|
161
504
|
|
|
162
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
163
506
|
msgid "Back-navigation"
|
|
164
507
|
msgstr ""
|
|
165
508
|
|
|
166
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
509
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
167
510
|
msgid "Back to edit"
|
|
168
|
-
msgstr ""
|
|
511
|
+
msgstr "Вернуться к редактированию"
|
|
169
512
|
|
|
170
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
513
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
171
514
|
msgid "Manage record"
|
|
172
|
-
msgstr ""
|
|
515
|
+
msgstr "Управление записью"
|
|
173
516
|
|
|
174
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
517
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
175
518
|
msgid "Publication date and version number"
|
|
176
|
-
msgstr ""
|
|
519
|
+
msgstr "Дата публикации и номер версии"
|
|
177
520
|
|
|
178
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
521
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
179
522
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
180
523
|
msgid "Publication date"
|
|
181
524
|
msgstr "Дата публикации"
|
|
182
525
|
|
|
183
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
526
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
184
527
|
msgid "Published"
|
|
185
|
-
msgstr ""
|
|
528
|
+
msgstr "Опубликовано"
|
|
186
529
|
|
|
187
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
530
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
531
|
+
#, python-brace-format
|
|
188
532
|
msgid "Version {version_number}"
|
|
189
|
-
msgstr ""
|
|
533
|
+
msgstr "Версия {version_number}"
|
|
190
534
|
|
|
191
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
535
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
192
536
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
193
537
|
msgid "Resource type"
|
|
194
|
-
msgstr ""
|
|
538
|
+
msgstr "Тип ресурса"
|
|
195
539
|
|
|
196
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
540
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
197
541
|
msgid "Access status"
|
|
198
|
-
msgstr ""
|
|
542
|
+
msgstr "Статус доступа"
|
|
199
543
|
|
|
200
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
544
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
201
545
|
msgid "Record title and creators"
|
|
202
|
-
msgstr ""
|
|
546
|
+
msgstr "Название и создатели записи"
|
|
203
547
|
|
|
204
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
548
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
205
549
|
msgid "Creators and contributors"
|
|
550
|
+
msgstr "Создатели и причастные"
|
|
551
|
+
|
|
552
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
553
|
+
msgid "Request access"
|
|
554
|
+
msgstr "Запросить доступ"
|
|
555
|
+
|
|
556
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
557
|
+
msgid ""
|
|
558
|
+
"If you would like to request access to these files, please fill out the form"
|
|
559
|
+
" below."
|
|
206
560
|
msgstr ""
|
|
561
|
+
"Если вы хотите запросить доступ к этим файлам, пожалуйста, заполните форму "
|
|
562
|
+
"ниже."
|
|
207
563
|
|
|
208
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
209
|
-
msgid "
|
|
564
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
565
|
+
msgid ""
|
|
566
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
567
|
+
"accepted:"
|
|
210
568
|
msgstr ""
|
|
569
|
+
"Вам нужно соответствовать следующим условиям, чтобы этот запрос приняли:"
|
|
211
570
|
|
|
212
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
msgid "Files"
|
|
217
|
-
msgstr "Файлы"
|
|
571
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
572
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
573
|
+
msgid "System files"
|
|
574
|
+
msgstr "Системные файлы"
|
|
218
575
|
|
|
219
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
576
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
220
577
|
msgid "Additional record details"
|
|
221
|
-
msgstr ""
|
|
578
|
+
msgstr "Дополнительные подробности по записи"
|
|
222
579
|
|
|
223
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
580
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
225
581
|
msgid "Record details"
|
|
226
|
-
msgstr ""
|
|
582
|
+
msgstr "Подробности о записи"
|
|
227
583
|
|
|
228
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
229
|
-
msgid "
|
|
230
|
-
msgstr ""
|
|
584
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
585
|
+
msgid "Jump to top of page"
|
|
586
|
+
msgstr "К началу страницы"
|
|
231
587
|
|
|
232
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
233
|
-
msgid "
|
|
234
|
-
msgstr ""
|
|
588
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
589
|
+
msgid "Jump up"
|
|
590
|
+
msgstr "Выше"
|
|
235
591
|
|
|
236
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
237
|
-
|
|
238
|
-
|
|
592
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
593
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
594
|
+
msgid "Draft not found"
|
|
595
|
+
msgstr "Черновик не найден"
|
|
239
596
|
|
|
240
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
241
|
-
msgid "
|
|
597
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
598
|
+
msgid ""
|
|
599
|
+
"This record has already been published and is not currently being edited, so"
|
|
600
|
+
" no draft exists."
|
|
242
601
|
msgstr ""
|
|
602
|
+
"Эта запись уже опубликована и в данный момент не редактируется, поэтому "
|
|
603
|
+
"черновиков у нее нет."
|
|
243
604
|
|
|
244
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
245
|
-
msgid "
|
|
246
|
-
msgstr ""
|
|
605
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
606
|
+
msgid "Go to published record"
|
|
607
|
+
msgstr "К опубликованной записи"
|
|
247
608
|
|
|
248
609
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
249
610
|
msgid "Back to details"
|
|
250
|
-
msgstr ""
|
|
611
|
+
msgstr "Вернуться к подробностям"
|
|
251
612
|
|
|
252
613
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
253
614
|
msgid "Preview for"
|
|
615
|
+
msgstr "Предварительный просмотр для"
|
|
616
|
+
|
|
617
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
618
|
+
msgid "Permission required"
|
|
619
|
+
msgstr "Необходимо разрешение"
|
|
620
|
+
|
|
621
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
622
|
+
msgid ""
|
|
623
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
624
|
+
"users with access."
|
|
625
|
+
msgstr ""
|
|
626
|
+
"Эта запись раньше была доступна всем, но теперь доступ к ней есть только у "
|
|
627
|
+
"пользователей, имеющих соответствующее право."
|
|
628
|
+
|
|
629
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
630
|
+
msgid ""
|
|
631
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
632
|
+
"active for reference."
|
|
254
633
|
msgstr ""
|
|
634
|
+
"Цифровой идентификатор объекта (DOI), связанный с этой записью, остается "
|
|
635
|
+
"активным для ссылок."
|
|
636
|
+
|
|
637
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
638
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
639
|
+
msgid "Identifier:"
|
|
640
|
+
msgstr "Идентификатор:"
|
|
255
641
|
|
|
256
642
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
257
643
|
msgid "Search results"
|
|
258
|
-
msgstr ""
|
|
644
|
+
msgstr "Результаты поиска"
|
|
259
645
|
|
|
260
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
646
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
261
647
|
msgid "Tombstone"
|
|
262
|
-
msgstr ""
|
|
648
|
+
msgstr "Маркировка отсутствия"
|
|
649
|
+
|
|
650
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
651
|
+
msgid "Reason unknown"
|
|
652
|
+
msgstr "Причина неизвестна"
|
|
263
653
|
|
|
264
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
654
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
265
655
|
msgid "Gone"
|
|
266
|
-
msgstr ""
|
|
656
|
+
msgstr "Больше нет"
|
|
267
657
|
|
|
268
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
658
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
269
659
|
#, python-format
|
|
270
660
|
msgid ""
|
|
271
661
|
"\n"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
" "
|
|
662
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
663
|
+
" metadata of the record is kept for archival purposes."
|
|
275
664
|
msgstr ""
|
|
665
|
+
"\n"
|
|
666
|
+
" Запись, которую вы пытаетесь открыть, была удалена из %(sitename)s.\n"
|
|
667
|
+
" Метаданные этой записи сохранены в архивных целях."
|
|
276
668
|
|
|
277
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
669
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
278
670
|
msgid "Reason for removal:"
|
|
671
|
+
msgstr "Основание для удаления:"
|
|
672
|
+
|
|
673
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
674
|
+
msgid "Removed by:"
|
|
675
|
+
msgstr "Удалил/а"
|
|
676
|
+
|
|
677
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
678
|
+
msgid "Removal note:"
|
|
679
|
+
msgstr "Комментарий по поводу удаления:"
|
|
680
|
+
|
|
681
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
682
|
+
msgid "Date of removal:"
|
|
683
|
+
msgstr "Дата удаления:"
|
|
684
|
+
|
|
685
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
686
|
+
msgid "Citation:"
|
|
687
|
+
msgstr "Библиографическая ссылка:"
|
|
688
|
+
|
|
689
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
690
|
+
msgid "You are currently not logged in"
|
|
279
691
|
msgstr ""
|
|
280
692
|
|
|
281
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
282
|
-
|
|
283
|
-
msgid "Creators list"
|
|
693
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
694
|
+
msgid "Do you have an account?"
|
|
284
695
|
msgstr ""
|
|
285
696
|
|
|
286
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
287
|
-
msgid "
|
|
697
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
698
|
+
msgid "Log in here"
|
|
699
|
+
msgstr ""
|
|
700
|
+
|
|
701
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
702
|
+
msgid "You are logged in as"
|
|
703
|
+
msgstr "Вы вошли в качестве"
|
|
704
|
+
|
|
705
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
706
|
+
msgid "Not you?"
|
|
707
|
+
msgstr ""
|
|
708
|
+
|
|
709
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
710
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
711
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
712
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
713
|
+
msgid "Log out"
|
|
714
|
+
msgstr "Выход"
|
|
715
|
+
|
|
716
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
717
|
+
msgid "to switch account."
|
|
288
718
|
msgstr ""
|
|
289
719
|
|
|
290
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
291
|
-
msgid "
|
|
720
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
721
|
+
msgid "Send message"
|
|
292
722
|
msgstr ""
|
|
293
723
|
|
|
724
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
725
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
726
|
+
msgid "Creators"
|
|
727
|
+
msgstr "Создатели"
|
|
728
|
+
|
|
729
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
730
|
+
msgid "Contributors"
|
|
731
|
+
msgstr "Соавторы"
|
|
732
|
+
|
|
294
733
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
295
734
|
msgid "Record description"
|
|
296
|
-
msgstr ""
|
|
735
|
+
msgstr "Характеристика записи"
|
|
297
736
|
|
|
298
737
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:15
|
|
299
738
|
msgid "Description"
|
|
300
739
|
msgstr "Описание"
|
|
301
740
|
|
|
302
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
741
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
303
742
|
msgid "Additional details"
|
|
304
743
|
msgstr "Дополнительная информация"
|
|
305
744
|
|
|
306
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
745
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
746
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
307
747
|
msgid "Additional titles"
|
|
308
|
-
msgstr ""
|
|
748
|
+
msgstr "Дополнительные названия"
|
|
309
749
|
|
|
310
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
750
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
311
752
|
msgid "Identifiers"
|
|
312
|
-
msgstr ""
|
|
753
|
+
msgstr "Идентификаторы"
|
|
313
754
|
|
|
314
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
755
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
315
757
|
msgid "Related works"
|
|
316
|
-
msgstr ""
|
|
758
|
+
msgstr "Связанные работы"
|
|
317
759
|
|
|
318
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
760
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
319
762
|
msgid "Funding"
|
|
320
|
-
msgstr ""
|
|
763
|
+
msgstr "Финансирование"
|
|
321
764
|
|
|
322
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
765
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
323
767
|
msgid "Dates"
|
|
324
|
-
msgstr ""
|
|
768
|
+
msgstr "Даты"
|
|
325
769
|
|
|
326
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
327
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
770
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
328
772
|
msgid "References"
|
|
329
773
|
msgstr "Ссылки"
|
|
330
774
|
|
|
331
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
332
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
333
|
-
msgid "
|
|
334
|
-
msgstr ""
|
|
335
|
-
|
|
336
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
775
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
777
|
+
msgid "Views"
|
|
778
|
+
msgstr "Просмотров"
|
|
779
|
+
|
|
780
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
782
|
+
msgid "Downloads"
|
|
783
|
+
msgstr "Загрузки"
|
|
784
|
+
|
|
785
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
787
|
+
msgid "Show more details"
|
|
788
|
+
msgstr "Показать больше подробностей"
|
|
789
|
+
|
|
790
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
791
|
+
msgid "Show less details"
|
|
792
|
+
msgstr "Показать меньше подробностей"
|
|
793
|
+
|
|
794
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
795
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
796
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
797
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
798
|
+
msgid "All versions"
|
|
799
|
+
msgstr "Все версии"
|
|
800
|
+
|
|
801
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
802
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
803
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
804
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
805
|
+
msgid "This version"
|
|
806
|
+
msgstr "Эта версия"
|
|
807
|
+
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
810
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
811
|
+
msgid "More info"
|
|
812
|
+
msgstr "Больше информации"
|
|
813
|
+
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
815
|
+
msgid "Total views"
|
|
816
|
+
msgstr "Всего просмотров"
|
|
817
|
+
|
|
818
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
819
|
+
msgid "Total downloads"
|
|
820
|
+
msgstr "Всего скачиваний"
|
|
821
|
+
|
|
822
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
823
|
+
msgid "Data volume"
|
|
824
|
+
msgstr "Объем данных"
|
|
825
|
+
|
|
826
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
827
|
+
msgid "Total data volume"
|
|
828
|
+
msgstr "Общий объем данных"
|
|
829
|
+
|
|
830
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
831
|
+
msgid "More info on how stats are collected."
|
|
832
|
+
msgstr "Подробнее о том, как собирается статистика."
|
|
343
833
|
|
|
344
834
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
345
835
|
msgid "Keywords"
|
|
346
836
|
msgstr "Ключевые слова"
|
|
347
837
|
|
|
348
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
349
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
838
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
839
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
350
840
|
msgid "Search results for "
|
|
351
|
-
msgstr ""
|
|
841
|
+
msgstr "Результаты поиска для"
|
|
842
|
+
|
|
843
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
844
|
+
msgid "Citation"
|
|
845
|
+
msgstr "Библиографическая ссылка"
|
|
352
846
|
|
|
353
847
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
354
848
|
msgid "Details"
|
|
355
|
-
msgstr ""
|
|
849
|
+
msgstr "Подробности"
|
|
356
850
|
|
|
357
851
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:26
|
|
358
852
|
msgid "Publisher"
|
|
359
853
|
msgstr "Издатель"
|
|
360
854
|
|
|
361
855
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
362
|
-
msgid "
|
|
363
|
-
msgstr ""
|
|
856
|
+
msgid "Published in"
|
|
857
|
+
msgstr "Опубликовано в"
|
|
364
858
|
|
|
365
859
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
366
|
-
msgid "
|
|
367
|
-
msgstr ""
|
|
860
|
+
msgid "Imprint"
|
|
861
|
+
msgstr "Заглавная страница"
|
|
368
862
|
|
|
369
863
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
864
|
+
msgid "Awarding university"
|
|
865
|
+
msgstr "Наградивший университет"
|
|
866
|
+
|
|
867
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
868
|
+
msgid "Conference"
|
|
869
|
+
msgstr "Конференция"
|
|
870
|
+
|
|
871
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
872
|
+
msgid "Languages"
|
|
873
|
+
msgstr "Языки"
|
|
874
|
+
|
|
875
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
876
|
+
msgid "Formats"
|
|
877
|
+
msgstr "Форматы"
|
|
878
|
+
|
|
879
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
370
880
|
msgid "Sizes"
|
|
371
|
-
msgstr ""
|
|
881
|
+
msgstr "Размеры"
|
|
372
882
|
|
|
373
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
374
883
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
375
884
|
msgid "Export"
|
|
376
|
-
msgstr ""
|
|
885
|
+
msgstr "Экспортировать"
|
|
886
|
+
|
|
887
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
888
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
889
|
+
msgid "External resources"
|
|
890
|
+
msgstr "Внешние ресурсы"
|
|
377
891
|
|
|
378
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:12
|
|
379
892
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
380
894
|
msgid "Keywords and subjects"
|
|
381
|
-
msgstr ""
|
|
382
|
-
|
|
383
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
384
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
385
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
387
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
895
|
+
msgstr "Ключевые слова и темы"
|
|
896
|
+
|
|
897
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
898
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
899
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
900
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
901
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
902
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
388
903
|
msgid "Opens in new tab"
|
|
904
|
+
msgstr "Открывается в новой вкладке"
|
|
905
|
+
|
|
906
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
907
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
908
|
+
msgid "Read more"
|
|
389
909
|
msgstr ""
|
|
390
910
|
|
|
391
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
392
911
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
393
912
|
msgid "Rights"
|
|
394
|
-
msgstr ""
|
|
913
|
+
msgstr "Права"
|
|
395
914
|
|
|
396
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
915
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
397
916
|
msgid "Close"
|
|
398
|
-
msgstr ""
|
|
917
|
+
msgstr "Закрыть"
|
|
399
918
|
|
|
400
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
919
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
401
920
|
msgid "No further description."
|
|
402
|
-
msgstr ""
|
|
921
|
+
msgstr "Больше описаний нет."
|
|
922
|
+
|
|
923
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
924
|
+
msgid "Geographic locations"
|
|
925
|
+
msgstr "Географические локации"
|
|
403
926
|
|
|
404
927
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
405
928
|
msgid "Record management"
|
|
406
|
-
msgstr ""
|
|
929
|
+
msgstr "Управление записью"
|
|
407
930
|
|
|
408
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
409
|
-
msgid "
|
|
410
|
-
msgstr ""
|
|
931
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
932
|
+
msgid "Metrics"
|
|
933
|
+
msgstr "Метрики"
|
|
934
|
+
|
|
935
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
936
|
+
msgid "Upload information"
|
|
937
|
+
msgstr "Загрузить информацию"
|
|
938
|
+
|
|
939
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
940
|
+
msgid "Technical metadata"
|
|
941
|
+
msgstr "Технические метаданные"
|
|
942
|
+
|
|
943
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
944
|
+
msgid "Modified"
|
|
945
|
+
msgstr "Изменено"
|
|
411
946
|
|
|
412
947
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
413
948
|
msgid "Versions"
|
|
414
|
-
msgstr ""
|
|
949
|
+
msgstr "Версии"
|
|
415
950
|
|
|
416
951
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:17
|
|
417
952
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:22
|
|
@@ -419,314 +954,431 @@ msgstr ""
|
|
|
419
954
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:88
|
|
420
955
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:89
|
|
421
956
|
msgid "profile"
|
|
422
|
-
msgstr ""
|
|
957
|
+
msgstr "профиль"
|
|
423
958
|
|
|
424
959
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
425
960
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
426
961
|
msgid "Show affiliations"
|
|
427
|
-
msgstr ""
|
|
962
|
+
msgstr "Показать аффилиации"
|
|
428
963
|
|
|
429
964
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
430
965
|
msgid "Hide affiliations"
|
|
431
|
-
msgstr ""
|
|
966
|
+
msgstr "Скрыть аффилиации"
|
|
432
967
|
|
|
433
968
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:79
|
|
434
969
|
msgid "Affiliations for"
|
|
435
|
-
msgstr ""
|
|
970
|
+
msgstr "Аффилиации для"
|
|
436
971
|
|
|
437
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
972
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
438
973
|
msgid "Open external link"
|
|
974
|
+
msgstr "Открыть внешнюю ссылку"
|
|
975
|
+
|
|
976
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
977
|
+
msgid "Conference website"
|
|
978
|
+
msgstr "Сайт конференции"
|
|
979
|
+
|
|
980
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
981
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
982
|
+
msgid "DOI"
|
|
983
|
+
msgstr "DOI"
|
|
984
|
+
|
|
985
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
986
|
+
msgid "Get the DOI badge!"
|
|
439
987
|
msgstr ""
|
|
440
988
|
|
|
441
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
442
|
-
msgid "
|
|
989
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
990
|
+
msgid "DOI Badge"
|
|
443
991
|
msgstr ""
|
|
444
992
|
|
|
445
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
993
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
994
|
+
msgid "File preview"
|
|
995
|
+
msgstr "Предварительный просмотр файла"
|
|
996
|
+
|
|
997
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
446
998
|
msgid "Name"
|
|
447
999
|
msgstr "Имя"
|
|
448
1000
|
|
|
449
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1001
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
450
1002
|
msgid "Size"
|
|
451
|
-
msgstr ""
|
|
1003
|
+
msgstr "Размер"
|
|
452
1004
|
|
|
453
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
msgstr "Действия"
|
|
1005
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1006
|
+
msgid "Download all"
|
|
1007
|
+
msgstr "Скачать все"
|
|
457
1008
|
|
|
458
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1009
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
459
1010
|
msgid ""
|
|
460
1011
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
461
1012
|
"file integrity."
|
|
462
1013
|
msgstr ""
|
|
1014
|
+
"Это идентификатор (контрольная сумма) файла, которую можно использовать, "
|
|
1015
|
+
"чтобы убедиться в его целостности."
|
|
463
1016
|
|
|
464
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1017
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
465
1018
|
msgid "Download"
|
|
466
1019
|
msgstr "Скачать"
|
|
467
1020
|
|
|
468
|
-
#: invenio_app_rdm/records_ui/
|
|
469
|
-
msgid "
|
|
1021
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1022
|
+
msgid "Unknown"
|
|
1023
|
+
msgstr "Неизвестно"
|
|
1024
|
+
|
|
1025
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1026
|
+
msgid "See the full number"
|
|
1027
|
+
msgstr ""
|
|
1028
|
+
|
|
1029
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1030
|
+
msgid "Version"
|
|
1031
|
+
msgstr "По версии"
|
|
1032
|
+
|
|
1033
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1034
|
+
msgid "No DOI available"
|
|
470
1035
|
msgstr ""
|
|
471
1036
|
|
|
472
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
473
|
-
|
|
1037
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1038
|
+
#, python-format
|
|
1039
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1040
|
+
msgstr ""
|
|
1041
|
+
|
|
1042
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1043
|
+
#, python-format
|
|
1044
|
+
msgid "Get a %(scheme_label)s now!"
|
|
474
1045
|
msgstr ""
|
|
475
1046
|
|
|
476
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1047
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1048
|
+
#, python-format
|
|
477
1049
|
msgid ""
|
|
478
|
-
"Reserve a
|
|
479
|
-
"files prior to upload). The
|
|
480
|
-
" published."
|
|
1050
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1051
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1052
|
+
"is published."
|
|
481
1053
|
msgstr ""
|
|
482
1054
|
|
|
483
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1055
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1056
|
+
#, python-format
|
|
484
1057
|
msgid ""
|
|
485
|
-
"A
|
|
1058
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
486
1059
|
"Example: 10.1234/foo.bar"
|
|
487
1060
|
msgstr ""
|
|
488
1061
|
|
|
489
|
-
#: invenio_app_rdm/
|
|
1062
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1063
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1064
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1065
|
+
msgid "All"
|
|
1066
|
+
msgstr "Все"
|
|
1067
|
+
|
|
1068
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
490
1069
|
msgid "Back to invitations"
|
|
491
|
-
msgstr ""
|
|
1070
|
+
msgstr "Назад к приглашениям"
|
|
492
1071
|
|
|
493
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
494
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1072
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1073
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1074
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1075
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
495
1076
|
msgid "Back to requests"
|
|
496
|
-
msgstr ""
|
|
1077
|
+
msgstr "Назад к запросам"
|
|
497
1078
|
|
|
498
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
499
1080
|
msgid "Conversation"
|
|
500
|
-
msgstr ""
|
|
1081
|
+
msgstr "Разговор"
|
|
501
1082
|
|
|
502
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1083
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
503
1084
|
msgid "Record"
|
|
504
1085
|
msgstr "Запись"
|
|
505
1086
|
|
|
506
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1087
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1088
|
+
msgid "Access request"
|
|
1089
|
+
msgstr "Запрос на доступ"
|
|
1090
|
+
|
|
1091
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
507
1092
|
msgid "View Community"
|
|
508
|
-
msgstr ""
|
|
1093
|
+
msgstr "Смотреть сообщество"
|
|
509
1094
|
|
|
510
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1095
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
511
1096
|
msgid "View record"
|
|
512
|
-
msgstr ""
|
|
1097
|
+
msgstr "Просмотр записи"
|
|
513
1098
|
|
|
514
|
-
#: invenio_app_rdm/theme/views.py:
|
|
515
|
-
msgid "
|
|
516
|
-
msgstr ""
|
|
1099
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1100
|
+
msgid "Notification preferences were updated."
|
|
1101
|
+
msgstr "Настройки уведомлений обновлены."
|
|
517
1102
|
|
|
518
1103
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
519
1104
|
msgid "About InvenioRDM"
|
|
520
|
-
msgstr ""
|
|
1105
|
+
msgstr "Об InvenioRDM"
|
|
521
1106
|
|
|
522
1107
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
523
|
-
|
|
524
|
-
msgid ""
|
|
525
|
-
"\n"
|
|
526
|
-
" <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
|
|
527
|
-
" "
|
|
1108
|
+
msgid "Product page"
|
|
528
1109
|
msgstr ""
|
|
529
1110
|
|
|
530
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
531
|
-
|
|
532
|
-
msgid ""
|
|
533
|
-
"\n"
|
|
534
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
535
|
-
" "
|
|
1111
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1112
|
+
msgid "Features"
|
|
536
1113
|
msgstr ""
|
|
537
1114
|
|
|
538
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
539
|
-
|
|
540
|
-
msgid ""
|
|
541
|
-
"\n"
|
|
542
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
|
|
543
|
-
" "
|
|
1115
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1116
|
+
msgid "Roadmap"
|
|
544
1117
|
msgstr ""
|
|
545
1118
|
|
|
546
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
547
|
-
|
|
548
|
-
msgid ""
|
|
549
|
-
"\n"
|
|
550
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
|
|
551
|
-
" "
|
|
1119
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
1120
|
+
msgid "Demo site"
|
|
552
1121
|
msgstr ""
|
|
553
1122
|
|
|
554
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1123
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
555
1124
|
msgid "Get involved"
|
|
556
|
-
msgstr ""
|
|
1125
|
+
msgstr "Принять участие"
|
|
557
1126
|
|
|
558
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
"\n"
|
|
562
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
563
|
-
" "
|
|
564
|
-
msgstr ""
|
|
1127
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1128
|
+
msgid "GitHub"
|
|
1129
|
+
msgstr "GitHub"
|
|
565
1130
|
|
|
566
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
567
|
-
|
|
568
|
-
msgid ""
|
|
569
|
-
"\n"
|
|
570
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
571
|
-
" "
|
|
1131
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1132
|
+
msgid "Project Milestones"
|
|
572
1133
|
msgstr ""
|
|
573
1134
|
|
|
574
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
575
|
-
|
|
576
|
-
msgid ""
|
|
577
|
-
"\n"
|
|
578
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
579
|
-
" "
|
|
1135
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
1136
|
+
msgid "Documentation"
|
|
580
1137
|
msgstr ""
|
|
581
1138
|
|
|
582
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1139
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
583
1140
|
msgid "Community"
|
|
1141
|
+
msgstr "Сообщество"
|
|
1142
|
+
|
|
1143
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1144
|
+
msgid "Chatroom"
|
|
584
1145
|
msgstr ""
|
|
585
1146
|
|
|
586
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
587
|
-
|
|
588
|
-
msgid ""
|
|
589
|
-
"\n"
|
|
590
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
591
|
-
" "
|
|
1147
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
1148
|
+
msgid "Forum"
|
|
592
1149
|
msgstr ""
|
|
593
1150
|
|
|
594
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
595
|
-
|
|
596
|
-
msgid ""
|
|
597
|
-
"\n"
|
|
598
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
599
|
-
" "
|
|
1151
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
1152
|
+
msgid "Events & training"
|
|
600
1153
|
msgstr ""
|
|
601
1154
|
|
|
602
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
603
|
-
|
|
604
|
-
msgid ""
|
|
605
|
-
"\n"
|
|
606
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
607
|
-
" "
|
|
1155
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1156
|
+
msgid "Impersonated session"
|
|
608
1157
|
msgstr ""
|
|
609
1158
|
|
|
610
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
611
|
-
|
|
612
|
-
msgid ""
|
|
613
|
-
"Powered by <a\n"
|
|
614
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1159
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1160
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
615
1161
|
msgstr ""
|
|
616
1162
|
|
|
617
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1163
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1164
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1165
|
+
msgid "home"
|
|
1166
|
+
msgstr "главная"
|
|
1167
|
+
|
|
1168
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1169
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1170
|
+
msgid "Menu"
|
|
1171
|
+
msgstr "Меню"
|
|
1172
|
+
|
|
1173
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1175
|
+
msgid "Close menu"
|
|
1176
|
+
msgstr "Закрыть меню"
|
|
1177
|
+
|
|
1178
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1180
|
+
msgid "Inbox"
|
|
1181
|
+
msgstr "Входящие"
|
|
1182
|
+
|
|
1183
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1185
|
+
msgid "Search"
|
|
1186
|
+
msgstr "Искать"
|
|
1187
|
+
|
|
1188
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1189
|
+
msgid "Log in"
|
|
1190
|
+
msgstr "Вход"
|
|
1191
|
+
|
|
1192
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1193
|
+
msgid "Sign up"
|
|
1194
|
+
msgstr "Зарегистрироваться"
|
|
1195
|
+
|
|
1196
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1197
|
+
msgid "Quick create"
|
|
1198
|
+
msgstr "Быстрое создание"
|
|
1199
|
+
|
|
1200
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1201
|
+
msgid "Actions"
|
|
1202
|
+
msgstr "Действия"
|
|
1203
|
+
|
|
1204
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1205
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1206
|
+
msgid "My account"
|
|
1207
|
+
msgstr "Моя учетная запись"
|
|
1208
|
+
|
|
1209
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
618
1210
|
msgid "You've successfully installed InvenioRDM!"
|
|
619
|
-
msgstr ""
|
|
1211
|
+
msgstr "Вы успешно установили InvenioRDM!"
|
|
620
1212
|
|
|
621
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1213
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
622
1214
|
msgid "What is ahead?"
|
|
623
|
-
msgstr ""
|
|
1215
|
+
msgstr "Что дальше?"
|
|
624
1216
|
|
|
625
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1217
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
626
1218
|
msgid "Configure"
|
|
627
|
-
msgstr ""
|
|
1219
|
+
msgstr "Конфигурация"
|
|
628
1220
|
|
|
629
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
630
|
-
#, python-format
|
|
1221
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
631
1222
|
msgid ""
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
635
|
-
" section in the docs</a>.\n"
|
|
636
|
-
" "
|
|
1223
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1224
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
637
1225
|
msgstr ""
|
|
638
1226
|
|
|
639
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
640
|
-
msgid "
|
|
1227
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1228
|
+
msgid "configuration section in the docs"
|
|
641
1229
|
msgstr ""
|
|
642
1230
|
|
|
643
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
644
|
-
|
|
1231
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
1232
|
+
msgid "Customize"
|
|
1233
|
+
msgstr "Индивидуальная настройка"
|
|
1234
|
+
|
|
1235
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
645
1236
|
msgid ""
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
649
|
-
" "
|
|
1237
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1238
|
+
"how to do so"
|
|
650
1239
|
msgstr ""
|
|
651
1240
|
|
|
652
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1241
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1242
|
+
msgid "here"
|
|
1243
|
+
msgstr "здесь"
|
|
1244
|
+
|
|
1245
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
653
1246
|
msgid "Run it!"
|
|
654
|
-
msgstr ""
|
|
1247
|
+
msgstr "Пуск!"
|
|
655
1248
|
|
|
656
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
657
|
-
|
|
658
|
-
msgid ""
|
|
659
|
-
"\n"
|
|
660
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
|
|
661
|
-
" InvenioRDM instance locally or in containers.\n"
|
|
662
|
-
" "
|
|
1249
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1250
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
663
1251
|
msgstr ""
|
|
664
1252
|
|
|
665
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1253
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1254
|
+
msgid "Run"
|
|
1255
|
+
msgstr "Запустить"
|
|
1256
|
+
|
|
1257
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
666
1258
|
msgid "Docs"
|
|
667
|
-
msgstr ""
|
|
1259
|
+
msgstr "Документация"
|
|
668
1260
|
|
|
669
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1261
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
670
1262
|
msgid "Code"
|
|
671
1263
|
msgstr "Код"
|
|
672
1264
|
|
|
673
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
674
|
-
msgid "
|
|
675
|
-
msgstr "
|
|
1265
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1266
|
+
msgid "To disable this section, add"
|
|
1267
|
+
msgstr ""
|
|
676
1268
|
|
|
677
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
678
|
-
msgid "
|
|
1269
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1270
|
+
msgid "to your invenio.cfg file."
|
|
1271
|
+
msgstr "в вашем файле invenio.cfg."
|
|
1272
|
+
|
|
1273
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1274
|
+
msgid "In this community"
|
|
1275
|
+
msgstr "В этом сообществе"
|
|
1276
|
+
|
|
1277
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1278
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1279
|
+
msgid "Search records"
|
|
1280
|
+
msgstr "Искать по записям"
|
|
1281
|
+
|
|
1282
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1283
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1284
|
+
msgid "Powered by"
|
|
1285
|
+
msgstr "Развиваемое"
|
|
1286
|
+
|
|
1287
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1288
|
+
msgid ""
|
|
1289
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1290
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
679
1291
|
msgstr ""
|
|
680
1292
|
|
|
681
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
msgstr "Запросы"
|
|
1293
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1294
|
+
#, python-format
|
|
1295
|
+
msgid "ID: %s"
|
|
1296
|
+
msgstr ""
|
|
686
1297
|
|
|
687
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
688
|
-
|
|
1298
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1299
|
+
#, python-format
|
|
1300
|
+
msgid "URI: %s"
|
|
689
1301
|
msgstr ""
|
|
690
1302
|
|
|
691
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
692
|
-
|
|
1303
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1304
|
+
#, python-format
|
|
1305
|
+
msgid "Name: %s"
|
|
693
1306
|
msgstr ""
|
|
694
1307
|
|
|
695
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
696
|
-
|
|
1308
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1309
|
+
#, python-format
|
|
1310
|
+
msgid "Created: %s"
|
|
697
1311
|
msgstr ""
|
|
698
1312
|
|
|
699
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
700
|
-
|
|
701
|
-
msgid "
|
|
1313
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1314
|
+
#, python-format
|
|
1315
|
+
msgid "Checksum: %s"
|
|
702
1316
|
msgstr ""
|
|
703
1317
|
|
|
704
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
msgid "Log out"
|
|
1318
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1319
|
+
#, python-format
|
|
1320
|
+
msgid "Last check date: %s"
|
|
708
1321
|
msgstr ""
|
|
709
1322
|
|
|
710
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
711
|
-
|
|
1323
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1324
|
+
#, python-format
|
|
1325
|
+
msgid "Last check FAILED with result: %s"
|
|
712
1326
|
msgstr ""
|
|
713
1327
|
|
|
714
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
715
|
-
|
|
716
|
-
msgid "
|
|
717
|
-
msgstr "
|
|
1328
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1329
|
+
#, python-format
|
|
1330
|
+
msgid "Record: %s/records/%s"
|
|
1331
|
+
msgstr ""
|
|
1332
|
+
|
|
1333
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1334
|
+
#, python-format
|
|
1335
|
+
msgid "Draft: %s/uploads/%s"
|
|
1336
|
+
msgstr ""
|
|
718
1337
|
|
|
719
1338
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
720
1339
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1340
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
721
1341
|
msgid "Search guide"
|
|
722
|
-
msgstr ""
|
|
1342
|
+
msgstr "Руководство по поиску"
|
|
723
1343
|
|
|
724
|
-
#: invenio_app_rdm/
|
|
725
|
-
#: invenio_app_rdm/
|
|
726
|
-
msgid "
|
|
1344
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1345
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1346
|
+
msgid "FAQ statistics"
|
|
1347
|
+
msgstr "ЧАВО по статистике"
|
|
1348
|
+
|
|
1349
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1350
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1351
|
+
msgid "FAQ versioning"
|
|
1352
|
+
msgstr "ЧАВО по версионированию"
|
|
1353
|
+
|
|
1354
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1355
|
+
msgid "Recent uploads"
|
|
727
1356
|
msgstr ""
|
|
728
1357
|
|
|
729
|
-
#: invenio_app_rdm/
|
|
730
|
-
|
|
731
|
-
msgid "Uploads"
|
|
1358
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1359
|
+
msgid "Verified community"
|
|
732
1360
|
msgstr ""
|
|
1361
|
+
|
|
1362
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1363
|
+
msgid "Privacy policy"
|
|
1364
|
+
msgstr "Политика приватности "
|
|
1365
|
+
|
|
1366
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1367
|
+
msgid "Terms of use"
|
|
1368
|
+
msgstr "Условия использования"
|
|
1369
|
+
|
|
1370
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1371
|
+
msgid "Support"
|
|
1372
|
+
msgstr "Поддержка"
|
|
1373
|
+
|
|
1374
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1375
|
+
msgid "Your dashboard"
|
|
1376
|
+
msgstr "Ваша панель управления"
|
|
1377
|
+
|
|
1378
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1379
|
+
msgid "Anonymous user"
|
|
1380
|
+
msgstr "Анонимный пользователь"
|
|
1381
|
+
|
|
1382
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1383
|
+
msgid "New community"
|
|
1384
|
+
msgstr "Новое сообщество"
|