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,314 +1,747 @@
|
|
|
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
|
-
# Alexander Gruber <alexander.gruber@tugraz.at>, 2022
|
|
9
|
-
# David Eckhard <dabombeeer@gmail.com>, 2022
|
|
10
|
-
# Alizee Pace <alizee.pace@gmail.com>, 2022
|
|
11
8
|
# Mojib Wali <mojib.wali@tugraz.at>, 2022
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
#
|
|
9
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2024
|
|
10
|
+
# David Eckhard <dabombeeer@gmail.com>, 2024
|
|
11
|
+
# c960a0736ea0fb7507bb1c3555e7d33f_88b575f <3cef15c38ce2563e884ec389656c9161_1006830>, 2024
|
|
12
|
+
# Hermann Schranzhofer <hermann.schranzhofer@tugraz.at>, 2024
|
|
13
|
+
# Frank Berkemeier, 2024
|
|
14
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
15
|
+
# Alexander Gruber <alexander.gruber@tugraz.at>, 2025
|
|
16
|
+
# Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2025
|
|
17
|
+
# Sarah Wiechers, 2025
|
|
18
|
+
# Adienne Karsten-Welker, 2025
|
|
16
19
|
#
|
|
17
20
|
#, fuzzy
|
|
18
21
|
msgid ""
|
|
19
22
|
msgstr ""
|
|
20
|
-
"Project-Id-Version: invenio-app-rdm
|
|
23
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
21
24
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
22
|
-
"POT-Creation-Date:
|
|
25
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
23
26
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
24
|
-
"Last-Translator:
|
|
27
|
+
"Last-Translator: Adienne Karsten-Welker, 2025\n"
|
|
25
28
|
"Language-Team: German (https://app.transifex.com/inveniosoftware/teams/23537/de/)\n"
|
|
26
29
|
"MIME-Version: 1.0\n"
|
|
27
30
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
28
31
|
"Content-Transfer-Encoding: 8bit\n"
|
|
29
|
-
"Generated-By: Babel 2.
|
|
32
|
+
"Generated-By: Babel 2.17.0\n"
|
|
30
33
|
"Language: de\n"
|
|
31
34
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
32
35
|
|
|
33
|
-
#: invenio_app_rdm/config.py:
|
|
36
|
+
#: invenio_app_rdm/config.py:219
|
|
34
37
|
msgid "The turn-key research data management repository"
|
|
35
|
-
msgstr "Das
|
|
38
|
+
msgstr "Das schlüsselfertige Forschungsdaten-Repositorium"
|
|
36
39
|
|
|
37
|
-
#: invenio_app_rdm/config.py:
|
|
40
|
+
#: invenio_app_rdm/config.py:258
|
|
41
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
38
42
|
msgid "InvenioRDM"
|
|
39
43
|
msgstr "InvenioRDM"
|
|
40
44
|
|
|
41
|
-
#: invenio_app_rdm/config.py:
|
|
45
|
+
#: invenio_app_rdm/config.py:353
|
|
42
46
|
msgid "Welcome to Invenio App RDM!"
|
|
43
47
|
msgstr "Willkommen bei der Invenio App RDM!"
|
|
44
48
|
|
|
45
|
-
#: invenio_app_rdm/config.py:
|
|
49
|
+
#: invenio_app_rdm/config.py:750
|
|
46
50
|
msgid "JSON"
|
|
47
51
|
msgstr "JSON"
|
|
48
52
|
|
|
49
|
-
#: invenio_app_rdm/config.py:
|
|
53
|
+
#: invenio_app_rdm/config.py:757
|
|
54
|
+
msgid "JSON-LD"
|
|
55
|
+
msgstr "JSON-LD"
|
|
56
|
+
|
|
57
|
+
#: invenio_app_rdm/config.py:765
|
|
50
58
|
msgid "CSL"
|
|
51
59
|
msgstr "CSL"
|
|
52
60
|
|
|
53
|
-
#: invenio_app_rdm/config.py:
|
|
61
|
+
#: invenio_app_rdm/config.py:772
|
|
54
62
|
msgid "DataCite JSON"
|
|
55
63
|
msgstr "DataCite JSON"
|
|
56
64
|
|
|
57
|
-
#: invenio_app_rdm/config.py:
|
|
65
|
+
#: invenio_app_rdm/config.py:781
|
|
58
66
|
msgid "DataCite XML"
|
|
59
67
|
msgstr "DataCite XML"
|
|
60
68
|
|
|
61
|
-
#: invenio_app_rdm/config.py:
|
|
69
|
+
#: invenio_app_rdm/config.py:790
|
|
62
70
|
msgid "Dublin Core XML"
|
|
63
71
|
msgstr "Dublin Core XML"
|
|
64
72
|
|
|
65
|
-
#: invenio_app_rdm/config.py:
|
|
73
|
+
#: invenio_app_rdm/config.py:799
|
|
74
|
+
msgid "MARCXML"
|
|
75
|
+
msgstr "MARCXML"
|
|
76
|
+
|
|
77
|
+
#: invenio_app_rdm/config.py:806
|
|
78
|
+
msgid "BibTeX"
|
|
79
|
+
msgstr "BibTeX"
|
|
80
|
+
|
|
81
|
+
#: invenio_app_rdm/config.py:813
|
|
82
|
+
msgid "GeoJSON"
|
|
83
|
+
msgstr "GeoJSON"
|
|
84
|
+
|
|
85
|
+
#: invenio_app_rdm/config.py:820
|
|
86
|
+
msgid "DCAT"
|
|
87
|
+
msgstr "DCAT"
|
|
88
|
+
|
|
89
|
+
#: invenio_app_rdm/config.py:827
|
|
90
|
+
msgid "Codemeta"
|
|
91
|
+
msgstr "Codemeta"
|
|
92
|
+
|
|
93
|
+
#: invenio_app_rdm/config.py:834
|
|
94
|
+
msgid "Citation File Format"
|
|
95
|
+
msgstr "Format der Zitations-Datei"
|
|
96
|
+
|
|
97
|
+
#: invenio_app_rdm/config.py:996
|
|
66
98
|
msgid "APA"
|
|
67
99
|
msgstr "APA"
|
|
68
100
|
|
|
69
|
-
#: invenio_app_rdm/config.py:
|
|
101
|
+
#: invenio_app_rdm/config.py:997
|
|
70
102
|
msgid "Harvard"
|
|
71
103
|
msgstr "Harvard"
|
|
72
104
|
|
|
73
|
-
#: invenio_app_rdm/config.py:
|
|
105
|
+
#: invenio_app_rdm/config.py:998
|
|
74
106
|
msgid "MLA"
|
|
75
107
|
msgstr "MLA"
|
|
76
108
|
|
|
77
|
-
#: invenio_app_rdm/config.py:
|
|
109
|
+
#: invenio_app_rdm/config.py:999
|
|
78
110
|
msgid "Vancouver"
|
|
79
111
|
msgstr "Vancouver"
|
|
80
112
|
|
|
81
|
-
#: invenio_app_rdm/config.py:
|
|
113
|
+
#: invenio_app_rdm/config.py:1000
|
|
82
114
|
msgid "Chicago"
|
|
83
115
|
msgstr "Chicago"
|
|
84
116
|
|
|
85
|
-
#: invenio_app_rdm/config.py:
|
|
117
|
+
#: invenio_app_rdm/config.py:1001
|
|
86
118
|
msgid "IEEE"
|
|
87
119
|
msgstr "IEEE"
|
|
88
120
|
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
msgid "
|
|
91
|
-
msgstr "
|
|
121
|
+
#: invenio_app_rdm/ext.py:57
|
|
122
|
+
msgid "My dashboard"
|
|
123
|
+
msgstr "Meine Übersicht"
|
|
92
124
|
|
|
93
|
-
#: invenio_app_rdm/
|
|
94
|
-
#: invenio_app_rdm/
|
|
95
|
-
#: invenio_app_rdm/
|
|
96
|
-
msgid "
|
|
125
|
+
#: invenio_app_rdm/ext.py:63
|
|
126
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
127
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
128
|
+
msgid "New upload"
|
|
129
|
+
msgstr "Neuer Eintrag"
|
|
130
|
+
|
|
131
|
+
#: invenio_app_rdm/ext.py:77
|
|
132
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
133
|
+
msgid "Uploads"
|
|
134
|
+
msgstr "Einträge"
|
|
135
|
+
|
|
136
|
+
#: invenio_app_rdm/ext.py:82
|
|
137
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
138
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
139
|
+
msgid "Communities"
|
|
140
|
+
msgstr "Communitys"
|
|
141
|
+
|
|
142
|
+
#: invenio_app_rdm/ext.py:87
|
|
143
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
144
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
145
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
146
|
+
msgid "Requests"
|
|
147
|
+
msgstr "Anfragen"
|
|
148
|
+
|
|
149
|
+
#: invenio_app_rdm/ext.py:110
|
|
150
|
+
msgid "Home"
|
|
151
|
+
msgstr "Hauptseite"
|
|
152
|
+
|
|
153
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
154
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
155
|
+
#: invenio_app_rdm/ext.py:118
|
|
156
|
+
msgid "Records"
|
|
157
|
+
msgstr "Einträge"
|
|
158
|
+
|
|
159
|
+
#: invenio_app_rdm/ext.py:125
|
|
160
|
+
msgid "Submit"
|
|
161
|
+
msgstr "Absenden"
|
|
162
|
+
|
|
163
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
165
|
+
msgid "Domains"
|
|
166
|
+
msgstr "Domains"
|
|
167
|
+
|
|
168
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
169
|
+
msgid "Site management"
|
|
170
|
+
msgstr "Seitenverwaltung"
|
|
171
|
+
|
|
172
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
173
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
175
|
+
msgid "Domain"
|
|
176
|
+
msgstr "Domain"
|
|
177
|
+
|
|
178
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
179
|
+
msgid "TLD"
|
|
180
|
+
msgstr "TLD"
|
|
181
|
+
|
|
182
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
183
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
184
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
185
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
186
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
187
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
188
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
189
|
+
msgid "Status"
|
|
190
|
+
msgstr "Status"
|
|
191
|
+
|
|
192
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
193
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
194
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
195
|
+
msgid "Users"
|
|
196
|
+
msgstr "Benutzer*innen"
|
|
197
|
+
|
|
198
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
199
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
200
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
201
|
+
msgid "Active"
|
|
202
|
+
msgstr "Aktiv"
|
|
203
|
+
|
|
204
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
205
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
206
|
+
msgid "Inactive"
|
|
207
|
+
msgstr "Inaktiv"
|
|
208
|
+
|
|
209
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
210
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
211
|
+
msgid "Confirmed"
|
|
212
|
+
msgstr "Bestätigt"
|
|
213
|
+
|
|
214
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
215
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
216
|
+
msgid "Verified"
|
|
217
|
+
msgstr "Verifiziert"
|
|
218
|
+
|
|
219
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
220
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
221
|
+
msgid "Blocked"
|
|
222
|
+
msgstr "Gesperrt"
|
|
223
|
+
|
|
224
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
225
|
+
msgid "Domain name (all lowercase)"
|
|
226
|
+
msgstr "Domänenname (alles klein geschrieben)"
|
|
227
|
+
|
|
228
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
229
|
+
msgid ""
|
|
230
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
231
|
+
"domain require moderation), verified (users in domain does not require "
|
|
232
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
233
|
+
msgstr ""
|
|
234
|
+
"Status der Domain. Einer der Werte neu (Domain benötigt Überprüfung), "
|
|
235
|
+
"moderiert (Benutzer*innen in der Domain benötigen Moderation), verifiziert "
|
|
236
|
+
"(Benutzer*innen in der Domain benötigen keine Moderation) oder gesperrt "
|
|
237
|
+
"(Benutzer*innen können nicht mehr mit dieser Domain registriert werden)."
|
|
238
|
+
|
|
239
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
240
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
241
|
+
msgid "Category"
|
|
242
|
+
msgstr "Kategorie"
|
|
243
|
+
|
|
244
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
245
|
+
msgid "A label to categorise the domain."
|
|
246
|
+
msgstr "Eine Bezeichnung zur Kategorisierung der Domain."
|
|
247
|
+
|
|
248
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
249
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
250
|
+
msgid "Flagged"
|
|
251
|
+
msgstr "Gesperrt"
|
|
252
|
+
|
|
253
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
254
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
255
|
+
msgstr ""
|
|
256
|
+
"Wird von automatischen Prozessen verwendet, um die Domain als \"Benötigt "
|
|
257
|
+
"Überprüfung\" zu kennzeichnen."
|
|
258
|
+
|
|
259
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
260
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
261
|
+
msgid "Source of flag"
|
|
262
|
+
msgstr "Quelle der Kennzeichnung"
|
|
263
|
+
|
|
264
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
265
|
+
msgid "Which source flagged the domain."
|
|
266
|
+
msgstr "Von welcher Quelle wurde die Domain gekennzeichnet."
|
|
267
|
+
|
|
268
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
269
|
+
msgid "Create domain"
|
|
270
|
+
msgstr "Domain erstellen"
|
|
271
|
+
|
|
272
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
273
|
+
msgid "Edit domain"
|
|
274
|
+
msgstr "Domain bearbeiten"
|
|
275
|
+
|
|
276
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
277
|
+
msgid "Domain details"
|
|
278
|
+
msgstr "Domain-Details"
|
|
279
|
+
|
|
280
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
281
|
+
msgid "Top-level domain"
|
|
282
|
+
msgstr "Top-Level-Domain"
|
|
283
|
+
|
|
284
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
285
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
286
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
287
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
288
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
289
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
290
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
291
|
+
msgid "Created"
|
|
292
|
+
msgstr "Erstellt"
|
|
293
|
+
|
|
294
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
295
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
296
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
297
|
+
msgid "Updated"
|
|
298
|
+
msgstr "Aktualisiert"
|
|
299
|
+
|
|
300
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
301
|
+
msgid "Organisation"
|
|
302
|
+
msgstr "Organisation"
|
|
303
|
+
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
305
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
306
|
+
msgid "Records & files"
|
|
307
|
+
msgstr "Datensätze & Dateien"
|
|
308
|
+
|
|
309
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
310
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
311
|
+
msgid "Title"
|
|
312
|
+
msgstr "Titel"
|
|
313
|
+
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
315
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
316
|
+
msgid "Owner"
|
|
317
|
+
msgstr "Besitzer*in"
|
|
318
|
+
|
|
319
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
320
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
321
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
322
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
323
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
324
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
325
|
+
msgid "Files"
|
|
326
|
+
msgstr "Dateien"
|
|
327
|
+
|
|
328
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
329
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
330
|
+
msgid "Stats"
|
|
331
|
+
msgstr "Statistiken"
|
|
332
|
+
|
|
333
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
334
|
+
msgid "Delete record"
|
|
335
|
+
msgstr "Eintrag löschen"
|
|
336
|
+
|
|
337
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
338
|
+
msgid "Restore record"
|
|
339
|
+
msgstr "Eintrag wiederherstellen"
|
|
340
|
+
|
|
341
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
342
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
343
|
+
msgid "Drafts"
|
|
344
|
+
msgstr "Entwürfe"
|
|
345
|
+
|
|
346
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
347
|
+
msgid "Set quota"
|
|
348
|
+
msgstr "Kontingent festlegen"
|
|
349
|
+
|
|
350
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
351
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
352
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
353
|
+
msgid "Moderation"
|
|
354
|
+
msgstr "Moderation"
|
|
355
|
+
|
|
356
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
357
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
358
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
359
|
+
msgid "User"
|
|
360
|
+
msgstr "Benutzer*in"
|
|
361
|
+
|
|
362
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
363
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
364
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
365
|
+
msgid "Email"
|
|
366
|
+
msgstr "E-Mail"
|
|
367
|
+
|
|
368
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
369
|
+
msgid "Email domain"
|
|
370
|
+
msgstr "E-Mail-Domain"
|
|
371
|
+
|
|
372
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
373
|
+
msgid "Activity"
|
|
374
|
+
msgstr "Aktivität"
|
|
375
|
+
|
|
376
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
377
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
378
|
+
msgid "Approve"
|
|
379
|
+
msgstr "Akzeptieren"
|
|
380
|
+
|
|
381
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
382
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
383
|
+
msgid "Block"
|
|
384
|
+
msgstr "Sperren"
|
|
385
|
+
|
|
386
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
387
|
+
msgid "User moderation"
|
|
388
|
+
msgstr "Benutzer*innen-Verwaltung"
|
|
389
|
+
|
|
390
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
391
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
392
|
+
msgid "ID"
|
|
393
|
+
msgstr "ID"
|
|
394
|
+
|
|
395
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
396
|
+
msgid "Open"
|
|
397
|
+
msgstr "Offen"
|
|
398
|
+
|
|
399
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
400
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
401
|
+
msgid "Username"
|
|
402
|
+
msgstr "Kontoname"
|
|
403
|
+
|
|
404
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
405
|
+
msgid "Domain "
|
|
406
|
+
msgstr "Domain"
|
|
407
|
+
|
|
408
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
409
|
+
msgid "Visibility"
|
|
410
|
+
msgstr "Sichtbarkeit"
|
|
411
|
+
|
|
412
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
413
|
+
msgid "Confirmed at"
|
|
414
|
+
msgstr "Bestätigt am"
|
|
415
|
+
|
|
416
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
417
|
+
msgid "Verified at"
|
|
418
|
+
msgstr "Verifiziert am"
|
|
419
|
+
|
|
420
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
421
|
+
msgid "Blocked at"
|
|
422
|
+
msgstr "Gesperrt am"
|
|
423
|
+
|
|
424
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
425
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
426
|
+
msgid "User management"
|
|
427
|
+
msgstr "Benutzer*innenverwaltung"
|
|
428
|
+
|
|
429
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
430
|
+
msgid "Restore"
|
|
431
|
+
msgstr "Wiederherstellen"
|
|
432
|
+
|
|
433
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
434
|
+
msgid "Suspend"
|
|
435
|
+
msgstr "Sperren"
|
|
436
|
+
|
|
437
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
438
|
+
msgid "User details"
|
|
439
|
+
msgstr "Benutzer*innendetails"
|
|
440
|
+
|
|
441
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
442
|
+
msgid "Search "
|
|
97
443
|
msgstr "Suchen"
|
|
98
444
|
|
|
99
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
445
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
100
446
|
msgid "New version"
|
|
101
447
|
msgstr "Neue Version"
|
|
102
448
|
|
|
103
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
104
|
-
#: invenio_app_rdm/theme/views.py:44
|
|
105
|
-
msgid "New upload"
|
|
106
|
-
msgstr "Neuer Eintrag"
|
|
107
|
-
|
|
108
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
|
|
449
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
109
450
|
msgid "Edit upload"
|
|
110
451
|
msgstr "Eintrag bearbeiten"
|
|
111
452
|
|
|
112
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
453
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
113
454
|
msgid "Information banner"
|
|
114
455
|
msgstr "Informationsbanner"
|
|
115
456
|
|
|
116
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
457
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
117
458
|
msgid "Community visibility"
|
|
118
459
|
msgstr "Sichtbarkeit der Community"
|
|
119
460
|
|
|
120
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
121
462
|
msgid "The community is restricted to users with access."
|
|
122
|
-
msgstr "
|
|
463
|
+
msgstr ""
|
|
464
|
+
"Die Community ist beschränkt auf Benutzer*innen mit Zugangsberechtigung."
|
|
123
465
|
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
466
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
125
467
|
msgid "Restricted"
|
|
126
468
|
msgstr "Eingeschränkt"
|
|
127
469
|
|
|
128
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
129
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
130
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
470
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
471
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
472
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
131
473
|
msgid "Preview"
|
|
132
474
|
msgstr "Vorschau"
|
|
133
475
|
|
|
134
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
476
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
135
477
|
msgid "You are previewing a published record."
|
|
136
478
|
msgstr "Sie befinden sich in der Vorschau eines veröffentlichten Eintrags."
|
|
137
479
|
|
|
138
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
480
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
139
481
|
msgid "You are previewing changes that have not yet been published."
|
|
140
|
-
msgstr ""
|
|
141
|
-
"Sie befinden sich in der Vorschau von Änderungen, die noch nicht "
|
|
142
|
-
"veröffentlicht wurden."
|
|
482
|
+
msgstr "Vorschau unveröffentlichter Änderungen."
|
|
143
483
|
|
|
144
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
484
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
145
485
|
msgid "You are previewing a new record that has not yet been published."
|
|
146
|
-
msgstr ""
|
|
147
|
-
"Sie befinden sich in der Vorschau eines neuen Eintrags, der noch nicht "
|
|
148
|
-
"veröffentlicht wurde."
|
|
486
|
+
msgstr "Vorschau eines neuen Eintrags, der noch nicht veröffentlicht wurde."
|
|
149
487
|
|
|
150
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
488
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
151
489
|
msgid ""
|
|
152
490
|
"You are previewing a new record version that has not yet been published."
|
|
153
491
|
msgstr ""
|
|
154
|
-
"
|
|
155
|
-
"
|
|
492
|
+
"Vorschau einer neuen Version eines Eintrags, die noch nicht veröffentlicht "
|
|
493
|
+
"wurde."
|
|
156
494
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
495
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
158
496
|
#, python-format
|
|
159
497
|
msgid ""
|
|
160
498
|
"\n"
|
|
161
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
499
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
500
|
+
" available.\n"
|
|
162
501
|
" "
|
|
163
502
|
msgstr ""
|
|
164
503
|
"\n"
|
|
165
|
-
" Es ist eine %(link_start)
|
|
504
|
+
" Es ist eine %(link_start)s neuere Version %(link_end)s des Eintrags verfügbar.\n"
|
|
166
505
|
" "
|
|
167
506
|
|
|
168
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
507
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
169
508
|
msgid "Record access information"
|
|
170
|
-
msgstr "
|
|
509
|
+
msgstr "Informationen zu Zugriffsberechtigungen"
|
|
171
510
|
|
|
172
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
173
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
174
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
511
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
512
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
513
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
514
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
175
515
|
msgid "Reason"
|
|
176
516
|
msgstr "Grund"
|
|
177
517
|
|
|
178
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
518
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
179
519
|
msgid "Back-navigation"
|
|
180
|
-
msgstr "
|
|
520
|
+
msgstr "Zurück"
|
|
181
521
|
|
|
182
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
522
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
183
523
|
msgid "Back to edit"
|
|
184
524
|
msgstr "Zurück zum Bearbeiten"
|
|
185
525
|
|
|
186
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
526
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
187
527
|
msgid "Manage record"
|
|
188
528
|
msgstr "Eintrag verwalten"
|
|
189
529
|
|
|
190
|
-
#: 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:201
|
|
191
531
|
msgid "Publication date and version number"
|
|
192
532
|
msgstr "Veröffentlichungsdatum und Versionsnummer"
|
|
193
533
|
|
|
194
|
-
#: 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:205
|
|
195
535
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
196
536
|
msgid "Publication date"
|
|
197
537
|
msgstr "Veröffentlichungsdatum"
|
|
198
538
|
|
|
199
|
-
#: 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:206
|
|
200
540
|
msgid "Published"
|
|
201
541
|
msgstr "Veröffentlicht"
|
|
202
542
|
|
|
203
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
543
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
544
|
+
#, python-brace-format
|
|
204
545
|
msgid "Version {version_number}"
|
|
205
546
|
msgstr "Version {version_number}"
|
|
206
547
|
|
|
207
|
-
#: 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:216
|
|
208
549
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
209
550
|
msgid "Resource type"
|
|
210
551
|
msgstr "Art der Ressource"
|
|
211
552
|
|
|
212
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
553
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
213
554
|
msgid "Access status"
|
|
214
555
|
msgstr "Zugriffsstatus"
|
|
215
556
|
|
|
216
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
557
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
217
558
|
msgid "Record title and creators"
|
|
218
|
-
msgstr "Titel des Eintrags und
|
|
559
|
+
msgstr "Titel des Eintrags und Ersteller*innen"
|
|
219
560
|
|
|
220
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
561
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
221
562
|
msgid "Creators and contributors"
|
|
222
|
-
msgstr "
|
|
223
|
-
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:224
|
|
225
|
-
msgid "Record citations"
|
|
226
|
-
msgstr "Zitierungen des Eintrags"
|
|
563
|
+
msgstr "Ersteller*innen und Mitwirkende"
|
|
227
564
|
|
|
228
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:105
|
|
232
|
-
msgid "Files"
|
|
233
|
-
msgstr "Dateien"
|
|
565
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
566
|
+
msgid "Request access"
|
|
567
|
+
msgstr "Zugriff beantragen"
|
|
234
568
|
|
|
235
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
236
|
-
msgid "
|
|
237
|
-
|
|
569
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
570
|
+
msgid ""
|
|
571
|
+
"If you would like to request access to these files, please fill out the form"
|
|
572
|
+
" below."
|
|
573
|
+
msgstr ""
|
|
574
|
+
"Wenn Sie Zugriff auf diese Dateien beantragen möchten, füllen Sie bitte das "
|
|
575
|
+
"Formular aus."
|
|
238
576
|
|
|
239
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
578
|
+
msgid ""
|
|
579
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
580
|
+
"accepted:"
|
|
581
|
+
msgstr ""
|
|
582
|
+
"Sie müssen die folgenden Bedingungen erfüllen, damit diese Anfrage "
|
|
583
|
+
"angenommen wird:"
|
|
243
584
|
|
|
244
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
245
|
-
|
|
246
|
-
|
|
585
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
586
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
587
|
+
msgid "System files"
|
|
588
|
+
msgstr "Systemdateien"
|
|
247
589
|
|
|
248
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
249
|
-
msgid "
|
|
250
|
-
msgstr "
|
|
590
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
591
|
+
msgid "Additional record details"
|
|
592
|
+
msgstr "Weitere Details des Eintrags"
|
|
251
593
|
|
|
252
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
253
|
-
msgid "
|
|
254
|
-
msgstr "
|
|
594
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
595
|
+
msgid "Record details"
|
|
596
|
+
msgstr "Details des Eintrags"
|
|
255
597
|
|
|
256
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
598
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
257
599
|
msgid "Jump to top of page"
|
|
258
600
|
msgstr "Zum Anfang der Seite springen"
|
|
259
601
|
|
|
260
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
602
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
261
603
|
msgid "Jump up"
|
|
262
604
|
msgstr "Zum Seitenbeginn"
|
|
263
605
|
|
|
606
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
607
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
608
|
+
msgid "Draft not found"
|
|
609
|
+
msgstr "Entwurf nicht gefunden"
|
|
610
|
+
|
|
611
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
612
|
+
msgid ""
|
|
613
|
+
"This record has already been published and is not currently being edited, so"
|
|
614
|
+
" no draft exists."
|
|
615
|
+
msgstr ""
|
|
616
|
+
"Dieser Eintrag wurde bereits veröffentlicht und befindet sich derzeit nicht "
|
|
617
|
+
"im Entwurfsmodus, d.h. es existiert aktuell kein Entwurf."
|
|
618
|
+
|
|
619
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
620
|
+
msgid "Go to published record"
|
|
621
|
+
msgstr "Zum veröffentlichten Eintrag"
|
|
622
|
+
|
|
264
623
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
265
624
|
msgid "Back to details"
|
|
266
625
|
msgstr "Zurück zu den Details"
|
|
267
626
|
|
|
268
627
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
269
628
|
msgid "Preview for"
|
|
629
|
+
msgstr "Vorschau für"
|
|
630
|
+
|
|
631
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
632
|
+
msgid "Permission required"
|
|
633
|
+
msgstr "Berechtigung erforderlich"
|
|
634
|
+
|
|
635
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
636
|
+
msgid ""
|
|
637
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
638
|
+
"users with access."
|
|
270
639
|
msgstr ""
|
|
640
|
+
"Der Eintrag war ursprünglich öffentlich zugänglich, ist aber jetzt "
|
|
641
|
+
"zugriffsbeschränkt."
|
|
642
|
+
|
|
643
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
644
|
+
msgid ""
|
|
645
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
646
|
+
"active for reference."
|
|
647
|
+
msgstr ""
|
|
648
|
+
"Der Digital Object Identifier (DOI) des Eintrags bleibt zum Zweck der "
|
|
649
|
+
"Referenzierung weiterhin aktiv."
|
|
650
|
+
|
|
651
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
652
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
653
|
+
msgid "Identifier:"
|
|
654
|
+
msgstr "Identifier:"
|
|
271
655
|
|
|
272
656
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
273
657
|
msgid "Search results"
|
|
274
658
|
msgstr "Suchergebnisse"
|
|
275
659
|
|
|
276
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
660
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
277
661
|
msgid "Tombstone"
|
|
278
|
-
msgstr "
|
|
662
|
+
msgstr "Tombstone"
|
|
663
|
+
|
|
664
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
665
|
+
msgid "Reason unknown"
|
|
666
|
+
msgstr "Grund unbekannt"
|
|
279
667
|
|
|
280
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
668
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
281
669
|
msgid "Gone"
|
|
282
670
|
msgstr "Entfernt"
|
|
283
671
|
|
|
284
|
-
#: 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:26
|
|
285
673
|
#, python-format
|
|
286
674
|
msgid ""
|
|
287
675
|
"\n"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
" "
|
|
676
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
677
|
+
" metadata of the record is kept for archival purposes."
|
|
291
678
|
msgstr ""
|
|
292
679
|
"\n"
|
|
293
|
-
"
|
|
294
|
-
"Die Metadaten des Eintrags werden zu Archivierungszwecken aufbewahrt."
|
|
680
|
+
"Der Eintrag, auf den Sie zugreifen möchten, wurde aus %(sitename)s gelöscht. Die Metadaten des Eintrags bleiben für archivarische Zwecke erhalten."
|
|
295
681
|
|
|
296
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
682
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
297
683
|
msgid "Reason for removal:"
|
|
298
|
-
msgstr "Grund für die
|
|
684
|
+
msgstr "Grund für die Löschung:"
|
|
299
685
|
|
|
300
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
686
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
687
|
+
msgid "Removed by:"
|
|
688
|
+
msgstr "Gelöscht von:"
|
|
689
|
+
|
|
690
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
691
|
+
msgid "Removal note:"
|
|
692
|
+
msgstr "Lösch-Notiz:"
|
|
693
|
+
|
|
694
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
695
|
+
msgid "Date of removal:"
|
|
696
|
+
msgstr "Lösch-Datum:"
|
|
697
|
+
|
|
698
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
699
|
+
msgid "Citation:"
|
|
700
|
+
msgstr "Zitation:"
|
|
701
|
+
|
|
702
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
703
|
+
msgid "You are currently not logged in"
|
|
704
|
+
msgstr "Sie sind derzeit nicht angemeldet"
|
|
705
|
+
|
|
706
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
707
|
+
msgid "Do you have an account?"
|
|
708
|
+
msgstr "Haben Sie ein Konto?"
|
|
709
|
+
|
|
710
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
711
|
+
msgid "Log in here"
|
|
712
|
+
msgstr "Hier einloggen"
|
|
713
|
+
|
|
714
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
715
|
+
msgid "You are logged in as"
|
|
716
|
+
msgstr "Sie sind angemeldet als"
|
|
717
|
+
|
|
718
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
719
|
+
msgid "Not you?"
|
|
720
|
+
msgstr "Nicht Sie?"
|
|
721
|
+
|
|
722
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
723
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
724
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
725
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
726
|
+
msgid "Log out"
|
|
727
|
+
msgstr "Ausloggen"
|
|
728
|
+
|
|
729
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
730
|
+
msgid "to switch account."
|
|
731
|
+
msgstr "um das Konto zu wechseln."
|
|
304
732
|
|
|
305
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
733
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
734
|
+
msgid "Send message"
|
|
735
|
+
msgstr "Nachricht senden"
|
|
736
|
+
|
|
737
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
738
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
306
739
|
msgid "Creators"
|
|
307
|
-
msgstr "
|
|
740
|
+
msgstr "Ersteller*innen"
|
|
308
741
|
|
|
309
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
310
|
-
msgid "Contributors
|
|
311
|
-
msgstr "
|
|
742
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
743
|
+
msgid "Contributors"
|
|
744
|
+
msgstr "Mitwirkende"
|
|
312
745
|
|
|
313
746
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
314
747
|
msgid "Record description"
|
|
@@ -318,115 +751,211 @@ msgstr "Beschreibung des Eintrags"
|
|
|
318
751
|
msgid "Description"
|
|
319
752
|
msgstr "Beschreibung"
|
|
320
753
|
|
|
321
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
754
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
322
755
|
msgid "Additional details"
|
|
323
756
|
msgstr "Weitere Details"
|
|
324
757
|
|
|
325
|
-
#: 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:55
|
|
759
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
326
760
|
msgid "Additional titles"
|
|
327
|
-
msgstr "
|
|
761
|
+
msgstr "Weitere Titel"
|
|
328
762
|
|
|
329
|
-
#: 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:98
|
|
764
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
330
765
|
msgid "Identifiers"
|
|
331
|
-
msgstr "
|
|
766
|
+
msgstr "Identifier"
|
|
332
767
|
|
|
333
|
-
#: 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:141
|
|
769
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
334
770
|
msgid "Related works"
|
|
335
|
-
msgstr "
|
|
771
|
+
msgstr "Verknüpfte Arbeiten"
|
|
336
772
|
|
|
337
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
773
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
774
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
338
775
|
msgid "Funding"
|
|
339
776
|
msgstr "Förderung"
|
|
340
777
|
|
|
341
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
778
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
779
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
342
780
|
msgid "Dates"
|
|
343
781
|
msgstr "Daten"
|
|
344
782
|
|
|
345
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
346
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
783
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
784
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
347
785
|
msgid "References"
|
|
348
786
|
msgstr "Referenzen"
|
|
349
787
|
|
|
350
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
351
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
352
|
-
msgid "
|
|
353
|
-
msgstr "
|
|
354
|
-
|
|
355
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
788
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
789
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
790
|
+
msgid "Views"
|
|
791
|
+
msgstr "Ansichten"
|
|
792
|
+
|
|
793
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
794
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
795
|
+
msgid "Downloads"
|
|
796
|
+
msgstr "Downloads"
|
|
797
|
+
|
|
798
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
799
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
800
|
+
msgid "Show more details"
|
|
801
|
+
msgstr "Weitere Details anzeigen"
|
|
802
|
+
|
|
803
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
804
|
+
msgid "Show less details"
|
|
805
|
+
msgstr "Weniger Details anzeigen"
|
|
806
|
+
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
810
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
811
|
+
msgid "All versions"
|
|
812
|
+
msgstr "Alle Versionen"
|
|
813
|
+
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
815
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
816
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
817
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
818
|
+
msgid "This version"
|
|
819
|
+
msgstr "Diese Version"
|
|
820
|
+
|
|
821
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
822
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
823
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
824
|
+
msgid "More info"
|
|
825
|
+
msgstr "Weitere Informationen"
|
|
826
|
+
|
|
827
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
828
|
+
msgid "Total views"
|
|
829
|
+
msgstr "Zahl der Zugriffe"
|
|
830
|
+
|
|
831
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
832
|
+
msgid "Total downloads"
|
|
833
|
+
msgstr "Zahl der Downloads"
|
|
834
|
+
|
|
835
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
836
|
+
msgid "Data volume"
|
|
837
|
+
msgstr "Datengröße"
|
|
838
|
+
|
|
839
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
840
|
+
msgid "Total data volume"
|
|
841
|
+
msgstr "Gesamtgröße"
|
|
842
|
+
|
|
843
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
844
|
+
msgid "More info on how stats are collected."
|
|
845
|
+
msgstr "Nähere Informationen dazu, wie die Statistiken erfasst werden."
|
|
362
846
|
|
|
363
847
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
364
848
|
msgid "Keywords"
|
|
365
849
|
msgstr "Schlagwörter"
|
|
366
850
|
|
|
367
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
368
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
851
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
852
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
369
853
|
msgid "Search results for "
|
|
370
854
|
msgstr "Suchergebnis für "
|
|
371
855
|
|
|
856
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
857
|
+
msgid "Citation"
|
|
858
|
+
msgstr "Zitation"
|
|
859
|
+
|
|
372
860
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
373
861
|
msgid "Details"
|
|
374
862
|
msgstr "Details"
|
|
375
863
|
|
|
376
864
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:26
|
|
377
865
|
msgid "Publisher"
|
|
378
|
-
msgstr "
|
|
866
|
+
msgstr "Herausgeber*in"
|
|
379
867
|
|
|
380
868
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
869
|
+
msgid "Published in"
|
|
870
|
+
msgstr "Veröffentlicht in"
|
|
871
|
+
|
|
872
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
873
|
+
msgid "Imprint"
|
|
874
|
+
msgstr "Verlag"
|
|
875
|
+
|
|
876
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
877
|
+
msgid "Awarding university"
|
|
878
|
+
msgstr "Verleihende Universität"
|
|
879
|
+
|
|
880
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
881
|
+
msgid "Conference"
|
|
882
|
+
msgstr "Konferenz"
|
|
883
|
+
|
|
884
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
381
885
|
msgid "Languages"
|
|
382
886
|
msgstr "Sprachen"
|
|
383
887
|
|
|
384
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
888
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
385
889
|
msgid "Formats"
|
|
386
890
|
msgstr "Formate"
|
|
387
891
|
|
|
388
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
892
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
389
893
|
msgid "Sizes"
|
|
390
894
|
msgstr "Größen"
|
|
391
895
|
|
|
392
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
393
896
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
394
897
|
msgid "Export"
|
|
395
898
|
msgstr "Exportieren"
|
|
396
899
|
|
|
397
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
900
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
901
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
902
|
+
msgid "External resources"
|
|
903
|
+
msgstr "Externe Ressourcen"
|
|
904
|
+
|
|
398
905
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
906
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
399
907
|
msgid "Keywords and subjects"
|
|
400
|
-
msgstr "Klassifikationen und
|
|
401
|
-
|
|
402
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
403
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
404
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
405
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
406
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
908
|
+
msgstr "Klassifikationen und Schlagwörter"
|
|
909
|
+
|
|
910
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
911
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
912
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
913
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
914
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
915
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
407
916
|
msgid "Opens in new tab"
|
|
408
|
-
msgstr "
|
|
917
|
+
msgstr "In neuem Tab öffnen"
|
|
918
|
+
|
|
919
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
920
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
921
|
+
msgid "Read more"
|
|
922
|
+
msgstr "Mehr lesen"
|
|
409
923
|
|
|
410
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
411
924
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
412
925
|
msgid "Rights"
|
|
413
926
|
msgstr "Rechte"
|
|
414
927
|
|
|
415
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
928
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
416
929
|
msgid "Close"
|
|
417
930
|
msgstr "Schließen"
|
|
418
931
|
|
|
419
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
932
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
420
933
|
msgid "No further description."
|
|
421
934
|
msgstr "Keine weitere Beschreibung."
|
|
422
935
|
|
|
936
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
937
|
+
msgid "Geographic locations"
|
|
938
|
+
msgstr "Geografische Standorte"
|
|
939
|
+
|
|
423
940
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
424
941
|
msgid "Record management"
|
|
425
942
|
msgstr "Eintragsverwaltung"
|
|
426
943
|
|
|
427
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
428
|
-
msgid "
|
|
429
|
-
msgstr "
|
|
944
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
945
|
+
msgid "Metrics"
|
|
946
|
+
msgstr "Metriken"
|
|
947
|
+
|
|
948
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
949
|
+
msgid "Upload information"
|
|
950
|
+
msgstr "Informationen zum Eintrag"
|
|
951
|
+
|
|
952
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
953
|
+
msgid "Technical metadata"
|
|
954
|
+
msgstr "Technische Metadaten"
|
|
955
|
+
|
|
956
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
957
|
+
msgid "Modified"
|
|
958
|
+
msgstr "Geändert"
|
|
430
959
|
|
|
431
960
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
432
961
|
msgid "Versions"
|
|
@@ -443,7 +972,7 @@ msgstr "Profil"
|
|
|
443
972
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
444
973
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
445
974
|
msgid "Show affiliations"
|
|
446
|
-
msgstr "
|
|
975
|
+
msgstr "Zugehörigkeiten anzeigen"
|
|
447
976
|
|
|
448
977
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
449
978
|
msgid "Hide affiliations"
|
|
@@ -453,347 +982,429 @@ msgstr "Zugehörigkeit verbergen"
|
|
|
453
982
|
msgid "Affiliations for"
|
|
454
983
|
msgstr "Zugehörigkeiten für"
|
|
455
984
|
|
|
456
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
985
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
457
986
|
msgid "Open external link"
|
|
458
987
|
msgstr "Externen Link öffnen"
|
|
459
988
|
|
|
460
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
989
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
990
|
+
msgid "Conference website"
|
|
991
|
+
msgstr "Konferenz-Website"
|
|
992
|
+
|
|
993
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
994
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
995
|
+
msgid "DOI"
|
|
996
|
+
msgstr "DOI"
|
|
997
|
+
|
|
998
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
999
|
+
msgid "Get the DOI badge!"
|
|
1000
|
+
msgstr "Holen Sie sich das DOI-Abzeichen!"
|
|
1001
|
+
|
|
1002
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
1003
|
+
msgid "DOI Badge"
|
|
1004
|
+
msgstr "DOI-Abzeichen"
|
|
1005
|
+
|
|
1006
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
461
1007
|
msgid "File preview"
|
|
462
1008
|
msgstr "Dateivorschau"
|
|
463
1009
|
|
|
464
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1010
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
465
1011
|
msgid "Name"
|
|
466
1012
|
msgstr "Name"
|
|
467
1013
|
|
|
468
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1014
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
469
1015
|
msgid "Size"
|
|
470
1016
|
msgstr "Größe"
|
|
471
1017
|
|
|
472
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
msgstr "Aktionen"
|
|
1018
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1019
|
+
msgid "Download all"
|
|
1020
|
+
msgstr "Alle herunterladen"
|
|
476
1021
|
|
|
477
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1022
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
478
1023
|
msgid ""
|
|
479
1024
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
480
1025
|
"file integrity."
|
|
481
1026
|
msgstr ""
|
|
482
|
-
"
|
|
483
|
-
"
|
|
1027
|
+
"Hier finden Sie die Prüfsumme, die zur Überprüfung der Dateiintegrität "
|
|
1028
|
+
"verwendet werden kann."
|
|
484
1029
|
|
|
485
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1030
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
486
1031
|
msgid "Download"
|
|
487
1032
|
msgstr "Herunterladen"
|
|
488
1033
|
|
|
489
|
-
#: invenio_app_rdm/records_ui/
|
|
490
|
-
msgid "
|
|
491
|
-
msgstr ""
|
|
1034
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1035
|
+
msgid "Unknown"
|
|
1036
|
+
msgstr "Unbekannt"
|
|
1037
|
+
|
|
1038
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1039
|
+
msgid "See the full number"
|
|
1040
|
+
msgstr "Gesamtzahl anzeigen"
|
|
492
1041
|
|
|
493
|
-
#: invenio_app_rdm/records_ui/
|
|
494
|
-
msgid "
|
|
495
|
-
msgstr "
|
|
1042
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1043
|
+
msgid "Version"
|
|
1044
|
+
msgstr "Version"
|
|
1045
|
+
|
|
1046
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1047
|
+
msgid "No DOI available"
|
|
1048
|
+
msgstr "Kein DOI verfügbar"
|
|
1049
|
+
|
|
1050
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1051
|
+
#, python-format
|
|
1052
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1053
|
+
msgstr "Verwerfen Sie das reservierte %(scheme_label)s."
|
|
1054
|
+
|
|
1055
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1056
|
+
#, python-format
|
|
1057
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1058
|
+
msgstr "Holen Sie sich jetzt ein %(scheme_label)s!"
|
|
496
1059
|
|
|
497
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1060
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1061
|
+
#, python-format
|
|
498
1062
|
msgid ""
|
|
499
|
-
"Reserve a
|
|
500
|
-
"files prior to upload). The
|
|
501
|
-
" published."
|
|
1063
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1064
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1065
|
+
"is published."
|
|
502
1066
|
msgstr ""
|
|
1067
|
+
"Reservieren Sie ein %(scheme_label)s, indem Sie den Button drücken (damit es"
|
|
1068
|
+
" vor dem Hochladen in Dateien eingefügt werden kann). Das %(scheme_label)s "
|
|
1069
|
+
"wird registriert, wenn Ihr Upload veröffentlicht wird."
|
|
503
1070
|
|
|
504
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1071
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1072
|
+
#, python-format
|
|
505
1073
|
msgid ""
|
|
506
|
-
"A
|
|
1074
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
507
1075
|
"Example: 10.1234/foo.bar"
|
|
508
1076
|
msgstr ""
|
|
509
|
-
"Ein
|
|
510
|
-
"
|
|
1077
|
+
"Ein %(scheme_label)s ermöglicht es, Ihren Upload einfach und eindeutig zu "
|
|
1078
|
+
"zitieren. Beispiel: 10.1234/foo.bar"
|
|
511
1079
|
|
|
512
|
-
#: invenio_app_rdm/
|
|
1080
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1081
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1082
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1083
|
+
msgid "All"
|
|
1084
|
+
msgstr "Alle"
|
|
1085
|
+
|
|
1086
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
513
1087
|
msgid "Back to invitations"
|
|
514
1088
|
msgstr "Zurück zu den Einladungen"
|
|
515
1089
|
|
|
516
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
517
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1090
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1091
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1092
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1093
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
518
1094
|
msgid "Back to requests"
|
|
519
1095
|
msgstr "Zurück zu den Anfragen"
|
|
520
1096
|
|
|
521
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1097
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
522
1098
|
msgid "Conversation"
|
|
523
1099
|
msgstr "Gesprächsverlauf"
|
|
524
1100
|
|
|
525
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1101
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
526
1102
|
msgid "Record"
|
|
527
1103
|
msgstr "Eintrag"
|
|
528
1104
|
|
|
529
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1105
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1106
|
+
msgid "Access request"
|
|
1107
|
+
msgstr "Antrag auf Zugang"
|
|
1108
|
+
|
|
1109
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
530
1110
|
msgid "View Community"
|
|
531
1111
|
msgstr "Community ansehen"
|
|
532
1112
|
|
|
533
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1113
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
534
1114
|
msgid "View record"
|
|
535
1115
|
msgstr "Eintrag ansehen"
|
|
536
1116
|
|
|
537
|
-
#: invenio_app_rdm/theme/views.py:
|
|
538
|
-
msgid "
|
|
539
|
-
msgstr "
|
|
1117
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1118
|
+
msgid "Notification preferences were updated."
|
|
1119
|
+
msgstr "Benachrichtigungs-Einstellungen wurden aktualisiert."
|
|
540
1120
|
|
|
541
1121
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
542
1122
|
msgid "About InvenioRDM"
|
|
543
1123
|
msgstr "Über InvenioRDM"
|
|
544
1124
|
|
|
545
1125
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
"
|
|
551
|
-
msgstr ""
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
"
|
|
1126
|
+
msgid "Product page"
|
|
1127
|
+
msgstr "Produktseite"
|
|
1128
|
+
|
|
1129
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1130
|
+
msgid "Features"
|
|
1131
|
+
msgstr "Funktionen"
|
|
1132
|
+
|
|
1133
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1134
|
+
msgid "Roadmap"
|
|
1135
|
+
msgstr "Roadmap"
|
|
555
1136
|
|
|
556
1137
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
"\n"
|
|
560
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
561
|
-
" "
|
|
562
|
-
msgstr ""
|
|
563
|
-
"\n"
|
|
564
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Funktionen</a></p>\n"
|
|
565
|
-
" "
|
|
1138
|
+
msgid "Demo site"
|
|
1139
|
+
msgstr "Demoseite"
|
|
566
1140
|
|
|
567
1141
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
"
|
|
573
|
-
msgstr ""
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
"
|
|
1142
|
+
msgid "Get involved"
|
|
1143
|
+
msgstr "Mitmachen"
|
|
1144
|
+
|
|
1145
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1146
|
+
msgid "GitHub"
|
|
1147
|
+
msgstr "GitHub"
|
|
1148
|
+
|
|
1149
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1150
|
+
msgid "Project Milestones"
|
|
1151
|
+
msgstr "Projektmeilensteine"
|
|
577
1152
|
|
|
578
1153
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
"
|
|
584
|
-
msgstr ""
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
"
|
|
1154
|
+
msgid "Documentation"
|
|
1155
|
+
msgstr "Dokumentation"
|
|
1156
|
+
|
|
1157
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
1158
|
+
msgid "Community"
|
|
1159
|
+
msgstr "Community"
|
|
1160
|
+
|
|
1161
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1162
|
+
msgid "Chatroom"
|
|
1163
|
+
msgstr "Chatraum"
|
|
588
1164
|
|
|
589
1165
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
590
|
-
msgid "
|
|
591
|
-
msgstr "
|
|
1166
|
+
msgid "Forum"
|
|
1167
|
+
msgstr "Forum"
|
|
592
1168
|
|
|
593
1169
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
"\n"
|
|
597
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
598
|
-
" "
|
|
599
|
-
msgstr ""
|
|
600
|
-
"\n"
|
|
601
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
602
|
-
" "
|
|
1170
|
+
msgid "Events & training"
|
|
1171
|
+
msgstr "Veranstaltungen & Schulungen"
|
|
603
1172
|
|
|
604
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
"\n"
|
|
608
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
609
|
-
" "
|
|
610
|
-
msgstr ""
|
|
611
|
-
"\n"
|
|
612
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Projektmeilensteine</a></p>\n"
|
|
613
|
-
" "
|
|
1173
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1174
|
+
msgid "Impersonated session"
|
|
1175
|
+
msgstr "Impersonierte Sitzung"
|
|
614
1176
|
|
|
615
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
"\n"
|
|
619
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
620
|
-
" "
|
|
621
|
-
msgstr ""
|
|
622
|
-
"\n"
|
|
623
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Dokumentation</a></p>\n"
|
|
624
|
-
" "
|
|
1177
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1178
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
1179
|
+
msgstr "Sie müssen sich abmelden, wenn Sie mit Ihrer Anfrage fertig sind!"
|
|
625
1180
|
|
|
626
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
627
|
-
|
|
628
|
-
|
|
1181
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1182
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1183
|
+
msgid "home"
|
|
1184
|
+
msgstr "Startseite"
|
|
629
1185
|
|
|
630
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
631
|
-
|
|
632
|
-
msgid ""
|
|
633
|
-
"
|
|
634
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
635
|
-
" "
|
|
636
|
-
msgstr ""
|
|
637
|
-
"\n"
|
|
638
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chat</a></p>\n"
|
|
639
|
-
" "
|
|
1186
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1187
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1188
|
+
msgid "Menu"
|
|
1189
|
+
msgstr "Menü"
|
|
640
1190
|
|
|
641
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
642
|
-
|
|
643
|
-
msgid ""
|
|
644
|
-
"
|
|
645
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
646
|
-
" "
|
|
647
|
-
msgstr ""
|
|
648
|
-
"\n"
|
|
649
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
650
|
-
" "
|
|
1191
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1192
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1193
|
+
msgid "Close menu"
|
|
1194
|
+
msgstr "Menü schließen"
|
|
651
1195
|
|
|
652
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
653
|
-
|
|
654
|
-
msgid ""
|
|
655
|
-
"
|
|
656
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
657
|
-
" "
|
|
658
|
-
msgstr ""
|
|
659
|
-
"\n"
|
|
660
|
-
" <p><a href=\"%(invenio_events)s\">Veranstaltungen & Schulungen</a></p>\n"
|
|
661
|
-
" "
|
|
1196
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1197
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1198
|
+
msgid "Inbox"
|
|
1199
|
+
msgstr "Posteingang"
|
|
662
1200
|
|
|
663
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
664
|
-
|
|
665
|
-
msgid ""
|
|
666
|
-
|
|
667
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
668
|
-
msgstr ""
|
|
669
|
-
"Betrieben von <a\n"
|
|
670
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1201
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1202
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1203
|
+
msgid "Search"
|
|
1204
|
+
msgstr "Suchen"
|
|
671
1205
|
|
|
672
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1206
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1207
|
+
msgid "Log in"
|
|
1208
|
+
msgstr "Einloggen"
|
|
1209
|
+
|
|
1210
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1211
|
+
msgid "Sign up"
|
|
1212
|
+
msgstr "Registrieren"
|
|
1213
|
+
|
|
1214
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1215
|
+
msgid "Quick create"
|
|
1216
|
+
msgstr "Schnell erstellen"
|
|
1217
|
+
|
|
1218
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1219
|
+
msgid "Actions"
|
|
1220
|
+
msgstr "Aktionen"
|
|
1221
|
+
|
|
1222
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1223
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1224
|
+
msgid "My account"
|
|
1225
|
+
msgstr "Mein Konto"
|
|
1226
|
+
|
|
1227
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
673
1228
|
msgid "You've successfully installed InvenioRDM!"
|
|
674
1229
|
msgstr "Sie haben InvenioRDM erfolgreich installiert!"
|
|
675
1230
|
|
|
676
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1231
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
677
1232
|
msgid "What is ahead?"
|
|
678
1233
|
msgstr "Was liegt nun vor Ihnen?"
|
|
679
1234
|
|
|
680
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1235
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
681
1236
|
msgid "Configure"
|
|
682
1237
|
msgstr "Konfigurieren"
|
|
683
1238
|
|
|
684
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
685
|
-
#, python-format
|
|
1239
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
686
1240
|
msgid ""
|
|
687
|
-
"
|
|
688
|
-
"
|
|
689
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
690
|
-
" section in the docs</a>.\n"
|
|
691
|
-
" "
|
|
1241
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1242
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
692
1243
|
msgstr ""
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
|
|
1244
|
+
"Konfigurieren Sie das Datenmodell, die Ressourcentypen, Berechtigungen und "
|
|
1245
|
+
"vieles mehr, um es an Ihre Bedürfnisse anzupassen! Für weitere "
|
|
1246
|
+
"Informationen, wie Sie dies tun können, besuchen Sie die"
|
|
1247
|
+
|
|
1248
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1249
|
+
msgid "configuration section in the docs"
|
|
1250
|
+
msgstr "Konfigurationsbereich in der Dokumentation"
|
|
697
1251
|
|
|
698
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1252
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
699
1253
|
msgid "Customize"
|
|
700
1254
|
msgstr "Anpassen"
|
|
701
1255
|
|
|
702
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
703
|
-
#, python-format
|
|
1256
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
704
1257
|
msgid ""
|
|
705
|
-
"
|
|
706
|
-
"
|
|
707
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
708
|
-
" "
|
|
1258
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1259
|
+
"how to do so"
|
|
709
1260
|
msgstr ""
|
|
710
|
-
"
|
|
711
|
-
"
|
|
712
|
-
|
|
713
|
-
|
|
1261
|
+
"Verändern Sie das Layout und das Styling, um es an die Anforderungen Ihrer "
|
|
1262
|
+
"Institution anzupassen. Schauen Sie sich an, wie Sie dies tun können"
|
|
1263
|
+
|
|
1264
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1265
|
+
msgid "here"
|
|
1266
|
+
msgstr "hier"
|
|
714
1267
|
|
|
715
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1268
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
716
1269
|
msgid "Run it!"
|
|
717
|
-
msgstr "
|
|
1270
|
+
msgstr "Los!"
|
|
718
1271
|
|
|
719
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
"
|
|
726
|
-
msgstr ""
|
|
727
|
-
"\n"
|
|
728
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Setzen</a> Sie\n"
|
|
729
|
-
" Ihre InvenioRDM Instanz lokal oder in Containern auf.\n"
|
|
730
|
-
" "
|
|
1272
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1273
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
1274
|
+
msgstr "Führen Sie Ihre InvenioRDM-Instanz lokal oder in Containern aus."
|
|
1275
|
+
|
|
1276
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1277
|
+
msgid "Run"
|
|
1278
|
+
msgstr "Ausführen"
|
|
731
1279
|
|
|
732
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1280
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
733
1281
|
msgid "Docs"
|
|
734
1282
|
msgstr "Docs"
|
|
735
1283
|
|
|
736
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
737
1285
|
msgid "Code"
|
|
738
1286
|
msgstr "Code"
|
|
739
1287
|
|
|
740
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
741
|
-
msgid "
|
|
742
|
-
msgstr "
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1289
|
+
msgid "To disable this section, add"
|
|
1290
|
+
msgstr "Um diesen Abschnitt zu deaktivieren, fügen Sie"
|
|
743
1291
|
|
|
744
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
745
|
-
msgid "
|
|
746
|
-
msgstr "
|
|
1292
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1293
|
+
msgid "to your invenio.cfg file."
|
|
1294
|
+
msgstr "zu Ihrer invenio.cfg-Datei hinzu."
|
|
747
1295
|
|
|
748
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
msgid "Requests"
|
|
752
|
-
msgstr "Anfragen"
|
|
1296
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1297
|
+
msgid "In this community"
|
|
1298
|
+
msgstr "In dieser Community"
|
|
753
1299
|
|
|
754
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
755
|
-
|
|
756
|
-
|
|
1300
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1301
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1302
|
+
msgid "Search records"
|
|
1303
|
+
msgstr "Nach Einträgen suchen"
|
|
757
1304
|
|
|
758
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
759
|
-
|
|
760
|
-
|
|
1305
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1306
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1307
|
+
msgid "Powered by"
|
|
1308
|
+
msgstr "Powered by"
|
|
761
1309
|
|
|
762
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
763
|
-
msgid "
|
|
764
|
-
|
|
1310
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1311
|
+
msgid ""
|
|
1312
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1313
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
1314
|
+
msgstr ""
|
|
1315
|
+
"Die folgenden Dateien wurden als 'unhealthy' markiert. Das bedeutet, dass "
|
|
1316
|
+
"die Prüfzifferprüfung fehlgeschlagen oder zeitlich abgelaufen ist. Bitte "
|
|
1317
|
+
"ergreifen Sie gegebenenfalls Maßnahmen."
|
|
765
1318
|
|
|
766
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
767
|
-
|
|
768
|
-
msgid "
|
|
769
|
-
msgstr "
|
|
1319
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1320
|
+
#, python-format
|
|
1321
|
+
msgid "ID: %s"
|
|
1322
|
+
msgstr "ID: %s"
|
|
770
1323
|
|
|
771
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
msgstr "Ausloggen"
|
|
1324
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1325
|
+
#, python-format
|
|
1326
|
+
msgid "URI: %s"
|
|
1327
|
+
msgstr "URI: %s"
|
|
776
1328
|
|
|
777
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
778
|
-
|
|
779
|
-
|
|
1329
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1330
|
+
#, python-format
|
|
1331
|
+
msgid "Name: %s"
|
|
1332
|
+
msgstr "Name: %s"
|
|
780
1333
|
|
|
781
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
782
|
-
|
|
783
|
-
msgid "
|
|
784
|
-
msgstr "
|
|
1334
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1335
|
+
#, python-format
|
|
1336
|
+
msgid "Created: %s"
|
|
1337
|
+
msgstr "Erstellt: %s"
|
|
1338
|
+
|
|
1339
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1340
|
+
#, python-format
|
|
1341
|
+
msgid "Checksum: %s"
|
|
1342
|
+
msgstr "Prüfziffer: %s"
|
|
1343
|
+
|
|
1344
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1345
|
+
#, python-format
|
|
1346
|
+
msgid "Last check date: %s"
|
|
1347
|
+
msgstr "Letztes Prüfdatum: %s"
|
|
1348
|
+
|
|
1349
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1350
|
+
#, python-format
|
|
1351
|
+
msgid "Last check FAILED with result: %s"
|
|
1352
|
+
msgstr "Letzte Prüfung FEHLGESCHLAGEN mit Ergebnis: %s"
|
|
1353
|
+
|
|
1354
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1355
|
+
#, python-format
|
|
1356
|
+
msgid "Record: %s/records/%s"
|
|
1357
|
+
msgstr "Datensatz: %s/records/%s"
|
|
1358
|
+
|
|
1359
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1360
|
+
#, python-format
|
|
1361
|
+
msgid "Draft: %s/uploads/%s"
|
|
1362
|
+
msgstr "Entwurf: %s/uploads/%s"
|
|
785
1363
|
|
|
786
1364
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
787
1365
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1366
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
788
1367
|
msgid "Search guide"
|
|
789
1368
|
msgstr "Suchanleitung"
|
|
790
1369
|
|
|
791
|
-
#: invenio_app_rdm/
|
|
792
|
-
#: invenio_app_rdm/
|
|
793
|
-
msgid "
|
|
794
|
-
msgstr "
|
|
1370
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1371
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1372
|
+
msgid "FAQ statistics"
|
|
1373
|
+
msgstr "Häufig gestellte Fragen zu den Statistiken"
|
|
795
1374
|
|
|
796
|
-
#: invenio_app_rdm/
|
|
797
|
-
#: invenio_app_rdm/
|
|
798
|
-
msgid "
|
|
799
|
-
msgstr "
|
|
1375
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1376
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1377
|
+
msgid "FAQ versioning"
|
|
1378
|
+
msgstr "Häufig gestellte Fragen zur Versionierung"
|
|
1379
|
+
|
|
1380
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1381
|
+
msgid "Recent uploads"
|
|
1382
|
+
msgstr "Aktuelle Uploads"
|
|
1383
|
+
|
|
1384
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1385
|
+
msgid "Verified community"
|
|
1386
|
+
msgstr "Verifizierte Community"
|
|
1387
|
+
|
|
1388
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1389
|
+
msgid "Privacy policy"
|
|
1390
|
+
msgstr "Datenschutzbestimmungen"
|
|
1391
|
+
|
|
1392
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1393
|
+
msgid "Terms of use"
|
|
1394
|
+
msgstr "Nutzungsbedingungen"
|
|
1395
|
+
|
|
1396
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1397
|
+
msgid "Support"
|
|
1398
|
+
msgstr "Support"
|
|
1399
|
+
|
|
1400
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1401
|
+
msgid "Your dashboard"
|
|
1402
|
+
msgstr "Ihr Dashboard"
|
|
1403
|
+
|
|
1404
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1405
|
+
msgid "Anonymous user"
|
|
1406
|
+
msgstr "Anonyme*r Benutzer*in"
|
|
1407
|
+
|
|
1408
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1409
|
+
msgid "New community"
|
|
1410
|
+
msgstr "Neue Community"
|