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