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