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,419 +1,955 @@
|
|
|
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
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
8
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
9
|
+
# Ivan Masár <helix84@centrum.sk>, 2025
|
|
10
|
+
# Jiří Kunčar <jiri.kuncar@gmail.com>, 2025
|
|
11
|
+
# daniela.hornickova, 2025
|
|
12
|
+
# Mirek Simek <miroslav.simek@gmail.com>, 2025
|
|
11
13
|
#
|
|
12
14
|
#, fuzzy
|
|
13
15
|
msgid ""
|
|
14
16
|
msgstr ""
|
|
15
|
-
"Project-Id-Version: invenio-app-rdm
|
|
17
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
16
18
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
17
|
-
"POT-Creation-Date:
|
|
19
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
18
20
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
19
|
-
"Last-Translator:
|
|
21
|
+
"Last-Translator: Mirek Simek <miroslav.simek@gmail.com>, 2025\n"
|
|
20
22
|
"Language-Team: Czech (https://app.transifex.com/inveniosoftware/teams/23537/cs/)\n"
|
|
21
23
|
"MIME-Version: 1.0\n"
|
|
22
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
23
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
24
|
-
"Generated-By: Babel 2.
|
|
26
|
+
"Generated-By: Babel 2.17.0\n"
|
|
25
27
|
"Language: cs\n"
|
|
26
28
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
27
29
|
|
|
28
|
-
#: invenio_app_rdm/config.py:
|
|
30
|
+
#: invenio_app_rdm/config.py:219
|
|
29
31
|
msgid "The turn-key research data management repository"
|
|
30
|
-
msgstr ""
|
|
32
|
+
msgstr "Repozitář na klíč pro správu vědeckých dat"
|
|
31
33
|
|
|
32
|
-
#: invenio_app_rdm/config.py:
|
|
34
|
+
#: invenio_app_rdm/config.py:258
|
|
35
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
33
36
|
msgid "InvenioRDM"
|
|
34
|
-
msgstr ""
|
|
37
|
+
msgstr "InvenioRDM"
|
|
35
38
|
|
|
36
|
-
#: invenio_app_rdm/config.py:
|
|
39
|
+
#: invenio_app_rdm/config.py:353
|
|
37
40
|
msgid "Welcome to Invenio App RDM!"
|
|
38
|
-
msgstr ""
|
|
41
|
+
msgstr "Vítejte v repozitáři Invenio App RDM!"
|
|
39
42
|
|
|
40
|
-
#: invenio_app_rdm/config.py:
|
|
43
|
+
#: invenio_app_rdm/config.py:750
|
|
41
44
|
msgid "JSON"
|
|
42
45
|
msgstr "JSON"
|
|
43
46
|
|
|
44
|
-
#: invenio_app_rdm/config.py:
|
|
47
|
+
#: invenio_app_rdm/config.py:757
|
|
48
|
+
msgid "JSON-LD"
|
|
49
|
+
msgstr "JSON-LD"
|
|
50
|
+
|
|
51
|
+
#: invenio_app_rdm/config.py:765
|
|
45
52
|
msgid "CSL"
|
|
46
|
-
msgstr ""
|
|
53
|
+
msgstr "CSL"
|
|
47
54
|
|
|
48
|
-
#: invenio_app_rdm/config.py:
|
|
55
|
+
#: invenio_app_rdm/config.py:772
|
|
49
56
|
msgid "DataCite JSON"
|
|
50
|
-
msgstr ""
|
|
57
|
+
msgstr "DataCite JSON"
|
|
51
58
|
|
|
52
|
-
#: invenio_app_rdm/config.py:
|
|
59
|
+
#: invenio_app_rdm/config.py:781
|
|
53
60
|
msgid "DataCite XML"
|
|
54
|
-
msgstr ""
|
|
61
|
+
msgstr "DataCite XML"
|
|
55
62
|
|
|
56
|
-
#: invenio_app_rdm/config.py:
|
|
63
|
+
#: invenio_app_rdm/config.py:790
|
|
57
64
|
msgid "Dublin Core XML"
|
|
58
|
-
msgstr ""
|
|
65
|
+
msgstr "Dublin Core XML"
|
|
66
|
+
|
|
67
|
+
#: invenio_app_rdm/config.py:799
|
|
68
|
+
msgid "MARCXML"
|
|
69
|
+
msgstr "MARCXML"
|
|
70
|
+
|
|
71
|
+
#: invenio_app_rdm/config.py:806
|
|
72
|
+
msgid "BibTeX"
|
|
73
|
+
msgstr "BibTeX"
|
|
74
|
+
|
|
75
|
+
#: invenio_app_rdm/config.py:813
|
|
76
|
+
msgid "GeoJSON"
|
|
77
|
+
msgstr "GeoJSON"
|
|
78
|
+
|
|
79
|
+
#: invenio_app_rdm/config.py:820
|
|
80
|
+
msgid "DCAT"
|
|
81
|
+
msgstr "DCAT"
|
|
59
82
|
|
|
60
|
-
#: invenio_app_rdm/config.py:
|
|
83
|
+
#: invenio_app_rdm/config.py:827
|
|
84
|
+
msgid "Codemeta"
|
|
85
|
+
msgstr "Codemeta"
|
|
86
|
+
|
|
87
|
+
#: invenio_app_rdm/config.py:834
|
|
88
|
+
msgid "Citation File Format"
|
|
89
|
+
msgstr "Formát citačního souboru"
|
|
90
|
+
|
|
91
|
+
#: invenio_app_rdm/config.py:996
|
|
61
92
|
msgid "APA"
|
|
62
|
-
msgstr ""
|
|
93
|
+
msgstr "APA"
|
|
63
94
|
|
|
64
|
-
#: invenio_app_rdm/config.py:
|
|
95
|
+
#: invenio_app_rdm/config.py:997
|
|
65
96
|
msgid "Harvard"
|
|
66
|
-
msgstr ""
|
|
97
|
+
msgstr "Harvard"
|
|
67
98
|
|
|
68
|
-
#: invenio_app_rdm/config.py:
|
|
99
|
+
#: invenio_app_rdm/config.py:998
|
|
69
100
|
msgid "MLA"
|
|
70
|
-
msgstr ""
|
|
101
|
+
msgstr "MLA"
|
|
71
102
|
|
|
72
|
-
#: invenio_app_rdm/config.py:
|
|
103
|
+
#: invenio_app_rdm/config.py:999
|
|
73
104
|
msgid "Vancouver"
|
|
74
|
-
msgstr ""
|
|
105
|
+
msgstr "Vancouver"
|
|
75
106
|
|
|
76
|
-
#: invenio_app_rdm/config.py:
|
|
107
|
+
#: invenio_app_rdm/config.py:1000
|
|
77
108
|
msgid "Chicago"
|
|
78
|
-
msgstr ""
|
|
109
|
+
msgstr "Chicago"
|
|
79
110
|
|
|
80
|
-
#: invenio_app_rdm/config.py:
|
|
111
|
+
#: invenio_app_rdm/config.py:1001
|
|
81
112
|
msgid "IEEE"
|
|
82
|
-
msgstr ""
|
|
113
|
+
msgstr "IEEE"
|
|
83
114
|
|
|
84
|
-
#: invenio_app_rdm/
|
|
85
|
-
msgid "
|
|
86
|
-
msgstr "
|
|
115
|
+
#: invenio_app_rdm/ext.py:57
|
|
116
|
+
msgid "My dashboard"
|
|
117
|
+
msgstr "Můj přehled"
|
|
87
118
|
|
|
88
|
-
#: invenio_app_rdm/
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
#: invenio_app_rdm/
|
|
91
|
-
msgid "
|
|
92
|
-
msgstr "
|
|
119
|
+
#: invenio_app_rdm/ext.py:63
|
|
120
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
121
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
122
|
+
msgid "New upload"
|
|
123
|
+
msgstr "Nový záznam"
|
|
93
124
|
|
|
94
|
-
#: invenio_app_rdm/
|
|
95
|
-
|
|
96
|
-
|
|
125
|
+
#: invenio_app_rdm/ext.py:77
|
|
126
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
127
|
+
msgid "Uploads"
|
|
128
|
+
msgstr "Nahraná data"
|
|
97
129
|
|
|
98
|
-
#: invenio_app_rdm/
|
|
99
|
-
#: invenio_app_rdm/
|
|
100
|
-
|
|
101
|
-
|
|
130
|
+
#: invenio_app_rdm/ext.py:82
|
|
131
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
132
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
133
|
+
msgid "Communities"
|
|
134
|
+
msgstr "Komunity"
|
|
135
|
+
|
|
136
|
+
#: invenio_app_rdm/ext.py:87
|
|
137
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
138
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
139
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
140
|
+
msgid "Requests"
|
|
141
|
+
msgstr "Žádosti"
|
|
102
142
|
|
|
103
|
-
#: invenio_app_rdm/
|
|
143
|
+
#: invenio_app_rdm/ext.py:110
|
|
144
|
+
msgid "Home"
|
|
145
|
+
msgstr "Hlavní stránka"
|
|
146
|
+
|
|
147
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
148
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
149
|
+
#: invenio_app_rdm/ext.py:118
|
|
150
|
+
msgid "Records"
|
|
151
|
+
msgstr "Záznamy"
|
|
152
|
+
|
|
153
|
+
#: invenio_app_rdm/ext.py:125
|
|
154
|
+
msgid "Submit"
|
|
155
|
+
msgstr "Odeslat"
|
|
156
|
+
|
|
157
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
158
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
159
|
+
msgid "Domains"
|
|
160
|
+
msgstr "Domény"
|
|
161
|
+
|
|
162
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
163
|
+
msgid "Site management"
|
|
164
|
+
msgstr "Správa webu"
|
|
165
|
+
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
167
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
168
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
169
|
+
msgid "Domain"
|
|
170
|
+
msgstr "Doména"
|
|
171
|
+
|
|
172
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
173
|
+
msgid "TLD"
|
|
174
|
+
msgstr "TLD"
|
|
175
|
+
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
177
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
178
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
179
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
180
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
181
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
182
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
183
|
+
msgid "Status"
|
|
184
|
+
msgstr "Status"
|
|
185
|
+
|
|
186
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
187
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
188
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
189
|
+
msgid "Users"
|
|
190
|
+
msgstr "Uživatelé"
|
|
191
|
+
|
|
192
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
193
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
194
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
195
|
+
msgid "Active"
|
|
196
|
+
msgstr "Aktivní"
|
|
197
|
+
|
|
198
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
199
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
200
|
+
msgid "Inactive"
|
|
201
|
+
msgstr "Neaktivní"
|
|
202
|
+
|
|
203
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
204
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
205
|
+
msgid "Confirmed"
|
|
206
|
+
msgstr "Potvrzen"
|
|
207
|
+
|
|
208
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
209
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
210
|
+
msgid "Verified"
|
|
211
|
+
msgstr "Ověřen"
|
|
212
|
+
|
|
213
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
214
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
215
|
+
msgid "Blocked"
|
|
216
|
+
msgstr "Blokován"
|
|
217
|
+
|
|
218
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
219
|
+
msgid "Domain name (all lowercase)"
|
|
220
|
+
msgstr "Jméno domény (vše malými písmeny)"
|
|
221
|
+
|
|
222
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
223
|
+
msgid ""
|
|
224
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
225
|
+
"domain require moderation), verified (users in domain does not require "
|
|
226
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
227
|
+
msgstr ""
|
|
228
|
+
"Stav domény. Jedna z možností: nová (doména vyžaduje kontrolu), moderovaná "
|
|
229
|
+
"(uživatelé v doméně vyžadují moderování),ověřená (uživatelé v doméně "
|
|
230
|
+
"nevyžadují moderování) nebo blokovaná (uživatelé se nemohou registrovat "
|
|
231
|
+
"pomocí této domény)."
|
|
232
|
+
|
|
233
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
234
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
235
|
+
msgid "Category"
|
|
236
|
+
msgstr "Kategorie"
|
|
237
|
+
|
|
238
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
239
|
+
msgid "A label to categorise the domain."
|
|
240
|
+
msgstr "Štítek pro kategorizaci domény."
|
|
241
|
+
|
|
242
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
243
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
244
|
+
msgid "Flagged"
|
|
245
|
+
msgstr "Označen"
|
|
246
|
+
|
|
247
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
248
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
249
|
+
msgstr ""
|
|
250
|
+
"Používáno automatickými procesy pro označení domény jako vyžadující "
|
|
251
|
+
"kontrolu."
|
|
252
|
+
|
|
253
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
254
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
255
|
+
msgid "Source of flag"
|
|
256
|
+
msgstr "Zdroj označení"
|
|
257
|
+
|
|
258
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
259
|
+
msgid "Which source flagged the domain."
|
|
260
|
+
msgstr "Který zdroj označil doménu."
|
|
261
|
+
|
|
262
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
263
|
+
msgid "Create domain"
|
|
264
|
+
msgstr "Vytvořit doménu"
|
|
265
|
+
|
|
266
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
267
|
+
msgid "Edit domain"
|
|
268
|
+
msgstr "Upravit doménu"
|
|
269
|
+
|
|
270
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
271
|
+
msgid "Domain details"
|
|
272
|
+
msgstr "Detaily domény"
|
|
273
|
+
|
|
274
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
275
|
+
msgid "Top-level domain"
|
|
276
|
+
msgstr "Doména nejvyššího řádu"
|
|
277
|
+
|
|
278
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
279
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
280
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
281
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
282
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
283
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
284
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
285
|
+
msgid "Created"
|
|
286
|
+
msgstr "Vytvořeno"
|
|
287
|
+
|
|
288
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
289
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
290
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
291
|
+
msgid "Updated"
|
|
292
|
+
msgstr "Aktualizováno"
|
|
293
|
+
|
|
294
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
295
|
+
msgid "Organisation"
|
|
296
|
+
msgstr "Organizace"
|
|
297
|
+
|
|
298
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
299
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
300
|
+
msgid "Records & files"
|
|
301
|
+
msgstr "Záznamy & soubory"
|
|
302
|
+
|
|
303
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
305
|
+
msgid "Title"
|
|
306
|
+
msgstr "Název"
|
|
307
|
+
|
|
308
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
309
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
310
|
+
msgid "Owner"
|
|
311
|
+
msgstr "Vlastník"
|
|
312
|
+
|
|
313
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
315
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
317
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
318
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
319
|
+
msgid "Files"
|
|
320
|
+
msgstr "Soubory"
|
|
321
|
+
|
|
322
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
323
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
324
|
+
msgid "Stats"
|
|
325
|
+
msgstr "Statistiky"
|
|
326
|
+
|
|
327
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
328
|
+
msgid "Delete record"
|
|
329
|
+
msgstr "Smazat záznam"
|
|
330
|
+
|
|
331
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
332
|
+
msgid "Restore record"
|
|
333
|
+
msgstr "Obnovit záznam"
|
|
334
|
+
|
|
335
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
336
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
337
|
+
msgid "Drafts"
|
|
338
|
+
msgstr "Návrhy"
|
|
339
|
+
|
|
340
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
341
|
+
msgid "Set quota"
|
|
342
|
+
msgstr "Nastavit kvótu"
|
|
343
|
+
|
|
344
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
345
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
346
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
347
|
+
msgid "Moderation"
|
|
348
|
+
msgstr "Moderace"
|
|
349
|
+
|
|
350
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
351
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
352
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
353
|
+
msgid "User"
|
|
354
|
+
msgstr "Uživatel"
|
|
355
|
+
|
|
356
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
357
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
358
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
359
|
+
msgid "Email"
|
|
360
|
+
msgstr "E-mail"
|
|
361
|
+
|
|
362
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
363
|
+
msgid "Email domain"
|
|
364
|
+
msgstr "Doména e-mailu"
|
|
365
|
+
|
|
366
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
367
|
+
msgid "Activity"
|
|
368
|
+
msgstr "Aktivita"
|
|
369
|
+
|
|
370
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
371
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
372
|
+
msgid "Approve"
|
|
373
|
+
msgstr "Schválit"
|
|
374
|
+
|
|
375
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
376
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
377
|
+
msgid "Block"
|
|
378
|
+
msgstr "Blokovat"
|
|
379
|
+
|
|
380
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
381
|
+
msgid "User moderation"
|
|
382
|
+
msgstr "Schvalování uživatelů"
|
|
383
|
+
|
|
384
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
385
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
386
|
+
msgid "ID"
|
|
387
|
+
msgstr "ID"
|
|
388
|
+
|
|
389
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
390
|
+
msgid "Open"
|
|
391
|
+
msgstr "Otevřený"
|
|
392
|
+
|
|
393
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
394
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
395
|
+
msgid "Username"
|
|
396
|
+
msgstr "Uživatelské jméno"
|
|
397
|
+
|
|
398
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
399
|
+
msgid "Domain "
|
|
400
|
+
msgstr "Doména "
|
|
401
|
+
|
|
402
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
403
|
+
msgid "Visibility"
|
|
404
|
+
msgstr "Viditelnost"
|
|
405
|
+
|
|
406
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
407
|
+
msgid "Confirmed at"
|
|
408
|
+
msgstr "Potvrzen dne"
|
|
409
|
+
|
|
410
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
411
|
+
msgid "Verified at"
|
|
412
|
+
msgstr "Ověřen dne"
|
|
413
|
+
|
|
414
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
415
|
+
msgid "Blocked at"
|
|
416
|
+
msgstr "Blokován dne"
|
|
417
|
+
|
|
418
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
419
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
420
|
+
msgid "User management"
|
|
421
|
+
msgstr "Správa uživatelů"
|
|
422
|
+
|
|
423
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
424
|
+
msgid "Restore"
|
|
425
|
+
msgstr "Obnovit"
|
|
426
|
+
|
|
427
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
428
|
+
msgid "Suspend"
|
|
429
|
+
msgstr "Pozastavit"
|
|
430
|
+
|
|
431
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
432
|
+
msgid "User details"
|
|
433
|
+
msgstr "Detaily uživatele"
|
|
434
|
+
|
|
435
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
436
|
+
msgid "Search "
|
|
437
|
+
msgstr "Hledat "
|
|
438
|
+
|
|
439
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
440
|
+
msgid "New version"
|
|
441
|
+
msgstr "Nová verze"
|
|
442
|
+
|
|
443
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
104
444
|
msgid "Edit upload"
|
|
105
|
-
msgstr ""
|
|
445
|
+
msgstr "Upravit záznam"
|
|
106
446
|
|
|
107
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
447
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
108
448
|
msgid "Information banner"
|
|
109
|
-
msgstr ""
|
|
449
|
+
msgstr "Informační pruh"
|
|
110
450
|
|
|
111
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
451
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
112
452
|
msgid "Community visibility"
|
|
113
|
-
msgstr ""
|
|
453
|
+
msgstr "Viditelnost komunity"
|
|
114
454
|
|
|
115
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
455
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
116
456
|
msgid "The community is restricted to users with access."
|
|
117
|
-
msgstr ""
|
|
457
|
+
msgstr "Komunita je viditelná pouze svým členům."
|
|
118
458
|
|
|
119
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
459
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
120
460
|
msgid "Restricted"
|
|
121
|
-
msgstr "
|
|
461
|
+
msgstr "Omezený"
|
|
122
462
|
|
|
123
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
125
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
463
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
464
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
465
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
126
466
|
msgid "Preview"
|
|
127
|
-
msgstr ""
|
|
467
|
+
msgstr "Náhled"
|
|
128
468
|
|
|
129
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
469
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
130
470
|
msgid "You are previewing a published record."
|
|
131
|
-
msgstr ""
|
|
471
|
+
msgstr "Nahlížíte na publikovaný záznam."
|
|
132
472
|
|
|
133
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
473
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
134
474
|
msgid "You are previewing changes that have not yet been published."
|
|
135
|
-
msgstr ""
|
|
475
|
+
msgstr "Nahlížíte na změny, které ještě nebyly publikovány."
|
|
136
476
|
|
|
137
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
477
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
138
478
|
msgid "You are previewing a new record that has not yet been published."
|
|
139
|
-
msgstr ""
|
|
479
|
+
msgstr "Nahlížíte na nový záznam, který ještě nebyl publikován."
|
|
140
480
|
|
|
141
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
481
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
142
482
|
msgid ""
|
|
143
483
|
"You are previewing a new record version that has not yet been published."
|
|
144
|
-
msgstr ""
|
|
484
|
+
msgstr "Nahlížíte na novou verzi záznamu, která ještě nebyla publikována."
|
|
145
485
|
|
|
146
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
486
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
147
487
|
#, python-format
|
|
148
488
|
msgid ""
|
|
149
489
|
"\n"
|
|
150
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
490
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
491
|
+
" available.\n"
|
|
151
492
|
" "
|
|
152
493
|
msgstr ""
|
|
494
|
+
"\n"
|
|
495
|
+
" K dispozici je %(link_start)snovější verze%(link_end)s záznamu.\n"
|
|
496
|
+
" "
|
|
153
497
|
|
|
154
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
498
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
155
499
|
msgid "Record access information"
|
|
156
|
-
msgstr ""
|
|
500
|
+
msgstr "Přístupové informace k záznamu"
|
|
157
501
|
|
|
158
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
159
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
160
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
502
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
503
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
504
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
161
506
|
msgid "Reason"
|
|
162
|
-
msgstr ""
|
|
507
|
+
msgstr "Důvod"
|
|
163
508
|
|
|
164
|
-
#: 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:165
|
|
165
510
|
msgid "Back-navigation"
|
|
166
|
-
msgstr ""
|
|
511
|
+
msgstr "Navigace zpět"
|
|
167
512
|
|
|
168
|
-
#: 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:167
|
|
169
514
|
msgid "Back to edit"
|
|
170
|
-
msgstr ""
|
|
515
|
+
msgstr "Zpět na editaci"
|
|
171
516
|
|
|
172
|
-
#: 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:185
|
|
173
518
|
msgid "Manage record"
|
|
174
|
-
msgstr ""
|
|
519
|
+
msgstr "Spravovat záznam"
|
|
175
520
|
|
|
176
|
-
#: 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:201
|
|
177
522
|
msgid "Publication date and version number"
|
|
178
|
-
msgstr ""
|
|
523
|
+
msgstr "Datum publikace a číslo verze"
|
|
179
524
|
|
|
180
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
525
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
181
526
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
182
527
|
msgid "Publication date"
|
|
183
528
|
msgstr "Datum vydání"
|
|
184
529
|
|
|
185
|
-
#: 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:206
|
|
186
531
|
msgid "Published"
|
|
187
532
|
msgstr "Publikováno"
|
|
188
533
|
|
|
189
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
534
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
535
|
+
#, python-brace-format
|
|
190
536
|
msgid "Version {version_number}"
|
|
191
|
-
msgstr ""
|
|
537
|
+
msgstr "Verze {version_number}"
|
|
192
538
|
|
|
193
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
539
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
194
540
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
195
541
|
msgid "Resource type"
|
|
196
|
-
msgstr ""
|
|
542
|
+
msgstr "Typ zdroje"
|
|
197
543
|
|
|
198
|
-
#: 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:226
|
|
199
545
|
msgid "Access status"
|
|
200
|
-
msgstr ""
|
|
546
|
+
msgstr "Stav přístupu"
|
|
201
547
|
|
|
202
|
-
#: 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:248
|
|
203
549
|
msgid "Record title and creators"
|
|
204
|
-
msgstr ""
|
|
550
|
+
msgstr "Název záznamu a autoři"
|
|
205
551
|
|
|
206
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
552
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
207
553
|
msgid "Creators and contributors"
|
|
208
|
-
msgstr ""
|
|
554
|
+
msgstr "Autoři a přispěvatelé"
|
|
209
555
|
|
|
210
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
211
|
-
msgid "
|
|
556
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
557
|
+
msgid "Request access"
|
|
558
|
+
msgstr "Zažádat o přístup"
|
|
559
|
+
|
|
560
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
561
|
+
msgid ""
|
|
562
|
+
"If you would like to request access to these files, please fill out the form"
|
|
563
|
+
" below."
|
|
212
564
|
msgstr ""
|
|
565
|
+
"Pokud byste chtěli požádat o přístup k těmto souborům, vyplňte prosím níže "
|
|
566
|
+
"uvedený formulář."
|
|
213
567
|
|
|
214
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
msgstr "Soubory"
|
|
568
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
569
|
+
msgid ""
|
|
570
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
571
|
+
"accepted:"
|
|
572
|
+
msgstr "Pro přijetí této žádosti musíte splnit tyto podmínky:"
|
|
220
573
|
|
|
221
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
574
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
575
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
576
|
+
msgid "System files"
|
|
577
|
+
msgstr "Systémové soubory"
|
|
578
|
+
|
|
579
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
222
580
|
msgid "Additional record details"
|
|
223
|
-
msgstr ""
|
|
581
|
+
msgstr "Další detaily záznamu"
|
|
224
582
|
|
|
225
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
226
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
583
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
227
584
|
msgid "Record details"
|
|
228
|
-
msgstr ""
|
|
585
|
+
msgstr "Detaily záznamu"
|
|
229
586
|
|
|
230
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
231
|
-
msgid "
|
|
232
|
-
msgstr ""
|
|
587
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
588
|
+
msgid "Jump to top of page"
|
|
589
|
+
msgstr "Přejít na začátek stránky"
|
|
233
590
|
|
|
234
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
235
|
-
msgid "
|
|
236
|
-
msgstr ""
|
|
591
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
592
|
+
msgid "Jump up"
|
|
593
|
+
msgstr "Přejít nahoru"
|
|
237
594
|
|
|
238
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
239
|
-
|
|
240
|
-
|
|
595
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
596
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
597
|
+
msgid "Draft not found"
|
|
598
|
+
msgstr "Koncept nenalezen"
|
|
241
599
|
|
|
242
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
243
|
-
msgid "
|
|
600
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
601
|
+
msgid ""
|
|
602
|
+
"This record has already been published and is not currently being edited, so"
|
|
603
|
+
" no draft exists."
|
|
244
604
|
msgstr ""
|
|
605
|
+
"Tento záznam už byl publikován a v současné době není upravován, takže "
|
|
606
|
+
"koncept neexistuje."
|
|
245
607
|
|
|
246
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
247
|
-
msgid "
|
|
248
|
-
msgstr ""
|
|
608
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
609
|
+
msgid "Go to published record"
|
|
610
|
+
msgstr "Přejít na publikovaný záznam"
|
|
249
611
|
|
|
250
612
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
251
613
|
msgid "Back to details"
|
|
252
|
-
msgstr ""
|
|
614
|
+
msgstr "Zpět na detaily"
|
|
253
615
|
|
|
254
616
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
255
617
|
msgid "Preview for"
|
|
618
|
+
msgstr "Náhled na"
|
|
619
|
+
|
|
620
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
621
|
+
msgid "Permission required"
|
|
622
|
+
msgstr "Požaduje se oprávnění"
|
|
623
|
+
|
|
624
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
625
|
+
msgid ""
|
|
626
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
627
|
+
"users with access."
|
|
256
628
|
msgstr ""
|
|
629
|
+
"Tento záznam byl dříve veřejně dostupný, ale nyní je omezen pouze na "
|
|
630
|
+
"uživatele s explicitním přístupem."
|
|
631
|
+
|
|
632
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
633
|
+
msgid ""
|
|
634
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
635
|
+
"active for reference."
|
|
636
|
+
msgstr ""
|
|
637
|
+
"Digitální identifikátor objektu (DOI) spojený s tímto záznamem zůstává "
|
|
638
|
+
"aktivní pro odkazování."
|
|
639
|
+
|
|
640
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
641
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
642
|
+
msgid "Identifier:"
|
|
643
|
+
msgstr "Identifikátor:"
|
|
257
644
|
|
|
258
645
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
259
646
|
msgid "Search results"
|
|
260
|
-
msgstr ""
|
|
647
|
+
msgstr "Výsledky hledání"
|
|
261
648
|
|
|
262
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
649
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
263
650
|
msgid "Tombstone"
|
|
264
|
-
msgstr ""
|
|
651
|
+
msgstr "Náhrobní kámen"
|
|
652
|
+
|
|
653
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
654
|
+
msgid "Reason unknown"
|
|
655
|
+
msgstr "Důvod neznámý"
|
|
265
656
|
|
|
266
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
657
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
267
658
|
msgid "Gone"
|
|
268
|
-
msgstr ""
|
|
659
|
+
msgstr "Odstraněn(o)"
|
|
269
660
|
|
|
270
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
661
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
271
662
|
#, python-format
|
|
272
663
|
msgid ""
|
|
273
664
|
"\n"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
" "
|
|
665
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
666
|
+
" metadata of the record is kept for archival purposes."
|
|
277
667
|
msgstr ""
|
|
668
|
+
"\n"
|
|
669
|
+
" Záznam, ke kterému se snažíte získat přístup, byl odstraněn z %(sitename)s. \n"
|
|
670
|
+
" Metadata záznamu jsou uchovávána pro archivační účely."
|
|
278
671
|
|
|
279
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
672
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
280
673
|
msgid "Reason for removal:"
|
|
281
|
-
msgstr ""
|
|
674
|
+
msgstr "Důvod smazání:"
|
|
282
675
|
|
|
283
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
676
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
677
|
+
msgid "Removed by:"
|
|
678
|
+
msgstr "Odstranil:"
|
|
679
|
+
|
|
680
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
681
|
+
msgid "Removal note:"
|
|
682
|
+
msgstr "Poznámka k odstranění:"
|
|
683
|
+
|
|
684
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
685
|
+
msgid "Date of removal:"
|
|
686
|
+
msgstr "Datum odstranění:"
|
|
687
|
+
|
|
688
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
689
|
+
msgid "Citation:"
|
|
690
|
+
msgstr "Citace:"
|
|
691
|
+
|
|
692
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
693
|
+
msgid "You are currently not logged in"
|
|
694
|
+
msgstr "Momentálně nejste přihlášen(a)"
|
|
287
695
|
|
|
288
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
696
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
697
|
+
msgid "Do you have an account?"
|
|
698
|
+
msgstr "Máte svůj účet?"
|
|
699
|
+
|
|
700
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
701
|
+
msgid "Log in here"
|
|
702
|
+
msgstr "Přihlašte se zde"
|
|
703
|
+
|
|
704
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
705
|
+
msgid "You are logged in as"
|
|
706
|
+
msgstr "Jste přihlášen(a) jako"
|
|
707
|
+
|
|
708
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
709
|
+
msgid "Not you?"
|
|
710
|
+
msgstr "Nejste to Vy?"
|
|
711
|
+
|
|
712
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
713
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
714
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
715
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
716
|
+
msgid "Log out"
|
|
717
|
+
msgstr "Odhlásit se"
|
|
718
|
+
|
|
719
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
720
|
+
msgid "to switch account."
|
|
721
|
+
msgstr "přepnout účet"
|
|
722
|
+
|
|
723
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
724
|
+
msgid "Send message"
|
|
725
|
+
msgstr "Poslat zprávu"
|
|
726
|
+
|
|
727
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
728
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
289
729
|
msgid "Creators"
|
|
290
|
-
msgstr ""
|
|
730
|
+
msgstr "Autoři"
|
|
291
731
|
|
|
292
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
293
|
-
msgid "Contributors
|
|
294
|
-
msgstr ""
|
|
732
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
733
|
+
msgid "Contributors"
|
|
734
|
+
msgstr "Přispěvatelé"
|
|
295
735
|
|
|
296
736
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
297
737
|
msgid "Record description"
|
|
298
|
-
msgstr ""
|
|
738
|
+
msgstr "Popis záznamu"
|
|
299
739
|
|
|
300
740
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:15
|
|
301
741
|
msgid "Description"
|
|
302
742
|
msgstr "Popis"
|
|
303
743
|
|
|
304
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
744
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
305
745
|
msgid "Additional details"
|
|
306
|
-
msgstr "Další údaje
|
|
746
|
+
msgstr "Další údaje"
|
|
307
747
|
|
|
308
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
748
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
749
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
309
750
|
msgid "Additional titles"
|
|
310
|
-
msgstr ""
|
|
751
|
+
msgstr "Další názvy"
|
|
311
752
|
|
|
312
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
753
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
754
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
313
755
|
msgid "Identifiers"
|
|
314
|
-
msgstr ""
|
|
756
|
+
msgstr "Identifikátory"
|
|
315
757
|
|
|
316
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
758
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
759
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
317
760
|
msgid "Related works"
|
|
318
|
-
msgstr ""
|
|
761
|
+
msgstr "Související práce"
|
|
319
762
|
|
|
320
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
763
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
764
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
321
765
|
msgid "Funding"
|
|
322
|
-
msgstr ""
|
|
766
|
+
msgstr "Financování"
|
|
323
767
|
|
|
324
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
768
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
769
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
325
770
|
msgid "Dates"
|
|
326
|
-
msgstr ""
|
|
771
|
+
msgstr "Datace"
|
|
327
772
|
|
|
328
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
329
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
773
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
774
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
330
775
|
msgid "References"
|
|
331
776
|
msgstr "Zdroje"
|
|
332
777
|
|
|
333
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
334
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
335
|
-
msgid "
|
|
336
|
-
msgstr ""
|
|
337
|
-
|
|
338
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
778
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
779
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
780
|
+
msgid "Views"
|
|
781
|
+
msgstr "Zobrazení"
|
|
782
|
+
|
|
783
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
784
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
785
|
+
msgid "Downloads"
|
|
786
|
+
msgstr "Stažení"
|
|
787
|
+
|
|
788
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
789
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
790
|
+
msgid "Show more details"
|
|
791
|
+
msgstr "Zobrazit více detailů"
|
|
792
|
+
|
|
793
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
794
|
+
msgid "Show less details"
|
|
795
|
+
msgstr "Zobrazit méně detailů"
|
|
796
|
+
|
|
797
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
798
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
799
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
801
|
+
msgid "All versions"
|
|
802
|
+
msgstr "Všechny verze"
|
|
803
|
+
|
|
804
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
805
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
806
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
808
|
+
msgid "This version"
|
|
809
|
+
msgstr "Tato verze"
|
|
810
|
+
|
|
811
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
812
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
813
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
814
|
+
msgid "More info"
|
|
815
|
+
msgstr "Více informací"
|
|
816
|
+
|
|
817
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
818
|
+
msgid "Total views"
|
|
819
|
+
msgstr "Celkový počet zobrazení"
|
|
820
|
+
|
|
821
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
822
|
+
msgid "Total downloads"
|
|
823
|
+
msgstr "Celkový počet stažení"
|
|
824
|
+
|
|
825
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
826
|
+
msgid "Data volume"
|
|
827
|
+
msgstr "Objem dat"
|
|
828
|
+
|
|
829
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
830
|
+
msgid "Total data volume"
|
|
831
|
+
msgstr "Celkový objem dat"
|
|
832
|
+
|
|
833
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
834
|
+
msgid "More info on how stats are collected."
|
|
835
|
+
msgstr "Více informací o tom, jak jsou statistiky sbírány."
|
|
345
836
|
|
|
346
837
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
347
838
|
msgid "Keywords"
|
|
348
839
|
msgstr "Klíčová slova"
|
|
349
840
|
|
|
350
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
351
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
841
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
842
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
352
843
|
msgid "Search results for "
|
|
353
|
-
msgstr ""
|
|
844
|
+
msgstr "Výsledky hledání pro "
|
|
845
|
+
|
|
846
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
847
|
+
msgid "Citation"
|
|
848
|
+
msgstr "Citace"
|
|
354
849
|
|
|
355
850
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
356
851
|
msgid "Details"
|
|
357
|
-
msgstr ""
|
|
852
|
+
msgstr "Detaily"
|
|
358
853
|
|
|
359
854
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:26
|
|
360
855
|
msgid "Publisher"
|
|
361
|
-
msgstr "
|
|
856
|
+
msgstr "Vydavatel"
|
|
362
857
|
|
|
363
858
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
364
|
-
msgid "
|
|
365
|
-
msgstr ""
|
|
859
|
+
msgid "Published in"
|
|
860
|
+
msgstr "Publikováno v"
|
|
366
861
|
|
|
367
862
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
368
|
-
msgid "
|
|
369
|
-
msgstr ""
|
|
863
|
+
msgid "Imprint"
|
|
864
|
+
msgstr "Vydavatelské údaje"
|
|
370
865
|
|
|
371
866
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
867
|
+
msgid "Awarding university"
|
|
868
|
+
msgstr "Udělující univerzita"
|
|
869
|
+
|
|
870
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
871
|
+
msgid "Conference"
|
|
872
|
+
msgstr "Konference"
|
|
873
|
+
|
|
874
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
875
|
+
msgid "Languages"
|
|
876
|
+
msgstr "Jazyky"
|
|
877
|
+
|
|
878
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
879
|
+
msgid "Formats"
|
|
880
|
+
msgstr "Formáty"
|
|
881
|
+
|
|
882
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
372
883
|
msgid "Sizes"
|
|
373
|
-
msgstr ""
|
|
884
|
+
msgstr "Velikosti"
|
|
374
885
|
|
|
375
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
376
886
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
377
887
|
msgid "Export"
|
|
378
888
|
msgstr "Export"
|
|
379
889
|
|
|
380
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
890
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
891
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
892
|
+
msgid "External resources"
|
|
893
|
+
msgstr "Externí zdroje"
|
|
894
|
+
|
|
381
895
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
896
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
382
897
|
msgid "Keywords and subjects"
|
|
383
|
-
msgstr ""
|
|
384
|
-
|
|
385
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
387
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
388
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
389
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
898
|
+
msgstr "Klíčová slova a předmětová hesla"
|
|
899
|
+
|
|
900
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
901
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
902
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
903
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
904
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
905
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
390
906
|
msgid "Opens in new tab"
|
|
391
|
-
msgstr ""
|
|
907
|
+
msgstr "Otevře se v nové záložce"
|
|
908
|
+
|
|
909
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
910
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
911
|
+
msgid "Read more"
|
|
912
|
+
msgstr "Čtěte více"
|
|
392
913
|
|
|
393
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
394
914
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
395
915
|
msgid "Rights"
|
|
396
|
-
msgstr ""
|
|
916
|
+
msgstr "Práva"
|
|
397
917
|
|
|
398
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
918
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
399
919
|
msgid "Close"
|
|
400
920
|
msgstr "Zavřít"
|
|
401
921
|
|
|
402
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
922
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
403
923
|
msgid "No further description."
|
|
404
|
-
msgstr ""
|
|
924
|
+
msgstr "Žádný další popis."
|
|
925
|
+
|
|
926
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
927
|
+
msgid "Geographic locations"
|
|
928
|
+
msgstr "Geografické lokace"
|
|
405
929
|
|
|
406
930
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
407
931
|
msgid "Record management"
|
|
408
|
-
msgstr ""
|
|
932
|
+
msgstr "Správa záznamu"
|
|
409
933
|
|
|
410
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
411
|
-
msgid "
|
|
412
|
-
msgstr ""
|
|
934
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
935
|
+
msgid "Metrics"
|
|
936
|
+
msgstr "Metriky"
|
|
937
|
+
|
|
938
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
939
|
+
msgid "Upload information"
|
|
940
|
+
msgstr "Informace k nahranému záznamu"
|
|
941
|
+
|
|
942
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
943
|
+
msgid "Technical metadata"
|
|
944
|
+
msgstr "Technická metadata"
|
|
945
|
+
|
|
946
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
947
|
+
msgid "Modified"
|
|
948
|
+
msgstr "Upraveno"
|
|
413
949
|
|
|
414
950
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
415
951
|
msgid "Versions"
|
|
416
|
-
msgstr ""
|
|
952
|
+
msgstr "Verze"
|
|
417
953
|
|
|
418
954
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:17
|
|
419
955
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:22
|
|
@@ -421,314 +957,442 @@ msgstr ""
|
|
|
421
957
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:88
|
|
422
958
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:89
|
|
423
959
|
msgid "profile"
|
|
424
|
-
msgstr ""
|
|
960
|
+
msgstr "profil"
|
|
425
961
|
|
|
426
962
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
427
963
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
428
964
|
msgid "Show affiliations"
|
|
429
|
-
msgstr ""
|
|
965
|
+
msgstr "Zobrazit afiliace"
|
|
430
966
|
|
|
431
967
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
432
968
|
msgid "Hide affiliations"
|
|
433
|
-
msgstr ""
|
|
969
|
+
msgstr "Schovat afiliace"
|
|
434
970
|
|
|
435
971
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:79
|
|
436
972
|
msgid "Affiliations for"
|
|
437
|
-
msgstr ""
|
|
973
|
+
msgstr "Afiliace pro"
|
|
438
974
|
|
|
439
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
975
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
440
976
|
msgid "Open external link"
|
|
441
|
-
msgstr ""
|
|
977
|
+
msgstr "Otevřít externí odkaz"
|
|
978
|
+
|
|
979
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
980
|
+
msgid "Conference website"
|
|
981
|
+
msgstr "Webové stránky konference"
|
|
442
982
|
|
|
443
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
983
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
984
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
985
|
+
msgid "DOI"
|
|
986
|
+
msgstr "DOI"
|
|
987
|
+
|
|
988
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
989
|
+
msgid "Get the DOI badge!"
|
|
990
|
+
msgstr "Získat odznak DOI!"
|
|
991
|
+
|
|
992
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
993
|
+
msgid "DOI Badge"
|
|
994
|
+
msgstr "DOI odznak"
|
|
995
|
+
|
|
996
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
444
997
|
msgid "File preview"
|
|
445
|
-
msgstr ""
|
|
998
|
+
msgstr "Náhled souborů"
|
|
446
999
|
|
|
447
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1000
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
448
1001
|
msgid "Name"
|
|
449
|
-
msgstr "
|
|
1002
|
+
msgstr "Jméno"
|
|
450
1003
|
|
|
451
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1004
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
452
1005
|
msgid "Size"
|
|
453
1006
|
msgstr "Velikost"
|
|
454
1007
|
|
|
455
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
msgstr "Akce"
|
|
1008
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1009
|
+
msgid "Download all"
|
|
1010
|
+
msgstr "Stáhnout vše"
|
|
459
1011
|
|
|
460
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1012
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
461
1013
|
msgid ""
|
|
462
1014
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
463
1015
|
"file integrity."
|
|
464
1016
|
msgstr ""
|
|
1017
|
+
"Toto je kontrolní součet souboru, který lze použít pro verifikaci "
|
|
1018
|
+
"konzistence souboru."
|
|
465
1019
|
|
|
466
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1020
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
467
1021
|
msgid "Download"
|
|
468
1022
|
msgstr "Stáhnout"
|
|
469
1023
|
|
|
470
|
-
#: invenio_app_rdm/records_ui/
|
|
471
|
-
msgid "
|
|
472
|
-
msgstr ""
|
|
1024
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1025
|
+
msgid "Unknown"
|
|
1026
|
+
msgstr "Neznámý"
|
|
473
1027
|
|
|
474
|
-
#: invenio_app_rdm/records_ui/
|
|
475
|
-
msgid "
|
|
476
|
-
msgstr ""
|
|
1028
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1029
|
+
msgid "See the full number"
|
|
1030
|
+
msgstr "Zobrazit celkový počet"
|
|
477
1031
|
|
|
478
|
-
#: invenio_app_rdm/records_ui/
|
|
1032
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1033
|
+
msgid "Version"
|
|
1034
|
+
msgstr "Verze"
|
|
1035
|
+
|
|
1036
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1037
|
+
msgid "No DOI available"
|
|
1038
|
+
msgstr "DOI není k dispozici"
|
|
1039
|
+
|
|
1040
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1041
|
+
#, python-format
|
|
1042
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1043
|
+
msgstr "Zrušit rezervaci %(scheme_label)s"
|
|
1044
|
+
|
|
1045
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1046
|
+
#, python-format
|
|
1047
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1048
|
+
msgstr "Získejte %(scheme_label)s nyní!"
|
|
1049
|
+
|
|
1050
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1051
|
+
#, python-format
|
|
479
1052
|
msgid ""
|
|
480
|
-
"Reserve a
|
|
481
|
-
"files prior to upload). The
|
|
482
|
-
" published."
|
|
1053
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1054
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1055
|
+
"is published."
|
|
483
1056
|
msgstr ""
|
|
1057
|
+
"Rezervujte si %(scheme_label)s stisknutím tlačítka (aby mohl být zahrnut do "
|
|
1058
|
+
"souborů před nahráním). %(scheme_label)s bude zaregistrován při publikaci."
|
|
484
1059
|
|
|
485
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1060
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1061
|
+
#, python-format
|
|
486
1062
|
msgid ""
|
|
487
|
-
"A
|
|
1063
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
488
1064
|
"Example: 10.1234/foo.bar"
|
|
489
1065
|
msgstr ""
|
|
1066
|
+
"%(scheme_label)s umožňuje snadné a jednoznačné citování Vaší nahrávky. "
|
|
1067
|
+
"Příklad: 10.1234/foo.bar"
|
|
1068
|
+
|
|
1069
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1070
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1071
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1072
|
+
msgid "All"
|
|
1073
|
+
msgstr "Vše"
|
|
490
1074
|
|
|
491
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:
|
|
1075
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
492
1076
|
msgid "Back to invitations"
|
|
493
|
-
msgstr ""
|
|
1077
|
+
msgstr "Zpět na pozvánky"
|
|
494
1078
|
|
|
495
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
496
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1080
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1081
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1082
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
497
1083
|
msgid "Back to requests"
|
|
498
|
-
msgstr ""
|
|
1084
|
+
msgstr "Zpět na žádosti"
|
|
499
1085
|
|
|
500
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1086
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
501
1087
|
msgid "Conversation"
|
|
502
|
-
msgstr ""
|
|
1088
|
+
msgstr "Konverzace"
|
|
503
1089
|
|
|
504
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1090
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
505
1091
|
msgid "Record"
|
|
506
1092
|
msgstr "Záznam"
|
|
507
1093
|
|
|
508
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1094
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1095
|
+
msgid "Access request"
|
|
1096
|
+
msgstr "Žádost o přístup"
|
|
1097
|
+
|
|
1098
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
509
1099
|
msgid "View Community"
|
|
510
|
-
msgstr ""
|
|
1100
|
+
msgstr "Zobrazit komunitu"
|
|
511
1101
|
|
|
512
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1102
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
513
1103
|
msgid "View record"
|
|
514
|
-
msgstr ""
|
|
1104
|
+
msgstr "Zobrazit záznam"
|
|
515
1105
|
|
|
516
|
-
#: invenio_app_rdm/theme/views.py:
|
|
517
|
-
msgid "
|
|
518
|
-
msgstr ""
|
|
1106
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1107
|
+
msgid "Notification preferences were updated."
|
|
1108
|
+
msgstr "Nastavení upozornění bylo aktualizováno."
|
|
519
1109
|
|
|
520
1110
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
521
1111
|
msgid "About InvenioRDM"
|
|
522
|
-
msgstr ""
|
|
1112
|
+
msgstr "O InvenioRDM"
|
|
523
1113
|
|
|
524
1114
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
"
|
|
530
|
-
msgstr ""
|
|
1115
|
+
msgid "Product page"
|
|
1116
|
+
msgstr "Produktová stránka"
|
|
1117
|
+
|
|
1118
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1119
|
+
msgid "Features"
|
|
1120
|
+
msgstr "Funkce"
|
|
1121
|
+
|
|
1122
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1123
|
+
msgid "Roadmap"
|
|
1124
|
+
msgstr "Plán vývoje"
|
|
531
1125
|
|
|
532
1126
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
"\n"
|
|
536
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
537
|
-
" "
|
|
538
|
-
msgstr ""
|
|
1127
|
+
msgid "Demo site"
|
|
1128
|
+
msgstr "Demo stránka"
|
|
539
1129
|
|
|
540
1130
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
"
|
|
546
|
-
msgstr ""
|
|
1131
|
+
msgid "Get involved"
|
|
1132
|
+
msgstr "Zapojit se do vývoje"
|
|
1133
|
+
|
|
1134
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1135
|
+
msgid "GitHub"
|
|
1136
|
+
msgstr "GitHub"
|
|
1137
|
+
|
|
1138
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1139
|
+
msgid "Project Milestones"
|
|
1140
|
+
msgstr "Milníky projektu"
|
|
547
1141
|
|
|
548
1142
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
"
|
|
554
|
-
msgstr ""
|
|
1143
|
+
msgid "Documentation"
|
|
1144
|
+
msgstr "Dokumentace"
|
|
1145
|
+
|
|
1146
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
1147
|
+
msgid "Community"
|
|
1148
|
+
msgstr "Komunita"
|
|
1149
|
+
|
|
1150
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1151
|
+
msgid "Chatroom"
|
|
1152
|
+
msgstr "Chatovací místnost"
|
|
555
1153
|
|
|
556
1154
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
557
|
-
msgid "
|
|
558
|
-
msgstr ""
|
|
1155
|
+
msgid "Forum"
|
|
1156
|
+
msgstr "Fórum"
|
|
559
1157
|
|
|
560
1158
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
"\n"
|
|
564
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
565
|
-
" "
|
|
566
|
-
msgstr ""
|
|
1159
|
+
msgid "Events & training"
|
|
1160
|
+
msgstr "Události & školení"
|
|
567
1161
|
|
|
568
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"\n"
|
|
572
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
573
|
-
" "
|
|
574
|
-
msgstr ""
|
|
1162
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1163
|
+
msgid "Impersonated session"
|
|
1164
|
+
msgstr "Impersonovaná relace"
|
|
575
1165
|
|
|
576
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
"\n"
|
|
580
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
581
|
-
" "
|
|
582
|
-
msgstr ""
|
|
1166
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1167
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
1168
|
+
msgstr "Po dokončení dotazu se musíte odhlásit!"
|
|
583
1169
|
|
|
584
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
585
|
-
|
|
586
|
-
|
|
1170
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1171
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1172
|
+
msgid "home"
|
|
1173
|
+
msgstr "domů"
|
|
587
1174
|
|
|
588
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
589
|
-
|
|
590
|
-
msgid ""
|
|
591
|
-
"
|
|
592
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
593
|
-
" "
|
|
594
|
-
msgstr ""
|
|
1175
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1176
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1177
|
+
msgid "Menu"
|
|
1178
|
+
msgstr "Menu"
|
|
595
1179
|
|
|
596
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
597
|
-
|
|
598
|
-
msgid ""
|
|
599
|
-
"
|
|
600
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
601
|
-
" "
|
|
602
|
-
msgstr ""
|
|
1180
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1181
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1182
|
+
msgid "Close menu"
|
|
1183
|
+
msgstr "Zavřít menu"
|
|
603
1184
|
|
|
604
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
605
|
-
|
|
606
|
-
msgid ""
|
|
607
|
-
"
|
|
608
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
609
|
-
" "
|
|
610
|
-
msgstr ""
|
|
1185
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1186
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1187
|
+
msgid "Inbox"
|
|
1188
|
+
msgstr "Příchozí schránka"
|
|
611
1189
|
|
|
612
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
613
|
-
|
|
614
|
-
msgid ""
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
1190
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1191
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1192
|
+
msgid "Search"
|
|
1193
|
+
msgstr "Hledat"
|
|
1194
|
+
|
|
1195
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1196
|
+
msgid "Log in"
|
|
1197
|
+
msgstr "Přihlásit se"
|
|
618
1198
|
|
|
619
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1199
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1200
|
+
msgid "Sign up"
|
|
1201
|
+
msgstr "Zaregistrovat se"
|
|
1202
|
+
|
|
1203
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1204
|
+
msgid "Quick create"
|
|
1205
|
+
msgstr "Rychlé vytvoření"
|
|
1206
|
+
|
|
1207
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1208
|
+
msgid "Actions"
|
|
1209
|
+
msgstr "Akce"
|
|
1210
|
+
|
|
1211
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1212
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1213
|
+
msgid "My account"
|
|
1214
|
+
msgstr "Můj účet"
|
|
1215
|
+
|
|
1216
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
620
1217
|
msgid "You've successfully installed InvenioRDM!"
|
|
621
|
-
msgstr ""
|
|
1218
|
+
msgstr "Úspěšně jste nainstalovali systém InvenioRDM!"
|
|
622
1219
|
|
|
623
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1220
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
624
1221
|
msgid "What is ahead?"
|
|
625
|
-
msgstr ""
|
|
1222
|
+
msgstr "Co nás čeká?"
|
|
626
1223
|
|
|
627
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1224
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
628
1225
|
msgid "Configure"
|
|
629
|
-
msgstr ""
|
|
1226
|
+
msgstr "Konfigurovat"
|
|
630
1227
|
|
|
631
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
632
|
-
#, python-format
|
|
1228
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
633
1229
|
msgid ""
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
637
|
-
" section in the docs</a>.\n"
|
|
638
|
-
" "
|
|
1230
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1231
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
639
1232
|
msgstr ""
|
|
1233
|
+
"Nakonfigurujte datový model, typy zdrojů, oprávnění a další možnosti podle "
|
|
1234
|
+
"svých potřeb. Více informací naleznete v"
|
|
1235
|
+
|
|
1236
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1237
|
+
msgid "configuration section in the docs"
|
|
1238
|
+
msgstr "konfigurační sekci v dokumentaci"
|
|
640
1239
|
|
|
641
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1240
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
642
1241
|
msgid "Customize"
|
|
643
|
-
msgstr ""
|
|
1242
|
+
msgstr "Přizpůsobit"
|
|
644
1243
|
|
|
645
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
646
|
-
#, python-format
|
|
1244
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
647
1245
|
msgid ""
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
651
|
-
" "
|
|
1246
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1247
|
+
"how to do so"
|
|
652
1248
|
msgstr ""
|
|
1249
|
+
"Přizpůsobte rozvržení a styl tak, aby odpovídaly Vaší instituci. Zjistěte, "
|
|
1250
|
+
"jak na to"
|
|
1251
|
+
|
|
1252
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1253
|
+
msgid "here"
|
|
1254
|
+
msgstr "zde"
|
|
653
1255
|
|
|
654
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1256
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
655
1257
|
msgid "Run it!"
|
|
656
|
-
msgstr ""
|
|
1258
|
+
msgstr "Spustit repozitář!"
|
|
657
1259
|
|
|
658
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
"
|
|
665
|
-
msgstr ""
|
|
1260
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1261
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
1262
|
+
msgstr "Spusťte svou instanci InvenioRDM lokálně nebo v kontejnerech."
|
|
1263
|
+
|
|
1264
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1265
|
+
msgid "Run"
|
|
1266
|
+
msgstr "Spusť"
|
|
666
1267
|
|
|
667
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1268
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
668
1269
|
msgid "Docs"
|
|
669
|
-
msgstr ""
|
|
1270
|
+
msgstr "Dokumentace"
|
|
670
1271
|
|
|
671
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1272
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
672
1273
|
msgid "Code"
|
|
673
1274
|
msgstr "Kód"
|
|
674
1275
|
|
|
675
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
676
|
-
msgid "
|
|
677
|
-
msgstr "
|
|
1276
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1277
|
+
msgid "To disable this section, add"
|
|
1278
|
+
msgstr "Pro vypnutí této sekce přidejte"
|
|
678
1279
|
|
|
679
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
680
|
-
msgid "
|
|
681
|
-
msgstr ""
|
|
1280
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1281
|
+
msgid "to your invenio.cfg file."
|
|
1282
|
+
msgstr "do Vašeho souboru invenio.cfg."
|
|
682
1283
|
|
|
683
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
msgid "Requests"
|
|
687
|
-
msgstr "Žádosti"
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1285
|
+
msgid "In this community"
|
|
1286
|
+
msgstr "V této komunitě"
|
|
688
1287
|
|
|
689
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
690
|
-
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1289
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1290
|
+
msgid "Search records"
|
|
1291
|
+
msgstr "Hledat záznamy"
|
|
1292
|
+
|
|
1293
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1294
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1295
|
+
msgid "Powered by"
|
|
1296
|
+
msgstr "Založeno na systému"
|
|
1297
|
+
|
|
1298
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1299
|
+
msgid ""
|
|
1300
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1301
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
691
1302
|
msgstr ""
|
|
1303
|
+
"Následující soubory byly označeny jako 'nezdravé'. To znamená, že kontrola "
|
|
1304
|
+
"kontrolního součtu selhala, nebo vypršel časový limit. Pokud je potřeba, "
|
|
1305
|
+
"podnikněte odpovídající kroky."
|
|
692
1306
|
|
|
693
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
694
|
-
|
|
695
|
-
|
|
1307
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1308
|
+
#, python-format
|
|
1309
|
+
msgid "ID: %s"
|
|
1310
|
+
msgstr "ID: %s"
|
|
696
1311
|
|
|
697
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
698
|
-
|
|
699
|
-
|
|
1312
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1313
|
+
#, python-format
|
|
1314
|
+
msgid "URI: %s"
|
|
1315
|
+
msgstr "URI: %s"
|
|
700
1316
|
|
|
701
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
702
|
-
|
|
703
|
-
msgid "
|
|
704
|
-
msgstr ""
|
|
1317
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1318
|
+
#, python-format
|
|
1319
|
+
msgid "Name: %s"
|
|
1320
|
+
msgstr "Název: %s"
|
|
705
1321
|
|
|
706
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
msgstr "Odhlásit se"
|
|
1322
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1323
|
+
#, python-format
|
|
1324
|
+
msgid "Created: %s"
|
|
1325
|
+
msgstr "Vytvořeno: %s"
|
|
711
1326
|
|
|
712
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
713
|
-
|
|
714
|
-
|
|
1327
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1328
|
+
#, python-format
|
|
1329
|
+
msgid "Checksum: %s"
|
|
1330
|
+
msgstr "Kontrolní součet: %s"
|
|
715
1331
|
|
|
716
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
717
|
-
|
|
718
|
-
msgid "
|
|
719
|
-
msgstr "
|
|
1332
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1333
|
+
#, python-format
|
|
1334
|
+
msgid "Last check date: %s"
|
|
1335
|
+
msgstr "Datum poslední kontroly: %s"
|
|
1336
|
+
|
|
1337
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1338
|
+
#, python-format
|
|
1339
|
+
msgid "Last check FAILED with result: %s"
|
|
1340
|
+
msgstr "Poslední kontrola SELHALA s výsledkem: %s"
|
|
1341
|
+
|
|
1342
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1343
|
+
#, python-format
|
|
1344
|
+
msgid "Record: %s/records/%s"
|
|
1345
|
+
msgstr "Záznam: %s/záznamy/%s"
|
|
1346
|
+
|
|
1347
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1348
|
+
#, python-format
|
|
1349
|
+
msgid "Draft: %s/uploads/%s"
|
|
1350
|
+
msgstr "Návrh: %s/nahrávky/%s"
|
|
720
1351
|
|
|
721
1352
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
722
1353
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1354
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
723
1355
|
msgid "Search guide"
|
|
724
|
-
msgstr ""
|
|
1356
|
+
msgstr "Průvodce vyhledáváním"
|
|
725
1357
|
|
|
726
|
-
#: invenio_app_rdm/
|
|
727
|
-
#: invenio_app_rdm/
|
|
728
|
-
msgid "
|
|
729
|
-
msgstr "
|
|
1358
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1359
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1360
|
+
msgid "FAQ statistics"
|
|
1361
|
+
msgstr "statistiky FAQ"
|
|
730
1362
|
|
|
731
|
-
#: invenio_app_rdm/
|
|
732
|
-
#: invenio_app_rdm/
|
|
733
|
-
msgid "
|
|
734
|
-
msgstr ""
|
|
1363
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1364
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1365
|
+
msgid "FAQ versioning"
|
|
1366
|
+
msgstr "verzování FAQ"
|
|
1367
|
+
|
|
1368
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1369
|
+
msgid "Recent uploads"
|
|
1370
|
+
msgstr "Nedávná nahrání"
|
|
1371
|
+
|
|
1372
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1373
|
+
msgid "Verified community"
|
|
1374
|
+
msgstr "Ověřená komunita"
|
|
1375
|
+
|
|
1376
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1377
|
+
msgid "Privacy policy"
|
|
1378
|
+
msgstr "Zásady ochrany osobních údajů"
|
|
1379
|
+
|
|
1380
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1381
|
+
msgid "Terms of use"
|
|
1382
|
+
msgstr "Podmínky užití"
|
|
1383
|
+
|
|
1384
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1385
|
+
msgid "Support"
|
|
1386
|
+
msgstr "Podpora"
|
|
1387
|
+
|
|
1388
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1389
|
+
msgid "Your dashboard"
|
|
1390
|
+
msgstr "Váš přehled"
|
|
1391
|
+
|
|
1392
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1393
|
+
msgid "Anonymous user"
|
|
1394
|
+
msgstr "Anonymní uživatel"
|
|
1395
|
+
|
|
1396
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1397
|
+
msgid "New community"
|
|
1398
|
+
msgstr "Nová komunita"
|