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,255 +1,617 @@
|
|
|
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>, 2020
|
|
9
8
|
# Dorottya Szemigán, 2023
|
|
10
|
-
#
|
|
9
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
10
|
+
# Andrea Dömötör, 2025
|
|
11
|
+
# Franciska Fekete, 2025
|
|
12
|
+
# Júlia Babos, 2025
|
|
13
|
+
# j k, 2025
|
|
14
|
+
# Zoltán Kanász-Nagy, 2025
|
|
11
15
|
#
|
|
12
16
|
#, fuzzy
|
|
13
17
|
msgid ""
|
|
14
18
|
msgstr ""
|
|
15
|
-
"Project-Id-Version: invenio-app-rdm
|
|
19
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
16
20
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
17
|
-
"POT-Creation-Date:
|
|
21
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
18
22
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
19
|
-
"Last-Translator:
|
|
23
|
+
"Last-Translator: Zoltán Kanász-Nagy, 2025\n"
|
|
20
24
|
"Language-Team: Hungarian (https://app.transifex.com/inveniosoftware/teams/23537/hu/)\n"
|
|
21
25
|
"MIME-Version: 1.0\n"
|
|
22
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
23
27
|
"Content-Transfer-Encoding: 8bit\n"
|
|
24
|
-
"Generated-By: Babel 2.
|
|
28
|
+
"Generated-By: Babel 2.17.0\n"
|
|
25
29
|
"Language: hu\n"
|
|
26
30
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
27
31
|
|
|
28
|
-
#: invenio_app_rdm/config.py:
|
|
32
|
+
#: invenio_app_rdm/config.py:219
|
|
29
33
|
msgid "The turn-key research data management repository"
|
|
30
34
|
msgstr "A kész kutatási adatkezelési tárház"
|
|
31
35
|
|
|
32
|
-
#: invenio_app_rdm/config.py:
|
|
36
|
+
#: invenio_app_rdm/config.py:258
|
|
37
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
33
38
|
msgid "InvenioRDM"
|
|
34
39
|
msgstr "InvenioRDM"
|
|
35
40
|
|
|
36
|
-
#: invenio_app_rdm/config.py:
|
|
41
|
+
#: invenio_app_rdm/config.py:353
|
|
37
42
|
msgid "Welcome to Invenio App RDM!"
|
|
38
43
|
msgstr "Az Invenio App RDM üdvözli Önt!"
|
|
39
44
|
|
|
40
|
-
#: invenio_app_rdm/config.py:
|
|
45
|
+
#: invenio_app_rdm/config.py:750
|
|
41
46
|
msgid "JSON"
|
|
42
47
|
msgstr "JSON"
|
|
43
48
|
|
|
44
|
-
#: invenio_app_rdm/config.py:
|
|
49
|
+
#: invenio_app_rdm/config.py:757
|
|
50
|
+
msgid "JSON-LD"
|
|
51
|
+
msgstr "JSON-LD"
|
|
52
|
+
|
|
53
|
+
#: invenio_app_rdm/config.py:765
|
|
45
54
|
msgid "CSL"
|
|
46
55
|
msgstr "CSL"
|
|
47
56
|
|
|
48
|
-
#: invenio_app_rdm/config.py:
|
|
57
|
+
#: invenio_app_rdm/config.py:772
|
|
49
58
|
msgid "DataCite JSON"
|
|
50
59
|
msgstr "DataCite JSON"
|
|
51
60
|
|
|
52
|
-
#: invenio_app_rdm/config.py:
|
|
61
|
+
#: invenio_app_rdm/config.py:781
|
|
53
62
|
msgid "DataCite XML"
|
|
54
63
|
msgstr "DataCite XML"
|
|
55
64
|
|
|
56
|
-
#: invenio_app_rdm/config.py:
|
|
65
|
+
#: invenio_app_rdm/config.py:790
|
|
57
66
|
msgid "Dublin Core XML"
|
|
58
67
|
msgstr "Dublin Core XML"
|
|
59
68
|
|
|
60
|
-
#: invenio_app_rdm/config.py:
|
|
69
|
+
#: invenio_app_rdm/config.py:799
|
|
70
|
+
msgid "MARCXML"
|
|
71
|
+
msgstr "MARCXML"
|
|
72
|
+
|
|
73
|
+
#: invenio_app_rdm/config.py:806
|
|
74
|
+
msgid "BibTeX"
|
|
75
|
+
msgstr "BibTeX"
|
|
76
|
+
|
|
77
|
+
#: invenio_app_rdm/config.py:813
|
|
78
|
+
msgid "GeoJSON"
|
|
79
|
+
msgstr "GeoJSON"
|
|
80
|
+
|
|
81
|
+
#: invenio_app_rdm/config.py:820
|
|
82
|
+
msgid "DCAT"
|
|
83
|
+
msgstr "DCAT"
|
|
84
|
+
|
|
85
|
+
#: invenio_app_rdm/config.py:827
|
|
86
|
+
msgid "Codemeta"
|
|
87
|
+
msgstr "Codemeta"
|
|
88
|
+
|
|
89
|
+
#: invenio_app_rdm/config.py:834
|
|
90
|
+
msgid "Citation File Format"
|
|
91
|
+
msgstr "Idézési fájl formátuma"
|
|
92
|
+
|
|
93
|
+
#: invenio_app_rdm/config.py:996
|
|
61
94
|
msgid "APA"
|
|
62
95
|
msgstr "APA"
|
|
63
96
|
|
|
64
|
-
#: invenio_app_rdm/config.py:
|
|
97
|
+
#: invenio_app_rdm/config.py:997
|
|
65
98
|
msgid "Harvard"
|
|
66
99
|
msgstr "Harvard"
|
|
67
100
|
|
|
68
|
-
#: invenio_app_rdm/config.py:
|
|
101
|
+
#: invenio_app_rdm/config.py:998
|
|
69
102
|
msgid "MLA"
|
|
70
103
|
msgstr "MLA"
|
|
71
104
|
|
|
72
|
-
#: invenio_app_rdm/config.py:
|
|
105
|
+
#: invenio_app_rdm/config.py:999
|
|
73
106
|
msgid "Vancouver"
|
|
74
107
|
msgstr "Vancouver"
|
|
75
108
|
|
|
76
|
-
#: invenio_app_rdm/config.py:
|
|
109
|
+
#: invenio_app_rdm/config.py:1000
|
|
77
110
|
msgid "Chicago"
|
|
78
111
|
msgstr "Chicago"
|
|
79
112
|
|
|
80
|
-
#: invenio_app_rdm/config.py:
|
|
113
|
+
#: invenio_app_rdm/config.py:1001
|
|
81
114
|
msgid "IEEE"
|
|
82
115
|
msgstr "IEEE"
|
|
83
116
|
|
|
84
|
-
#: invenio_app_rdm/
|
|
85
|
-
msgid "
|
|
86
|
-
msgstr "
|
|
117
|
+
#: invenio_app_rdm/ext.py:57
|
|
118
|
+
msgid "My dashboard"
|
|
119
|
+
msgstr "Irányítópult"
|
|
87
120
|
|
|
88
|
-
#: invenio_app_rdm/
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
#: invenio_app_rdm/
|
|
91
|
-
msgid "
|
|
121
|
+
#: invenio_app_rdm/ext.py:63
|
|
122
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
123
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
124
|
+
msgid "New upload"
|
|
125
|
+
msgstr "Új feltöltés"
|
|
126
|
+
|
|
127
|
+
#: invenio_app_rdm/ext.py:77
|
|
128
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
129
|
+
msgid "Uploads"
|
|
130
|
+
msgstr "Feltöltések"
|
|
131
|
+
|
|
132
|
+
#: invenio_app_rdm/ext.py:82
|
|
133
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
134
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
135
|
+
msgid "Communities"
|
|
136
|
+
msgstr "Közösségek"
|
|
137
|
+
|
|
138
|
+
#: invenio_app_rdm/ext.py:87
|
|
139
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
140
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
141
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
142
|
+
msgid "Requests"
|
|
143
|
+
msgstr "Kérések"
|
|
144
|
+
|
|
145
|
+
#: invenio_app_rdm/ext.py:110
|
|
146
|
+
msgid "Home"
|
|
147
|
+
msgstr "Főoldal"
|
|
148
|
+
|
|
149
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
150
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
151
|
+
#: invenio_app_rdm/ext.py:118
|
|
152
|
+
msgid "Records"
|
|
153
|
+
msgstr "Rekordok"
|
|
154
|
+
|
|
155
|
+
#: invenio_app_rdm/ext.py:125
|
|
156
|
+
msgid "Submit"
|
|
157
|
+
msgstr "Elküld"
|
|
158
|
+
|
|
159
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
160
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
161
|
+
msgid "Domains"
|
|
162
|
+
msgstr "Domainek"
|
|
163
|
+
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
165
|
+
msgid "Site management"
|
|
166
|
+
msgstr "Oldalkezelés"
|
|
167
|
+
|
|
168
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
169
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
170
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
171
|
+
msgid "Domain"
|
|
172
|
+
msgstr "Domain"
|
|
173
|
+
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
175
|
+
msgid "TLD"
|
|
176
|
+
msgstr "TLD"
|
|
177
|
+
|
|
178
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
179
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
180
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
181
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
182
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
183
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
184
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
185
|
+
msgid "Status"
|
|
186
|
+
msgstr "Állapot"
|
|
187
|
+
|
|
188
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
189
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
190
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
191
|
+
msgid "Users"
|
|
192
|
+
msgstr "Felhasználók"
|
|
193
|
+
|
|
194
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
195
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
196
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
197
|
+
msgid "Active"
|
|
198
|
+
msgstr "Aktív"
|
|
199
|
+
|
|
200
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
201
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
202
|
+
msgid "Inactive"
|
|
203
|
+
msgstr "Inaktív"
|
|
204
|
+
|
|
205
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
206
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
207
|
+
msgid "Confirmed"
|
|
208
|
+
msgstr "Megerősítve"
|
|
209
|
+
|
|
210
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
211
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
212
|
+
msgid "Verified"
|
|
213
|
+
msgstr "Ellenőrizve"
|
|
214
|
+
|
|
215
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
216
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
217
|
+
msgid "Blocked"
|
|
218
|
+
msgstr "Letiltva"
|
|
219
|
+
|
|
220
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
221
|
+
msgid "Domain name (all lowercase)"
|
|
222
|
+
msgstr "Domain neve (kisbetűvel)"
|
|
223
|
+
|
|
224
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
225
|
+
msgid ""
|
|
226
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
227
|
+
"domain require moderation), verified (users in domain does not require "
|
|
228
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
229
|
+
msgstr ""
|
|
230
|
+
"A domain állapota. Lehet: új (ellenőrzést igényel), moderált (a felhasználók"
|
|
231
|
+
" ellenőrzés alatt állnak), ellenőrzött (a felhasználók nem igényelnek "
|
|
232
|
+
"ellenőrzést) vagy letiltott (ezzel a domainnel nem lehet regisztrálni)."
|
|
233
|
+
|
|
234
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
235
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
236
|
+
msgid "Category"
|
|
237
|
+
msgstr "Kategória"
|
|
238
|
+
|
|
239
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
240
|
+
msgid "A label to categorise the domain."
|
|
241
|
+
msgstr "Címke a domain kategorizálásához."
|
|
242
|
+
|
|
243
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
244
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
245
|
+
msgid "Flagged"
|
|
246
|
+
msgstr "Megjelölve"
|
|
247
|
+
|
|
248
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
249
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
250
|
+
msgstr ""
|
|
251
|
+
"Automatikus folyamatok használják a domain ellenőrzést igénylőként való "
|
|
252
|
+
"megjelölésére."
|
|
253
|
+
|
|
254
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
255
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
256
|
+
msgid "Source of flag"
|
|
257
|
+
msgstr "A megjelölés forrása"
|
|
258
|
+
|
|
259
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
260
|
+
msgid "Which source flagged the domain."
|
|
261
|
+
msgstr "Melyik forrás jelölte meg a domaint."
|
|
262
|
+
|
|
263
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
264
|
+
msgid "Create domain"
|
|
265
|
+
msgstr "Domain létrehozása"
|
|
266
|
+
|
|
267
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
268
|
+
msgid "Edit domain"
|
|
269
|
+
msgstr "Domain szerkesztése"
|
|
270
|
+
|
|
271
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
272
|
+
msgid "Domain details"
|
|
273
|
+
msgstr "Domain részletei"
|
|
274
|
+
|
|
275
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
276
|
+
msgid "Top-level domain"
|
|
277
|
+
msgstr "Felső szintű domain (TLD)"
|
|
278
|
+
|
|
279
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
280
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
281
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
282
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
283
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
284
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
285
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
286
|
+
msgid "Created"
|
|
287
|
+
msgstr "Létrehozva"
|
|
288
|
+
|
|
289
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
290
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
291
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
292
|
+
msgid "Updated"
|
|
293
|
+
msgstr "Frissítve"
|
|
294
|
+
|
|
295
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
296
|
+
msgid "Organisation"
|
|
297
|
+
msgstr "Szervezet"
|
|
298
|
+
|
|
299
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
300
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
301
|
+
msgid "Records & files"
|
|
302
|
+
msgstr "Rekordok és fájlok"
|
|
303
|
+
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
305
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
306
|
+
msgid "Title"
|
|
307
|
+
msgstr "Cím"
|
|
308
|
+
|
|
309
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
310
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
311
|
+
msgid "Owner"
|
|
312
|
+
msgstr "Tulajdonos"
|
|
313
|
+
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
315
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
317
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
318
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
319
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
320
|
+
msgid "Files"
|
|
321
|
+
msgstr "Fájlok"
|
|
322
|
+
|
|
323
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
324
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
325
|
+
msgid "Stats"
|
|
326
|
+
msgstr "Statisztikák"
|
|
327
|
+
|
|
328
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
329
|
+
msgid "Delete record"
|
|
330
|
+
msgstr "Rekord törlése"
|
|
331
|
+
|
|
332
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
333
|
+
msgid "Restore record"
|
|
334
|
+
msgstr "Rekord visszaállítása"
|
|
335
|
+
|
|
336
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
337
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
338
|
+
msgid "Drafts"
|
|
339
|
+
msgstr "Piszkozatok"
|
|
340
|
+
|
|
341
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
342
|
+
msgid "Set quota"
|
|
343
|
+
msgstr "Kvóta beállítása"
|
|
344
|
+
|
|
345
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
346
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
347
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
348
|
+
msgid "Moderation"
|
|
349
|
+
msgstr "Moderáció"
|
|
350
|
+
|
|
351
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
352
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
353
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
354
|
+
msgid "User"
|
|
355
|
+
msgstr "Felhasználó"
|
|
356
|
+
|
|
357
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
358
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
359
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
360
|
+
msgid "Email"
|
|
361
|
+
msgstr "Email"
|
|
362
|
+
|
|
363
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
364
|
+
msgid "Email domain"
|
|
365
|
+
msgstr "Email domain"
|
|
366
|
+
|
|
367
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
368
|
+
msgid "Activity"
|
|
369
|
+
msgstr "Aktivitás"
|
|
370
|
+
|
|
371
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
372
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
373
|
+
msgid "Approve"
|
|
374
|
+
msgstr "Jóváhagyás"
|
|
375
|
+
|
|
376
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
377
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
378
|
+
msgid "Block"
|
|
379
|
+
msgstr "Letiltás"
|
|
380
|
+
|
|
381
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
382
|
+
msgid "User moderation"
|
|
383
|
+
msgstr "Felhasználó moderáció"
|
|
384
|
+
|
|
385
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
386
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
387
|
+
msgid "ID"
|
|
388
|
+
msgstr "ID"
|
|
389
|
+
|
|
390
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
391
|
+
msgid "Open"
|
|
392
|
+
msgstr "Megnyitás"
|
|
393
|
+
|
|
394
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
395
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
396
|
+
msgid "Username"
|
|
397
|
+
msgstr "Felhasználónév"
|
|
398
|
+
|
|
399
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
400
|
+
msgid "Domain "
|
|
401
|
+
msgstr "Domain "
|
|
402
|
+
|
|
403
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
404
|
+
msgid "Visibility"
|
|
405
|
+
msgstr "Láthatóság"
|
|
406
|
+
|
|
407
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
408
|
+
msgid "Confirmed at"
|
|
409
|
+
msgstr "Megerősítve ekkor:"
|
|
410
|
+
|
|
411
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
412
|
+
msgid "Verified at"
|
|
413
|
+
msgstr "Ellenőrizve ekkor:"
|
|
414
|
+
|
|
415
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
416
|
+
msgid "Blocked at"
|
|
417
|
+
msgstr "Letiltva ekkor:"
|
|
418
|
+
|
|
419
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
420
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
421
|
+
msgid "User management"
|
|
422
|
+
msgstr "Felhasználókezelés"
|
|
423
|
+
|
|
424
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
425
|
+
msgid "Restore"
|
|
426
|
+
msgstr "Visszaállítás"
|
|
427
|
+
|
|
428
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
429
|
+
msgid "Suspend"
|
|
430
|
+
msgstr "Felfüggesztés"
|
|
431
|
+
|
|
432
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
433
|
+
msgid "User details"
|
|
434
|
+
msgstr "Felhasználó adatai"
|
|
435
|
+
|
|
436
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
437
|
+
msgid "Search "
|
|
92
438
|
msgstr "Keresés"
|
|
93
439
|
|
|
94
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
440
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
95
441
|
msgid "New version"
|
|
96
442
|
msgstr "Új verzió"
|
|
97
443
|
|
|
98
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
99
|
-
#: invenio_app_rdm/theme/views.py:44
|
|
100
|
-
msgid "New upload"
|
|
101
|
-
msgstr "Új feltöltés"
|
|
102
|
-
|
|
103
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
|
|
444
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
104
445
|
msgid "Edit upload"
|
|
105
446
|
msgstr "Feltöltés szerkesztése"
|
|
106
447
|
|
|
107
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
448
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
108
449
|
msgid "Information banner"
|
|
109
450
|
msgstr "Információs sáv"
|
|
110
451
|
|
|
111
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
452
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
112
453
|
msgid "Community visibility"
|
|
113
454
|
msgstr "Közösségi láthatóság"
|
|
114
455
|
|
|
115
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
456
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
116
457
|
msgid "The community is restricted to users with access."
|
|
117
458
|
msgstr ""
|
|
118
459
|
"A közösség korlátozva van a hozzáféréssel rendelkező felhasználók számára."
|
|
119
460
|
|
|
120
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
121
462
|
msgid "Restricted"
|
|
122
463
|
msgstr "Korlátozott hozzáférés"
|
|
123
464
|
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
125
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
126
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
465
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
466
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
467
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
127
468
|
msgid "Preview"
|
|
128
469
|
msgstr "Előnézet"
|
|
129
470
|
|
|
130
|
-
#: 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:100
|
|
131
472
|
msgid "You are previewing a published record."
|
|
132
473
|
msgstr "Ez egy közzétett rekord előnézete."
|
|
133
474
|
|
|
134
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
475
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
135
476
|
msgid "You are previewing changes that have not yet been published."
|
|
136
477
|
msgstr "Az előnézet változtatásai még nincsenek közzétéve."
|
|
137
478
|
|
|
138
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
479
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
139
480
|
msgid "You are previewing a new record that has not yet been published."
|
|
140
481
|
msgstr "Ez egy még nem közzétett új rekord előnézete."
|
|
141
482
|
|
|
142
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
483
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
143
484
|
msgid ""
|
|
144
485
|
"You are previewing a new record version that has not yet been published."
|
|
145
486
|
msgstr "Ez egy még nem közzétett új rekordverzió előnézete."
|
|
146
487
|
|
|
147
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
488
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
148
489
|
#, python-format
|
|
149
490
|
msgid ""
|
|
150
491
|
"\n"
|
|
151
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
492
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
493
|
+
" available.\n"
|
|
152
494
|
" "
|
|
153
495
|
msgstr ""
|
|
154
496
|
"\n"
|
|
155
|
-
"
|
|
497
|
+
" Egy %(link_start)sújabb verziója%(link_end)s a rekordnak\n"
|
|
498
|
+
" elérhető.\n"
|
|
499
|
+
" "
|
|
156
500
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
501
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
158
502
|
msgid "Record access information"
|
|
159
503
|
msgstr "Rekord hozzáférési információk"
|
|
160
504
|
|
|
161
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
162
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
163
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
506
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
507
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
508
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
164
509
|
msgid "Reason"
|
|
165
510
|
msgstr "Indoklás"
|
|
166
511
|
|
|
167
|
-
#: 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:165
|
|
168
513
|
msgid "Back-navigation"
|
|
169
514
|
msgstr "Visszanavigálás"
|
|
170
515
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
516
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
172
517
|
msgid "Back to edit"
|
|
173
518
|
msgstr "Vissza a szerkesztéshez"
|
|
174
519
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
520
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
176
521
|
msgid "Manage record"
|
|
177
522
|
msgstr "Rekord kezelése"
|
|
178
523
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
524
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
180
525
|
msgid "Publication date and version number"
|
|
181
526
|
msgstr "Publikálás dátuma és verziószám"
|
|
182
527
|
|
|
183
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
528
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
184
529
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
185
530
|
msgid "Publication date"
|
|
186
531
|
msgstr "Publikálás dátuma"
|
|
187
532
|
|
|
188
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
533
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
189
534
|
msgid "Published"
|
|
190
535
|
msgstr "Publikálva"
|
|
191
536
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
537
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
538
|
+
#, python-brace-format
|
|
193
539
|
msgid "Version {version_number}"
|
|
194
540
|
msgstr "{version_number} verzió"
|
|
195
541
|
|
|
196
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
542
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
197
543
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
198
544
|
msgid "Resource type"
|
|
199
545
|
msgstr "Forrástípus"
|
|
200
546
|
|
|
201
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
547
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
202
548
|
msgid "Access status"
|
|
203
549
|
msgstr "Hozzáférési státusz"
|
|
204
550
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
551
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
206
552
|
msgid "Record title and creators"
|
|
207
553
|
msgstr "Rekord címe és készítői"
|
|
208
554
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
555
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
210
556
|
msgid "Creators and contributors"
|
|
211
557
|
msgstr "Készítők és közreműködők"
|
|
212
558
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
214
|
-
msgid "
|
|
215
|
-
msgstr "
|
|
559
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
560
|
+
msgid "Request access"
|
|
561
|
+
msgstr "Hozzáférés kérése"
|
|
216
562
|
|
|
217
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
563
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
564
|
+
msgid ""
|
|
565
|
+
"If you would like to request access to these files, please fill out the form"
|
|
566
|
+
" below."
|
|
567
|
+
msgstr ""
|
|
568
|
+
"Ha hozzá szeretne férni ezekhez a fájlokhoz, kérjük, töltse ki az alábbi "
|
|
569
|
+
"űrlapot."
|
|
570
|
+
|
|
571
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
572
|
+
msgid ""
|
|
573
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
574
|
+
"accepted:"
|
|
575
|
+
msgstr "Az alábbi feltételek teljesülése szükséges a kérés elfogadásához:"
|
|
223
576
|
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
578
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
579
|
+
msgid "System files"
|
|
580
|
+
msgstr "Rendszerfájlok"
|
|
581
|
+
|
|
582
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
225
583
|
msgid "Additional record details"
|
|
226
584
|
msgstr "További rekord adatok"
|
|
227
585
|
|
|
228
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
229
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
586
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
230
587
|
msgid "Record details"
|
|
231
588
|
msgstr "Rekord adatok"
|
|
232
589
|
|
|
233
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
234
|
-
msgid "Upload information"
|
|
235
|
-
msgstr "Információ feltöltése"
|
|
236
|
-
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:306
|
|
238
|
-
msgid "Created"
|
|
239
|
-
msgstr "Létrehozva"
|
|
240
|
-
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:312
|
|
242
|
-
msgid "Modified"
|
|
243
|
-
msgstr "Módosítva"
|
|
244
|
-
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:329
|
|
590
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
246
591
|
msgid "Jump to top of page"
|
|
247
592
|
msgstr "Ugrás az oldal tetejére"
|
|
248
593
|
|
|
249
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
594
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
250
595
|
msgid "Jump up"
|
|
251
596
|
msgstr "Ugrás fel"
|
|
252
597
|
|
|
598
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
599
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
600
|
+
msgid "Draft not found"
|
|
601
|
+
msgstr "Piszkozat nem található"
|
|
602
|
+
|
|
603
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
604
|
+
msgid ""
|
|
605
|
+
"This record has already been published and is not currently being edited, so"
|
|
606
|
+
" no draft exists."
|
|
607
|
+
msgstr ""
|
|
608
|
+
"Ez a rekord már közzé lett téve, és jelenleg nem áll szerkesztés alatt, így "
|
|
609
|
+
"nem létezik hozzá piszkozat."
|
|
610
|
+
|
|
611
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
612
|
+
msgid "Go to published record"
|
|
613
|
+
msgstr "Ugrás a közzétett rekordra"
|
|
614
|
+
|
|
253
615
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
254
616
|
msgid "Back to details"
|
|
255
617
|
msgstr "Vissza a részletekhez"
|
|
@@ -258,45 +620,121 @@ msgstr "Vissza a részletekhez"
|
|
|
258
620
|
msgid "Preview for"
|
|
259
621
|
msgstr "Előnézet ehhez:"
|
|
260
622
|
|
|
623
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
624
|
+
msgid "Permission required"
|
|
625
|
+
msgstr "Engedély szükséges"
|
|
626
|
+
|
|
627
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
628
|
+
msgid ""
|
|
629
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
630
|
+
"users with access."
|
|
631
|
+
msgstr ""
|
|
632
|
+
"A rekord korábban nyilvánosan elérhető volt, de jelenleg csak a "
|
|
633
|
+
"hozzáféréssel rendelkező felhasználók számára érhető el."
|
|
634
|
+
|
|
635
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
636
|
+
msgid ""
|
|
637
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
638
|
+
"active for reference."
|
|
639
|
+
msgstr ""
|
|
640
|
+
"A rekordhoz tartozó digitális objektumazonosító (DOI) továbbra is aktív és "
|
|
641
|
+
"hivatkozásként használható."
|
|
642
|
+
|
|
643
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
644
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
645
|
+
msgid "Identifier:"
|
|
646
|
+
msgstr "Azonosító:"
|
|
647
|
+
|
|
261
648
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
262
649
|
msgid "Search results"
|
|
263
650
|
msgstr "Keresési eredmények"
|
|
264
651
|
|
|
265
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
652
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
266
653
|
msgid "Tombstone"
|
|
267
654
|
msgstr "Helyettesítő oldal"
|
|
268
655
|
|
|
269
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
656
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
657
|
+
msgid "Reason unknown"
|
|
658
|
+
msgstr "Ismeretlen ok"
|
|
659
|
+
|
|
660
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
270
661
|
msgid "Gone"
|
|
271
662
|
msgstr "Véglegesen törölve"
|
|
272
663
|
|
|
273
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
664
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
274
665
|
#, python-format
|
|
275
666
|
msgid ""
|
|
276
667
|
"\n"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
" "
|
|
668
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
669
|
+
" metadata of the record is kept for archival purposes."
|
|
280
670
|
msgstr ""
|
|
281
671
|
"\n"
|
|
282
|
-
"A
|
|
672
|
+
" A rekord, amelyhez hozzá próbál férni, el lett távolítva a(z) %(sitename)s oldalról. A\n"
|
|
673
|
+
" rekord metaadatai archiválási célból megmaradnak."
|
|
283
674
|
|
|
284
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
675
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
285
676
|
msgid "Reason for removal:"
|
|
286
677
|
msgstr "Eltávolítás oka:"
|
|
287
678
|
|
|
288
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
679
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
680
|
+
msgid "Removed by:"
|
|
681
|
+
msgstr "Eltávolította:"
|
|
682
|
+
|
|
683
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
684
|
+
msgid "Removal note:"
|
|
685
|
+
msgstr "Eltávolítási megjegyzés:"
|
|
686
|
+
|
|
687
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
688
|
+
msgid "Date of removal:"
|
|
689
|
+
msgstr "Eltávolítás dátuma:"
|
|
690
|
+
|
|
691
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
692
|
+
msgid "Citation:"
|
|
693
|
+
msgstr "Idézés:"
|
|
694
|
+
|
|
695
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
696
|
+
msgid "You are currently not logged in"
|
|
697
|
+
msgstr "Jelenleg nincs bejelentkezve"
|
|
698
|
+
|
|
699
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
700
|
+
msgid "Do you have an account?"
|
|
701
|
+
msgstr "Van felhasználói fiókja?"
|
|
702
|
+
|
|
703
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
704
|
+
msgid "Log in here"
|
|
705
|
+
msgstr "Jelentkezzen be itt"
|
|
706
|
+
|
|
707
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
708
|
+
msgid "You are logged in as"
|
|
709
|
+
msgstr "Be van jelentkezve mint"
|
|
292
710
|
|
|
293
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
711
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
712
|
+
msgid "Not you?"
|
|
713
|
+
msgstr "Nem Ön?"
|
|
714
|
+
|
|
715
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
716
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
717
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
718
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
719
|
+
msgid "Log out"
|
|
720
|
+
msgstr "Kijelentkezés"
|
|
721
|
+
|
|
722
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
723
|
+
msgid "to switch account."
|
|
724
|
+
msgstr "fiók váltásához."
|
|
725
|
+
|
|
726
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
727
|
+
msgid "Send message"
|
|
728
|
+
msgstr "Üzenet küldése"
|
|
729
|
+
|
|
730
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
731
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
294
732
|
msgid "Creators"
|
|
295
733
|
msgstr "Készítők"
|
|
296
734
|
|
|
297
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
298
|
-
msgid "Contributors
|
|
299
|
-
msgstr "Közreműködők
|
|
735
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
736
|
+
msgid "Contributors"
|
|
737
|
+
msgstr "Közreműködők"
|
|
300
738
|
|
|
301
739
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
302
740
|
msgid "Record description"
|
|
@@ -306,57 +744,112 @@ msgstr "Rekord leírás"
|
|
|
306
744
|
msgid "Description"
|
|
307
745
|
msgstr "Leírás"
|
|
308
746
|
|
|
309
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
747
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
310
748
|
msgid "Additional details"
|
|
311
749
|
msgstr "További részletek"
|
|
312
750
|
|
|
313
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
752
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
314
753
|
msgid "Additional titles"
|
|
315
754
|
msgstr "További címek"
|
|
316
755
|
|
|
317
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
757
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
318
758
|
msgid "Identifiers"
|
|
319
759
|
msgstr "Azonosítók"
|
|
320
760
|
|
|
321
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
762
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
322
763
|
msgid "Related works"
|
|
323
764
|
msgstr "Kapcsolódó munkák"
|
|
324
765
|
|
|
325
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
767
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
326
768
|
msgid "Funding"
|
|
327
769
|
msgstr "Finanszírozás"
|
|
328
770
|
|
|
329
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
772
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
330
773
|
msgid "Dates"
|
|
331
774
|
msgstr "Dátumok"
|
|
332
775
|
|
|
333
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
334
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
777
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
335
778
|
msgid "References"
|
|
336
779
|
msgstr "Hivatkozások"
|
|
337
780
|
|
|
338
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
339
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
340
|
-
msgid "
|
|
341
|
-
msgstr "
|
|
342
|
-
|
|
343
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
782
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
783
|
+
msgid "Views"
|
|
784
|
+
msgstr "Megtekintések"
|
|
785
|
+
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
787
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
788
|
+
msgid "Downloads"
|
|
789
|
+
msgstr "Letöltések"
|
|
790
|
+
|
|
791
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
792
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
793
|
+
msgid "Show more details"
|
|
794
|
+
msgstr "További részletek megjelenítése"
|
|
795
|
+
|
|
796
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
797
|
+
msgid "Show less details"
|
|
798
|
+
msgstr "Kevesebb részlet megjelenítése"
|
|
799
|
+
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
801
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
802
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
803
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
804
|
+
msgid "All versions"
|
|
805
|
+
msgstr "Összes verzió"
|
|
806
|
+
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
810
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
811
|
+
msgid "This version"
|
|
812
|
+
msgstr "Ez a verzió"
|
|
813
|
+
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
815
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
816
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
817
|
+
msgid "More info"
|
|
818
|
+
msgstr "További információ"
|
|
819
|
+
|
|
820
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
821
|
+
msgid "Total views"
|
|
822
|
+
msgstr "Összes megtekintés"
|
|
823
|
+
|
|
824
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
825
|
+
msgid "Total downloads"
|
|
826
|
+
msgstr "Összes letöltés"
|
|
827
|
+
|
|
828
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
829
|
+
msgid "Data volume"
|
|
830
|
+
msgstr "Adatmennyiség"
|
|
831
|
+
|
|
832
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
833
|
+
msgid "Total data volume"
|
|
834
|
+
msgstr "Teljes adatmennyiség"
|
|
835
|
+
|
|
836
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
837
|
+
msgid "More info on how stats are collected."
|
|
838
|
+
msgstr "További információ a statisztikák gyűjtéséről."
|
|
350
839
|
|
|
351
840
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
352
841
|
msgid "Keywords"
|
|
353
842
|
msgstr "Kulcsszavak"
|
|
354
843
|
|
|
355
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
356
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
844
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
845
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
357
846
|
msgid "Search results for "
|
|
358
847
|
msgstr "Keresési eredmények erre:"
|
|
359
848
|
|
|
849
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
850
|
+
msgid "Citation"
|
|
851
|
+
msgstr "Idézés"
|
|
852
|
+
|
|
360
853
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
361
854
|
msgid "Details"
|
|
362
855
|
msgstr "Részletek"
|
|
@@ -366,55 +859,96 @@ msgid "Publisher"
|
|
|
366
859
|
msgstr "Kiadó"
|
|
367
860
|
|
|
368
861
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
862
|
+
msgid "Published in"
|
|
863
|
+
msgstr "Megjelent:"
|
|
864
|
+
|
|
865
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
866
|
+
msgid "Imprint"
|
|
867
|
+
msgstr "Impresszum"
|
|
868
|
+
|
|
869
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
870
|
+
msgid "Awarding university"
|
|
871
|
+
msgstr "Az adományozó egyetem"
|
|
872
|
+
|
|
873
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
874
|
+
msgid "Conference"
|
|
875
|
+
msgstr "Konferencia"
|
|
876
|
+
|
|
877
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
369
878
|
msgid "Languages"
|
|
370
879
|
msgstr "Nyelvek"
|
|
371
880
|
|
|
372
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
881
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
373
882
|
msgid "Formats"
|
|
374
883
|
msgstr "Formátumok"
|
|
375
884
|
|
|
376
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
885
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
377
886
|
msgid "Sizes"
|
|
378
887
|
msgstr "Méretek"
|
|
379
888
|
|
|
380
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
381
889
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
382
890
|
msgid "Export"
|
|
383
891
|
msgstr "Exportálás"
|
|
384
892
|
|
|
385
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
894
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
895
|
+
msgid "External resources"
|
|
896
|
+
msgstr "Külső források"
|
|
897
|
+
|
|
386
898
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
899
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
387
900
|
msgid "Keywords and subjects"
|
|
388
901
|
msgstr "Kulcsszavak és témák"
|
|
389
902
|
|
|
390
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
391
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
392
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
393
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
394
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
903
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
904
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
905
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
906
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
907
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
908
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
395
909
|
msgid "Opens in new tab"
|
|
396
910
|
msgstr "Új lapon nyílik meg"
|
|
397
911
|
|
|
398
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
912
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
913
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
914
|
+
msgid "Read more"
|
|
915
|
+
msgstr "Tudjon meg többet!"
|
|
916
|
+
|
|
399
917
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
400
918
|
msgid "Rights"
|
|
401
919
|
msgstr "Jogok"
|
|
402
920
|
|
|
403
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
921
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
404
922
|
msgid "Close"
|
|
405
923
|
msgstr "Bezárás"
|
|
406
924
|
|
|
407
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
925
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
408
926
|
msgid "No further description."
|
|
409
927
|
msgstr "Nincs további leírás."
|
|
410
928
|
|
|
929
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
930
|
+
msgid "Geographic locations"
|
|
931
|
+
msgstr "Földrajzi helyszínek"
|
|
932
|
+
|
|
411
933
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
412
934
|
msgid "Record management"
|
|
413
935
|
msgstr "Rekord kezelése"
|
|
414
936
|
|
|
415
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
416
|
-
msgid "
|
|
417
|
-
msgstr "
|
|
937
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
938
|
+
msgid "Metrics"
|
|
939
|
+
msgstr "Mérőszámok"
|
|
940
|
+
|
|
941
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
942
|
+
msgid "Upload information"
|
|
943
|
+
msgstr "Információ feltöltése"
|
|
944
|
+
|
|
945
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
946
|
+
msgid "Technical metadata"
|
|
947
|
+
msgstr "Technikai metaadatok"
|
|
948
|
+
|
|
949
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
950
|
+
msgid "Modified"
|
|
951
|
+
msgstr "Módosítva"
|
|
418
952
|
|
|
419
953
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
420
954
|
msgid "Versions"
|
|
@@ -441,28 +975,44 @@ msgstr "Affiliációk elrejtése"
|
|
|
441
975
|
msgid "Affiliations for"
|
|
442
976
|
msgstr "Affiliációk hozzá:"
|
|
443
977
|
|
|
444
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
978
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
445
979
|
msgid "Open external link"
|
|
446
980
|
msgstr "Külső link megnyitása"
|
|
447
981
|
|
|
448
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
982
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
983
|
+
msgid "Conference website"
|
|
984
|
+
msgstr "Konferencia weboldala"
|
|
985
|
+
|
|
986
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
987
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
988
|
+
msgid "DOI"
|
|
989
|
+
msgstr "DOI"
|
|
990
|
+
|
|
991
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
992
|
+
msgid "Get the DOI badge!"
|
|
993
|
+
msgstr "Szerezze meg a DOI jelvényt!"
|
|
994
|
+
|
|
995
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
996
|
+
msgid "DOI Badge"
|
|
997
|
+
msgstr "DOI jelvény"
|
|
998
|
+
|
|
999
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
449
1000
|
msgid "File preview"
|
|
450
1001
|
msgstr "Fájl előnézet"
|
|
451
1002
|
|
|
452
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1003
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
453
1004
|
msgid "Name"
|
|
454
1005
|
msgstr "Név"
|
|
455
1006
|
|
|
456
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1007
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
457
1008
|
msgid "Size"
|
|
458
1009
|
msgstr "Méret"
|
|
459
1010
|
|
|
460
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
msgstr "Tevékenységek"
|
|
1011
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1012
|
+
msgid "Download all"
|
|
1013
|
+
msgstr "Összes letöltése"
|
|
464
1014
|
|
|
465
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1015
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
466
1016
|
msgid ""
|
|
467
1017
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
468
1018
|
"file integrity."
|
|
@@ -470,317 +1020,383 @@ msgstr ""
|
|
|
470
1020
|
"Ez a fájl ujjlenyomata (ellenőrző összeg), amely a fájl integritásának "
|
|
471
1021
|
"ellenőrzésére használható."
|
|
472
1022
|
|
|
473
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1023
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
474
1024
|
msgid "Download"
|
|
475
1025
|
msgstr "Letöltés"
|
|
476
1026
|
|
|
477
|
-
#: invenio_app_rdm/records_ui/
|
|
478
|
-
msgid "
|
|
479
|
-
msgstr "
|
|
1027
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1028
|
+
msgid "Unknown"
|
|
1029
|
+
msgstr "Ismeretlen"
|
|
1030
|
+
|
|
1031
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1032
|
+
msgid "See the full number"
|
|
1033
|
+
msgstr "Teljes szám megtekintése"
|
|
480
1034
|
|
|
481
|
-
#: invenio_app_rdm/records_ui/
|
|
482
|
-
msgid "
|
|
483
|
-
msgstr "
|
|
1035
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1036
|
+
msgid "Version"
|
|
1037
|
+
msgstr "Verzió"
|
|
484
1038
|
|
|
485
|
-
#: invenio_app_rdm/records_ui/
|
|
1039
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1040
|
+
msgid "No DOI available"
|
|
1041
|
+
msgstr "Nem elérhető DOI"
|
|
1042
|
+
|
|
1043
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1044
|
+
#, python-format
|
|
1045
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1046
|
+
msgstr "A lefoglalt %(scheme_label)s elvetése."
|
|
1047
|
+
|
|
1048
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1049
|
+
#, python-format
|
|
1050
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1051
|
+
msgstr "Szerezzen be egy %(scheme_label)s-t most!"
|
|
1052
|
+
|
|
1053
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1054
|
+
#, python-format
|
|
486
1055
|
msgid ""
|
|
487
|
-
"Reserve a
|
|
488
|
-
"files prior to upload). The
|
|
489
|
-
" published."
|
|
1056
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1057
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1058
|
+
"is published."
|
|
490
1059
|
msgstr ""
|
|
491
|
-
"Foglaljon le egy
|
|
492
|
-
"előtt belekerülhet a fájlokba). A(z)
|
|
1060
|
+
"Foglaljon le egy %(scheme_label)s-t a gomb megnyomásával (így a feltöltés "
|
|
1061
|
+
"előtt belekerülhet a fájlokba). A(z) %(scheme_label)s a feltöltés "
|
|
493
1062
|
"közzétételekor regisztrálásra kerül."
|
|
494
1063
|
|
|
495
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1064
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1065
|
+
#, python-format
|
|
496
1066
|
msgid ""
|
|
497
|
-
"A
|
|
1067
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
498
1068
|
"Example: 10.1234/foo.bar"
|
|
499
1069
|
msgstr ""
|
|
500
|
-
"A
|
|
501
|
-
"Például: 10.1234/foo.bar"
|
|
1070
|
+
"A %(scheme_label)s lehetővé teszi a feltöltései egyszerű és egyértelmű "
|
|
1071
|
+
"hivatkozását. Például: 10.1234/foo.bar"
|
|
1072
|
+
|
|
1073
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1074
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1075
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1076
|
+
msgid "All"
|
|
1077
|
+
msgstr "Összes"
|
|
502
1078
|
|
|
503
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
504
1080
|
msgid "Back to invitations"
|
|
505
1081
|
msgstr "Vissza a meghívókhoz"
|
|
506
1082
|
|
|
507
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
508
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1083
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1084
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1085
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1086
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
509
1087
|
msgid "Back to requests"
|
|
510
1088
|
msgstr "Vissza a kérésekhez"
|
|
511
1089
|
|
|
512
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1090
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
513
1091
|
msgid "Conversation"
|
|
514
1092
|
msgstr "Beszélgetés"
|
|
515
1093
|
|
|
516
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1094
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
517
1095
|
msgid "Record"
|
|
518
1096
|
msgstr "Rekord"
|
|
519
1097
|
|
|
520
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1098
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1099
|
+
msgid "Access request"
|
|
1100
|
+
msgstr "Hozzáférés igénylése"
|
|
1101
|
+
|
|
1102
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
521
1103
|
msgid "View Community"
|
|
522
1104
|
msgstr "Közösség megtekintése"
|
|
523
1105
|
|
|
524
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1106
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
525
1107
|
msgid "View record"
|
|
526
1108
|
msgstr "Rekord megtekintése"
|
|
527
1109
|
|
|
528
|
-
#: invenio_app_rdm/theme/views.py:
|
|
529
|
-
msgid "
|
|
530
|
-
msgstr "
|
|
1110
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1111
|
+
msgid "Notification preferences were updated."
|
|
1112
|
+
msgstr "Az értesítési beállítások frissítve lettek."
|
|
531
1113
|
|
|
532
1114
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
533
1115
|
msgid "About InvenioRDM"
|
|
534
1116
|
msgstr "Az InvenioRDM-ről"
|
|
535
1117
|
|
|
536
1118
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
"
|
|
542
|
-
msgstr ""
|
|
543
|
-
|
|
544
|
-
|
|
1119
|
+
msgid "Product page"
|
|
1120
|
+
msgstr "Termékoldal"
|
|
1121
|
+
|
|
1122
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1123
|
+
msgid "Features"
|
|
1124
|
+
msgstr "Funkciók"
|
|
1125
|
+
|
|
1126
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1127
|
+
msgid "Roadmap"
|
|
1128
|
+
msgstr "Ütemterv"
|
|
545
1129
|
|
|
546
1130
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
"\n"
|
|
550
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
551
|
-
" "
|
|
552
|
-
msgstr ""
|
|
553
|
-
"\n"
|
|
554
|
-
"<p><a href=\"%(invenio_rdm_features)s\">Funkciók</a></p>"
|
|
1131
|
+
msgid "Demo site"
|
|
1132
|
+
msgstr "Demóoldal"
|
|
555
1133
|
|
|
556
1134
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
"
|
|
562
|
-
msgstr ""
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"
|
|
1135
|
+
msgid "Get involved"
|
|
1136
|
+
msgstr "Vegyen részt"
|
|
1137
|
+
|
|
1138
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1139
|
+
msgid "GitHub"
|
|
1140
|
+
msgstr "GitHub"
|
|
1141
|
+
|
|
1142
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1143
|
+
msgid "Project Milestones"
|
|
1144
|
+
msgstr "Projekt mérföldkövek"
|
|
566
1145
|
|
|
567
1146
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
"
|
|
573
|
-
msgstr ""
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
"
|
|
1147
|
+
msgid "Documentation"
|
|
1148
|
+
msgstr "Dokumentáció"
|
|
1149
|
+
|
|
1150
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
1151
|
+
msgid "Community"
|
|
1152
|
+
msgstr "Közösség"
|
|
1153
|
+
|
|
1154
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1155
|
+
msgid "Chatroom"
|
|
1156
|
+
msgstr "Chatszoba"
|
|
577
1157
|
|
|
578
1158
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
579
|
-
msgid "
|
|
580
|
-
msgstr "
|
|
1159
|
+
msgid "Forum"
|
|
1160
|
+
msgstr "Fórum"
|
|
581
1161
|
|
|
582
1162
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
"\n"
|
|
586
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
587
|
-
" "
|
|
588
|
-
msgstr ""
|
|
589
|
-
"\n"
|
|
590
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
591
|
-
" "
|
|
1163
|
+
msgid "Events & training"
|
|
1164
|
+
msgstr "Események és képzések"
|
|
592
1165
|
|
|
593
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
"\n"
|
|
597
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
598
|
-
" "
|
|
599
|
-
msgstr ""
|
|
600
|
-
"\n"
|
|
601
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Projekt Mérföldkövek</a></p>\n"
|
|
602
|
-
" "
|
|
1166
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1167
|
+
msgid "Impersonated session"
|
|
1168
|
+
msgstr "Más felhasználó nevében indított munkamenet"
|
|
603
1169
|
|
|
604
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
"\n"
|
|
608
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
609
|
-
" "
|
|
610
|
-
msgstr ""
|
|
611
|
-
"\n"
|
|
612
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Dokumentáció</a></p>\n"
|
|
613
|
-
" "
|
|
1170
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1171
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
1172
|
+
msgstr "Kérjük, jelentkezzen ki a lekérdezés befejezése után!"
|
|
614
1173
|
|
|
615
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
616
|
-
|
|
617
|
-
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1175
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1176
|
+
msgid "home"
|
|
1177
|
+
msgstr "főoldal"
|
|
618
1178
|
|
|
619
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
620
|
-
|
|
621
|
-
msgid ""
|
|
622
|
-
"
|
|
623
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
624
|
-
" "
|
|
625
|
-
msgstr ""
|
|
626
|
-
"\n"
|
|
627
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatszoba</a></p>\n"
|
|
628
|
-
" "
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1180
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1181
|
+
msgid "Menu"
|
|
1182
|
+
msgstr "Menü"
|
|
629
1183
|
|
|
630
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
631
|
-
|
|
632
|
-
msgid ""
|
|
633
|
-
"
|
|
634
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
635
|
-
" "
|
|
636
|
-
msgstr ""
|
|
637
|
-
"\n"
|
|
638
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Fórum</a></p>\n"
|
|
639
|
-
" "
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1185
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1186
|
+
msgid "Close menu"
|
|
1187
|
+
msgstr "Menü bezárása"
|
|
640
1188
|
|
|
641
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
642
|
-
|
|
643
|
-
msgid ""
|
|
644
|
-
"
|
|
645
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
646
|
-
" "
|
|
647
|
-
msgstr ""
|
|
648
|
-
"\n"
|
|
649
|
-
" <p><a href=\"%(invenio_events)s\">Események és képzések</a></p>\n"
|
|
650
|
-
" "
|
|
1189
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1190
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1191
|
+
msgid "Inbox"
|
|
1192
|
+
msgstr "Bejövő üzenetek"
|
|
651
1193
|
|
|
652
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
653
|
-
|
|
654
|
-
msgid ""
|
|
655
|
-
|
|
656
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
657
|
-
msgstr ""
|
|
658
|
-
"Powered by <a\n"
|
|
659
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1194
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1195
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1196
|
+
msgid "Search"
|
|
1197
|
+
msgstr "Keresés"
|
|
660
1198
|
|
|
661
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1199
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1200
|
+
msgid "Log in"
|
|
1201
|
+
msgstr "Bejelentkezés"
|
|
1202
|
+
|
|
1203
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1204
|
+
msgid "Sign up"
|
|
1205
|
+
msgstr "Regisztráció"
|
|
1206
|
+
|
|
1207
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1208
|
+
msgid "Quick create"
|
|
1209
|
+
msgstr "Gyors létrehozás"
|
|
1210
|
+
|
|
1211
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1212
|
+
msgid "Actions"
|
|
1213
|
+
msgstr "Tevékenységek"
|
|
1214
|
+
|
|
1215
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1216
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1217
|
+
msgid "My account"
|
|
1218
|
+
msgstr "Fiókom"
|
|
1219
|
+
|
|
1220
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
662
1221
|
msgid "You've successfully installed InvenioRDM!"
|
|
663
1222
|
msgstr "Sikeresen telepítette az InvenioRDM-et!"
|
|
664
1223
|
|
|
665
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1224
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
666
1225
|
msgid "What is ahead?"
|
|
667
1226
|
msgstr "Mi következik?"
|
|
668
1227
|
|
|
669
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1228
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
670
1229
|
msgid "Configure"
|
|
671
1230
|
msgstr "Konfigurálás"
|
|
672
1231
|
|
|
673
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
674
|
-
#, python-format
|
|
1232
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
675
1233
|
msgid ""
|
|
676
|
-
"
|
|
677
|
-
"
|
|
678
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
679
|
-
" section in the docs</a>.\n"
|
|
680
|
-
" "
|
|
1234
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1235
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
681
1236
|
msgstr ""
|
|
682
|
-
"
|
|
683
|
-
"
|
|
684
|
-
"információért tekintse meg a dokumentáció <a href=\"%(configuration_link)s\" target=\"_blank\">konfigurációról\n"
|
|
685
|
-
" szóló részét</a>!"
|
|
1237
|
+
"Konfigurálja az adatmodellt, forrástípusokat, jogosultságokat és egyebeket, "
|
|
1238
|
+
"hogy az megfeleljen az Ön igényeinek! További információért látogasson el a "
|
|
686
1239
|
|
|
687
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1240
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1241
|
+
msgid "configuration section in the docs"
|
|
1242
|
+
msgstr "dokumentáció konfigurációs szekciójába"
|
|
1243
|
+
|
|
1244
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
688
1245
|
msgid "Customize"
|
|
689
1246
|
msgstr "Testreszabás"
|
|
690
1247
|
|
|
691
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
692
|
-
#, python-format
|
|
1248
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
693
1249
|
msgid ""
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
697
|
-
" "
|
|
1250
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1251
|
+
"how to do so"
|
|
698
1252
|
msgstr ""
|
|
699
|
-
"
|
|
700
|
-
"
|
|
701
|
-
|
|
1253
|
+
"Testreszabhatja az elrendezést és a stílust, hogy az illeszkedjen az "
|
|
1254
|
+
"intézménye arculatához. Útmutató "
|
|
1255
|
+
|
|
1256
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1257
|
+
msgid "here"
|
|
1258
|
+
msgstr "itt"
|
|
702
1259
|
|
|
703
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1260
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
704
1261
|
msgid "Run it!"
|
|
705
1262
|
msgstr "Futtatás"
|
|
706
1263
|
|
|
707
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
"
|
|
714
|
-
msgstr ""
|
|
715
|
-
"\n"
|
|
716
|
-
"<a href=\"%(deployment_link)s\" target=\"_blank\">Futtassa</a> a saját\n"
|
|
717
|
-
"InvenioRDM példányát helyben vagy tárolókban."
|
|
1264
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1265
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
1266
|
+
msgstr "Futtassa az InvenioRDM példányát helyileg vagy konténerekben."
|
|
1267
|
+
|
|
1268
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1269
|
+
msgid "Run"
|
|
1270
|
+
msgstr "Futtatás"
|
|
718
1271
|
|
|
719
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1272
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
720
1273
|
msgid "Docs"
|
|
721
1274
|
msgstr "Dokumentumok"
|
|
722
1275
|
|
|
723
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1276
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
724
1277
|
msgid "Code"
|
|
725
1278
|
msgstr "Kód"
|
|
726
1279
|
|
|
727
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
728
|
-
msgid "
|
|
729
|
-
msgstr "
|
|
1280
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1281
|
+
msgid "To disable this section, add"
|
|
1282
|
+
msgstr "Ennek a szakasznak a letiltásához adja hozzá"
|
|
730
1283
|
|
|
731
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
732
|
-
msgid "
|
|
733
|
-
msgstr "
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1285
|
+
msgid "to your invenio.cfg file."
|
|
1286
|
+
msgstr "az invenio.cfg fájlhoz."
|
|
734
1287
|
|
|
735
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
msgid "Requests"
|
|
739
|
-
msgstr "Kérések"
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1289
|
+
msgid "In this community"
|
|
1290
|
+
msgstr "Ebben a közösségben"
|
|
740
1291
|
|
|
741
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
742
|
-
|
|
743
|
-
|
|
1292
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1293
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1294
|
+
msgid "Search records"
|
|
1295
|
+
msgstr "Rekordok keresése"
|
|
744
1296
|
|
|
745
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
746
|
-
|
|
747
|
-
|
|
1297
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1298
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1299
|
+
msgid "Powered by"
|
|
1300
|
+
msgstr "Üzemeltető:"
|
|
748
1301
|
|
|
749
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
750
|
-
msgid "
|
|
751
|
-
|
|
1302
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1303
|
+
msgid ""
|
|
1304
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1305
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
1306
|
+
msgstr ""
|
|
1307
|
+
"A következő fájlok 'hibásként' lettek megjelölve. Ez azt jelenti, hogy az "
|
|
1308
|
+
"ellenőrző összeg ellenőrzése sikertelen volt vagy időtúllépéssel zárult. "
|
|
1309
|
+
"Kérjük, tegyen lépéseket, ha szükséges."
|
|
752
1310
|
|
|
753
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
754
|
-
|
|
755
|
-
msgid "
|
|
756
|
-
msgstr "
|
|
1311
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1312
|
+
#, python-format
|
|
1313
|
+
msgid "ID: %s"
|
|
1314
|
+
msgstr "ID: %s"
|
|
757
1315
|
|
|
758
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
msgstr "Kijelentkezés"
|
|
1316
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1317
|
+
#, python-format
|
|
1318
|
+
msgid "URI: %s"
|
|
1319
|
+
msgstr "URI: %s"
|
|
763
1320
|
|
|
764
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
765
|
-
|
|
766
|
-
|
|
1321
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1322
|
+
#, python-format
|
|
1323
|
+
msgid "Name: %s"
|
|
1324
|
+
msgstr "Név: %s"
|
|
767
1325
|
|
|
768
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
769
|
-
|
|
770
|
-
msgid "
|
|
771
|
-
msgstr "
|
|
1326
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1327
|
+
#, python-format
|
|
1328
|
+
msgid "Created: %s"
|
|
1329
|
+
msgstr "Létrehozva: %s"
|
|
1330
|
+
|
|
1331
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1332
|
+
#, python-format
|
|
1333
|
+
msgid "Checksum: %s"
|
|
1334
|
+
msgstr "Ellenőrző összeg: %s"
|
|
1335
|
+
|
|
1336
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1337
|
+
#, python-format
|
|
1338
|
+
msgid "Last check date: %s"
|
|
1339
|
+
msgstr "Utolsó ellenőrzés dátuma: %s"
|
|
1340
|
+
|
|
1341
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1342
|
+
#, python-format
|
|
1343
|
+
msgid "Last check FAILED with result: %s"
|
|
1344
|
+
msgstr "Az utolsó ellenőrzés SIKERTELEN volt, eredmény: %s"
|
|
1345
|
+
|
|
1346
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1347
|
+
#, python-format
|
|
1348
|
+
msgid "Record: %s/records/%s"
|
|
1349
|
+
msgstr "Rekord: %s/records/%s"
|
|
1350
|
+
|
|
1351
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1352
|
+
#, python-format
|
|
1353
|
+
msgid "Draft: %s/uploads/%s"
|
|
1354
|
+
msgstr "Piszkozat: %s/uploads/%s"
|
|
772
1355
|
|
|
773
1356
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
774
1357
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1358
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
775
1359
|
msgid "Search guide"
|
|
776
|
-
msgstr "Keresési
|
|
1360
|
+
msgstr "Keresési útmutató"
|
|
777
1361
|
|
|
778
|
-
#: invenio_app_rdm/
|
|
779
|
-
#: invenio_app_rdm/
|
|
780
|
-
msgid "
|
|
781
|
-
msgstr "
|
|
1362
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1363
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1364
|
+
msgid "FAQ statistics"
|
|
1365
|
+
msgstr "GYIK statisztikák"
|
|
782
1366
|
|
|
783
|
-
#: invenio_app_rdm/
|
|
784
|
-
#: invenio_app_rdm/
|
|
785
|
-
msgid "
|
|
786
|
-
msgstr "
|
|
1367
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1368
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1369
|
+
msgid "FAQ versioning"
|
|
1370
|
+
msgstr "GYIK verziókövetés"
|
|
1371
|
+
|
|
1372
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1373
|
+
msgid "Recent uploads"
|
|
1374
|
+
msgstr "Legutóbbi feltöltések"
|
|
1375
|
+
|
|
1376
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1377
|
+
msgid "Verified community"
|
|
1378
|
+
msgstr "Ellenőrzött közösség"
|
|
1379
|
+
|
|
1380
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1381
|
+
msgid "Privacy policy"
|
|
1382
|
+
msgstr "Adatvédelmi irányelvek"
|
|
1383
|
+
|
|
1384
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1385
|
+
msgid "Terms of use"
|
|
1386
|
+
msgstr "Felhasználási feltételek"
|
|
1387
|
+
|
|
1388
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1389
|
+
msgid "Support"
|
|
1390
|
+
msgstr "Támogatás"
|
|
1391
|
+
|
|
1392
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1393
|
+
msgid "Your dashboard"
|
|
1394
|
+
msgstr "Irányítópult"
|
|
1395
|
+
|
|
1396
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1397
|
+
msgid "Anonymous user"
|
|
1398
|
+
msgstr "Névtelen felhasználó"
|
|
1399
|
+
|
|
1400
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1401
|
+
msgid "New community"
|
|
1402
|
+
msgstr "Új közösség"
|