invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/records.py +9 -7
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/administration/users/users.py +0 -5
- invenio_app_rdm/communities_ui/views/communities.py +9 -5
- invenio_app_rdm/config.py +73 -4
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/fixtures/pages.py +5 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
- invenio_app_rdm/records_ui/utils.py +93 -1
- invenio_app_rdm/records_ui/views/decorators.py +24 -14
- invenio_app_rdm/records_ui/views/deposits.py +100 -27
- invenio_app_rdm/records_ui/views/filters.py +11 -4
- invenio_app_rdm/records_ui/views/records.py +23 -13
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/views/requests.py +54 -87
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/webpack.py +3 -2
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/messages.pot +486 -303
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- tests/__init__.py +0 -8
- tests/api/__init__.py +0 -8
- tests/api/conftest.py +0 -24
- tests/api/test_protect_files_rest.py +0 -73
- tests/api/test_record_api.py +0 -175
- tests/api/test_stats_api.py +0 -26
- tests/conftest.py +0 -390
- tests/fixtures/__init__.py +0 -8
- tests/fixtures/app_data/oai_sets.yaml +0 -3
- tests/fixtures/app_data/pages/about.html +0 -1
- tests/fixtures/app_data/pages.yaml +0 -4
- tests/fixtures/conftest.py +0 -27
- tests/fixtures/test_cli.py +0 -25
- tests/fixtures/test_fixtures.py +0 -46
- tests/mock_module/__init__.py +0 -7
- tests/mock_module/templates/mock_mail.html +0 -27
- tests/mock_module/views.py +0 -32
- tests/redirector/__init__.py +0 -8
- tests/redirector/conftest.py +0 -54
- tests/redirector/test_redirector.py +0 -28
- tests/test_tasks.py +0 -209
- tests/test_utils.py +0 -67
- tests/test_version.py +0 -16
- tests/test_views.py +0 -43
- tests/ui/__init__.py +0 -8
- tests/ui/conftest.py +0 -115
- tests/ui/test_deposits.py +0 -115
- tests/ui/test_export_formats.py +0 -37
- tests/ui/test_file_download.py +0 -73
- tests/ui/test_filters.py +0 -10
- tests/ui/test_robotstxt.py +0 -35
- tests/ui/test_signposting_ui.py +0 -95
- tests/ui/test_sitemaps.py +0 -85
- tests/ui/test_stats_ui.py +0 -92
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json
CHANGED
|
@@ -1,263 +1,283 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Basic information": "Alapvető információ",
|
|
3
|
+
"Impersonate user": "Felhasználó azonosítása",
|
|
4
|
+
"Impersonate": "Azonosít",
|
|
5
|
+
"You must accept this.": "El kell fogadnia ezt.",
|
|
6
|
+
"Success": "Siker",
|
|
7
|
+
"User impersonated succesfully! You will be redirected in frontpage soon.": "Felhasználó sikeres azonosítása! Hamarosan visszairányítjuk a főoldalra.",
|
|
8
|
+
"Unable to impersonate user.": "A felhasználó azonosítása sikertelen.",
|
|
9
|
+
"Please read carefully and confirm the following statements before you proceed.": "Mielőtt továbblépne, kérjük, olvassa el figyelmesen és hagyja jóvá a következő pontokat.",
|
|
10
|
+
"You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>.": "A <bold>{{email}}(id: {{id}})</bold> felhasználó azonosítása következik.",
|
|
11
|
+
"You <bold>MUST</bold> logout after completing your inquiry.": "A lekérdezés befejezése után ki <bold>KELL</bold> jelentkeznie.",
|
|
12
|
+
"Close": "Bezárás",
|
|
13
|
+
"Set Quota": "Kvóta beállítása",
|
|
14
|
+
"Set quota in bytes": "Kvóta beállítása byte-ban",
|
|
15
|
+
"Note": "Jegyzet",
|
|
16
|
+
"This is the default quota that will be applied to any NEW records created by this user – it will NOT update quota of existing records.": "Ez az alapértelmezett kvóta, amely az adott felhasználó által létrehozott minden ÚJ rekordra vonatkozik - a meglévő rekordok kvótáját NEM frissíti.",
|
|
17
|
+
"Quota of {{id}} was set to {{quota}} {{unit}}": " {{id}} kvótája {{quota}} {{unit}}-ra módosult.",
|
|
18
|
+
"Unable to set quota.": "Kvóta beállítása sikertelen.",
|
|
19
|
+
"Quota size ({{unit}})": "A kvóta mérete ({{unit}})",
|
|
20
|
+
"Enter quota size...": "Adja meg a kvóta méretét...",
|
|
21
|
+
"Max file size ({{unit}})": "Maximális fájlméret ({{unit}})",
|
|
22
|
+
"Enter max file size...": "Adja meg a maximális fájlméretet...",
|
|
23
|
+
"Ticket 1234": "1234-es jegy",
|
|
24
|
+
"Set quota": "Kvóta beállítása",
|
|
25
|
+
"Domain": "Domain",
|
|
26
|
+
"Flagged": "Megjelölve",
|
|
27
|
+
"Organization": "Szervezet",
|
|
28
|
+
"Company": "Szervezet",
|
|
29
|
+
"Mail provider": "E-mail szolgáltató",
|
|
30
|
+
"Spammer": "Spamküldő",
|
|
31
|
+
"TLD": "TLD",
|
|
32
|
+
"Status": "Állapot",
|
|
33
|
+
"New": "Új",
|
|
34
|
+
"Moderated": "Moderálva",
|
|
35
|
+
"Verified": "Ellenőrizve",
|
|
36
|
+
"Blocked": "Letiltva",
|
|
37
|
+
"Users": "Felhasználók",
|
|
38
|
+
"Active": "Aktív",
|
|
39
|
+
"Inactive": "Inaktív",
|
|
40
|
+
"Confirmed": "Megerősítve",
|
|
41
|
+
"Links": "Linkek",
|
|
42
|
+
"Set quota for record {{recordId}}": "Kvóta beállítása a rekordhoz {{recordId}}",
|
|
43
|
+
"Delete record": "Rekord törlése",
|
|
44
|
+
"Restore record": "Rekord visszaállítása",
|
|
45
|
+
"Unavailability statement": "Elérhetetlenségi nyilatkozat",
|
|
46
|
+
"Record {{id}} was restored.": "Rekord {{id}} visszaállítva.",
|
|
47
|
+
"Unable to restore.": "Nem állítható vissza.",
|
|
48
|
+
"Are you sure you want to restore #{{id}}": "Biztosan vissza akarja állítani a/az #{{id}}-t?",
|
|
49
|
+
"Published": "Publikálva",
|
|
50
|
+
"Deleted": "Törölve",
|
|
51
|
+
"Scheduled for purge": "Törlésre ütemezve",
|
|
52
|
+
"Empty draft title": "Üres vázlatcím",
|
|
53
|
+
"version": "verzió",
|
|
54
|
+
"Owner": "Tulajdonos",
|
|
55
|
+
"Created": "Létrehozva",
|
|
56
|
+
"Files": "Fájlok",
|
|
57
|
+
"Stats": "Statisztikák",
|
|
58
|
+
"Record {{id}} was deleted.": "Rekord {{id}} törölve.",
|
|
59
|
+
"Unable to delete": "Nem törölhető",
|
|
60
|
+
"Public": "Nyilvános",
|
|
61
|
+
"Hidden": "Elrejtve",
|
|
62
|
+
"The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "A rekord törölt verziója rejtett, miközben az új rekord nyilvános. Javasolt a törölt verzió nyilvánossá tétele az új rekord deaktiválásakor.",
|
|
63
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is restricted. Please make sure no restricted information is shared in the tombstone below.": "INFORMÁCIÓSZIVÁRGÁS VESZÉLYE: A rekord törölt verziója nyilvános, miközben az új rekord korlátozott. Kérjük, ellenőrizze, hogy a törölt rekord ne tartalmazzon védett adatot.",
|
|
64
|
+
"Bibliographic citation": "Bibliográfiai hivatkozás",
|
|
65
|
+
"Input citation text. Blank field will be filled with APA citation by default.": "Beviteli hivatkozás szövege. Az üres mezőt alapértelmezés szerint APA hivatkozási stílussal tölti ki a rendszer.",
|
|
66
|
+
"Public note": "Nyilvános jegyzet",
|
|
67
|
+
"User {{name}} was approved.": "{{név}} felhasználó jóváhagyásra került.",
|
|
68
|
+
"User {{name}} is blocked.": "{{name}} felhasználó le lett tiltva.",
|
|
69
|
+
"Error": "Hiba",
|
|
70
|
+
"User": "Felhasználó",
|
|
71
|
+
"Email": "Email",
|
|
72
|
+
"Email domain": "Email domain",
|
|
73
|
+
"Actions": "Tevékenységek",
|
|
74
|
+
"Records": "Rekordok",
|
|
75
|
+
"Username": "Felhasználónév",
|
|
76
|
+
"GitHub": "GitHub",
|
|
77
|
+
"Updated": "Frissítve",
|
|
78
|
+
"Restore": "Visszaállítás",
|
|
79
|
+
"Restored": "Visszaállítva",
|
|
80
|
+
"Block": "Letiltás",
|
|
81
|
+
"Suspend": "Felfüggesztés",
|
|
82
|
+
"Suspended": "Felfüggesztve",
|
|
83
|
+
"Approve": "Jóváhagyás",
|
|
84
|
+
"Approved": "Jóváhagyva",
|
|
85
|
+
"Activate": "Aktivál",
|
|
86
|
+
"Activated": "Aktiválva",
|
|
87
|
+
"Set default quota for {{email}}": "Alapértelmezett kvóta beállítása {{email}} számára",
|
|
88
|
+
"Filter results": "Találatok szűrése",
|
|
89
|
+
"Search records in community...": "Rekordok keresése a közösségben...",
|
|
90
|
+
"Sort by": "Rendezési elv",
|
|
91
|
+
" results found": "találat",
|
|
92
|
+
" results found_plural": "találat",
|
|
93
|
+
"Search records...": "Rekordok keresése...",
|
|
94
|
+
"Search": "Keresés",
|
|
95
|
+
"Views": "Megtekintések",
|
|
96
|
+
"Downloads": "Letöltések",
|
|
3
97
|
"Copy to clipboard": "Másolás a vágólapra",
|
|
4
98
|
"Copied!": "Másolva!",
|
|
5
|
-
"
|
|
99
|
+
"Part of ": "Része ennek ",
|
|
100
|
+
"No creation date found.": "Létrehozási dátum nem található.",
|
|
101
|
+
"No description": "Nincs leírás",
|
|
102
|
+
"No publication date found.": "Publikálási dátum nem található.",
|
|
103
|
+
"No resource type": "Nincs forrástípus",
|
|
104
|
+
"No title": "Nincs cím",
|
|
105
|
+
"Uploaded on {{uploadDate}}": "Feltöltve: {{uploadDate}}",
|
|
106
|
+
"Published in: {{publishInfo}}": "Publikálva: {{publishInfo}}",
|
|
107
|
+
"{{count}} more versions exist for this record": "{{count}} további verzió érhető el ehhez a rekordhoz",
|
|
108
|
+
"{{count}} more versions exist for this record_plural": "{{count}} további verzió érhető el ehhez a rekordhoz",
|
|
109
|
+
"Person": "Személy",
|
|
6
110
|
"The record has no files.": "A rekordhoz nem tartoznak fájlok. ",
|
|
7
111
|
"Creators": "Készítők",
|
|
8
112
|
"Recommended information": "Ajánlott információ",
|
|
9
113
|
"Add contributor": "Közreműködő hozzáadása",
|
|
10
114
|
"Contributors": "Közreműködők",
|
|
115
|
+
"Edit contributor": "Közreműködő szerkesztése",
|
|
116
|
+
"Funding": "Finanszírozás",
|
|
117
|
+
"Awards/Grants": "Díjak/Támogatások",
|
|
11
118
|
"Alternate identifiers": "Alternatív azonosítók",
|
|
12
119
|
"Related works": "Kapcsolódó munkák",
|
|
120
|
+
"References": "Hivatkozások",
|
|
13
121
|
"Visibility": "Láthatóság",
|
|
122
|
+
"More": "Még több",
|
|
123
|
+
"Unable to request the access.": "Hozzáférés kérése sikertelen.",
|
|
124
|
+
"Your email address": "Az Ön e-mail címe",
|
|
125
|
+
"Email address": "Email cím",
|
|
126
|
+
"Your full name": "Az Ön teljes neve",
|
|
127
|
+
"Full name": "Teljes név",
|
|
128
|
+
"Request message": "Üzenet kérése",
|
|
129
|
+
"I agree to that my full name and email address is shared with the owners of the record": "Hozzájárulok, hogy a teljes nevemet és e-mail címemet megosszák a rekord tulajdonosaival",
|
|
130
|
+
"Request access": "Hozzáférés kérése",
|
|
131
|
+
"Email confirmation needed": "E-mailes megerősítés szükséges",
|
|
132
|
+
"We have sent you an email to verify your address.": "Küldtünk Önnek egy e-mailt, hogy ellenőrizze a címét.",
|
|
133
|
+
"\n Please check the email and follow the instructions to complete the access request.\n ": "\n Kérjük, ellenőrizze az e-mailt, és kövesse az utasításokat a hozzáférési kérelem kitöltéséhez.\n ",
|
|
134
|
+
"An error occurred while fetching communities.": "A közösségek lekérdezése során hiba történt.",
|
|
135
|
+
"Communities": "Közösségek",
|
|
136
|
+
"View all {{count}} communities": "Mind a(z) {{count}} közösség megtekintése",
|
|
137
|
+
"View all {{count}} communities_plural": "Mind a(z) {{count}} közösség megtekintése",
|
|
138
|
+
"Submit to community": "Benyújtás közösséghez",
|
|
139
|
+
"Pending submissions": "Függőben lévő beküldések",
|
|
140
|
+
"Manage communities": "Közösségek kezelése",
|
|
141
|
+
"Community management menu dropdown": "Közösségi menedzsment legördülő menüje",
|
|
14
142
|
"Edit": "Szerkesztés",
|
|
143
|
+
"Export selection": "Kijelölés exportálása",
|
|
144
|
+
"Download file": "Fájl letöltése",
|
|
145
|
+
"Export": "Exportálás",
|
|
146
|
+
"Manage": "Kezelés",
|
|
147
|
+
"Manage record": "Rekord kezelése",
|
|
148
|
+
"Manage user": "Felhasználó kezelése",
|
|
149
|
+
"Remove branding": "Branding eltávolítása",
|
|
150
|
+
"{{communityTitle}} is a default branding for this record": "A rekordhoz tartozó alapértelmezett megjelenés: {{communityTitle}}",
|
|
151
|
+
"Remove this community from appearing on top of the record details page.": "Távolítsa el ezt a közösséget a rekord adatlapjának tetejéről.",
|
|
152
|
+
"Set branding": "Branding beállítása",
|
|
153
|
+
"Set {{communityTitle}} as a default branding for this record": "{{communityTitle}} beállítása alapértelmezett megjelenítésként ehhez a rekordhoz. ",
|
|
154
|
+
"Set this community to appear on the top of the record details page.": "Jelenítse meg ezt a közösséget a rekord adatlapjának tetején.",
|
|
155
|
+
"Pending communities": "Függőben lévő közösségek",
|
|
156
|
+
"Search for pending submissions to communities...": "A közösségekhez küldött függőben lévő beadások keresése...",
|
|
15
157
|
"An error occurred while generating the citation.": "Hiba történt az idézés generálása közben.",
|
|
16
158
|
"Style": "Stílus",
|
|
159
|
+
"This record is not included in any communities yet.": "Ez a rekord még nem szerepel egyetlen közösségben sem.",
|
|
160
|
+
"Search for community...": "Közösség keresése...",
|
|
161
|
+
"Record submitted": "Rekord beküldve",
|
|
162
|
+
"Review requested": "Elbírálás kérése",
|
|
163
|
+
"Search in all communities": "Keresés az összes közösségben",
|
|
164
|
+
"Search in my communities": "Keresés a saját közösségeimben",
|
|
165
|
+
"Select a community": "Közösség kiválasztása",
|
|
166
|
+
"Version {{- version}}": "{{- version}} verzió",
|
|
17
167
|
"Preview": "Előnézet",
|
|
18
168
|
"Only published versions are displayed.": "Csak a közzétett verziókat jelenítettük meg.",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
169
|
+
"An error occurred while fetching the versions.": "A verziók lekérdezése során hiba történt.",
|
|
170
|
+
"View all {{count}} versions": "Mind a(z) {{count}} verzió megtekintése",
|
|
171
|
+
"View all {{count}} versions_plural": "Mind a(z) {{count}} verzió megtekintése",
|
|
172
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>": "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a DOI<3></3> használatával. Ez a DOI az összes verziót tartalmazza, és mindig a legutolsó verzióra fog mutatni.<5> Bővebben</5>.</0>",
|
|
173
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>": "<0><0>Összes változat idézése?</0> Az összes változatot idézheti a DOI használatával. A DOI-t az első változat közzétételekor regisztrálják. <4> Bővebben</4>.</0>",
|
|
174
|
+
"Remove": "Eltávolítás",
|
|
175
|
+
"Remove {{communityTitle}} from this record": "A {{communityTitle}} törlése ebből a rekordból",
|
|
176
|
+
"Remove community": "Közösség eltávolítása",
|
|
177
|
+
"Are you sure you want to remove the record from the community?": "Biztosan el akarja távolítani a rekordot a közösségből?",
|
|
178
|
+
"I understand the consequences:": "Megértettem a következményeket:",
|
|
179
|
+
"The record can only be re-included in the community by going through a new review by the community curators.": "A rekordot csak akkor lehet újra felvenni a közösségbe, ha a közösség kurátorai újból átnézik.",
|
|
180
|
+
"Something went wrong": "Valami hiba történt.",
|
|
181
|
+
"Cancel removal": "Eltávolítás visszavonása",
|
|
182
|
+
"Cancel": "Mégsem",
|
|
183
|
+
"Confirm removal": "Eltávolítás megerősítése",
|
|
184
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.": "A <1>„<1>{{communityTitle}}</1>”</1> közösség tagjai <4>elveszítik hozzáférésüket</4> a rekordhoz.",
|
|
185
|
+
"Select permissions": "Engedélyek kiválasztása",
|
|
186
|
+
"Short name for your link (optional).": "Rövid név a linkhez (opcionális)",
|
|
187
|
+
"Expiration date format: YYYY-MM-DD": "Lejárati dátum formátuma: ÉÉÉÉ-HH-NN",
|
|
188
|
+
"Expiration date: YYYY-MM-DD or never if blank (optional).": "Lejárati dátum: ÉÉÉÉ-HH-NN vagy üres mező esetén soha (opcionális)",
|
|
189
|
+
"Create a new link": "Új link létrehozása",
|
|
190
|
+
"Link title": "Link címe",
|
|
191
|
+
"Expires at": "Lejár:",
|
|
192
|
+
"Never": "Soha",
|
|
193
|
+
"Access": "Hozzáférés",
|
|
194
|
+
"Delete": "Törlés",
|
|
195
|
+
"Copy link": "Link másolása",
|
|
21
196
|
"Can view": "Megtekintheti",
|
|
197
|
+
"Can view restricted files of all versions of this record.": "Megtekintheti a rekord összes verziójának korlátozott fájljait.",
|
|
198
|
+
"Can preview drafts": "Előnézet megtekintése vázlatokból",
|
|
199
|
+
"Can view drafts and restricted files of all versions of this record.": "Megtekintheti a vázlatokat és a rekord összes verziójának korlátozott fájljait.",
|
|
22
200
|
"Can edit": "Szerkesztheti",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
201
|
+
"Can edit drafts and view restricted files of all versions of this record.": "Szerkesztheti a vázlatokat, és megtekintheti az összes verzió korlátozott fájljait.",
|
|
202
|
+
"Can view (view access link can be created only after the record is published)": "Megtekintheti (a megtekintési hivatkozás csak a közzététel után hozható létre)",
|
|
203
|
+
"Expires": "Lejár",
|
|
204
|
+
"This record has no links generated yet.": "Ehhez a rekordhoz még nem generáltak linkeket.",
|
|
205
|
+
"Unable to change the access request settings.": "Nem lehet módosítani a hozzáférési kérelem beállításait.",
|
|
206
|
+
"Allow authenticated users to request access to restricted files.": "Engedélyezi a hitelesített felhasználóknak a korlátozott fájlokhoz való hozzáférés kérését.",
|
|
207
|
+
"Allow non-authenticated users to request access to restricted files.": "Engedélyezi a nem hitelesített felhasználóknak a hozzáférés kérését a korlátozott fájlokhoz.",
|
|
208
|
+
"Accept conditions": "Feltételek elfogadása",
|
|
209
|
+
"Advanced options": "További lehetőségek",
|
|
210
|
+
"Save": "Mentés",
|
|
211
|
+
"No user has access to this record yet.": "Ehhez a rekordhoz még egy felhasználónak sincs hozzáférése.",
|
|
212
|
+
"People with access": "Hozzáféréssel rendelkező emberek",
|
|
213
|
+
"No group has access to this record yet.": "Ehhez a rekordhoz még egy csoportnak sincs hozzáférése.",
|
|
214
|
+
"Groups with access": "Hozzáféréssel rendelkező csoportok",
|
|
215
|
+
"You": "Ön",
|
|
216
|
+
"Add people": "Emberek hozzáadása",
|
|
217
|
+
"No selected users": "Nincsenek felhasználók kiválasztva",
|
|
218
|
+
"Search for users to grant access (only users with a public profile can be invited)": "Felhasználók keresése hozzáférés megadásához (csak nyilvános profillal rendelkező felhasználók hívhatók meg)",
|
|
219
|
+
"Search by email, full name or username": "Keresés email, teljes név vagy felhasználónév alapján",
|
|
220
|
+
"users": "felhasználók",
|
|
221
|
+
"Add groups": "Csoportok hozzáadása",
|
|
222
|
+
"Group": "Csoport",
|
|
223
|
+
"No selected groups": "Nincsenek kijelölt csoportok",
|
|
224
|
+
"Search for groups": "Csoportok keresése",
|
|
225
|
+
"groups": "csoportok",
|
|
226
|
+
"Add": "Hozzáadás",
|
|
227
|
+
"Notify people": "Emberek értesítése",
|
|
228
|
+
"Notification message": "Értesítés szövege",
|
|
229
|
+
"You are about to add": "Hamarosan hozzáadja",
|
|
230
|
+
"Access already granted": "A hozzáférés már engedélyezve van",
|
|
231
|
+
"Can manage": "Kezelheti",
|
|
232
|
+
"Can manage access, edit drafts and view restricted files of all versions of this record.": "Kezelheti a hozzáférést, szerkesztheti a vázlatokat, és megtekintheti az összes verzió korlátozott fájljait.",
|
|
233
|
+
"You don't have permissions to share this record.": "Nincs jogosultsága a rekord megosztására.",
|
|
234
|
+
"Share": "Megosztás",
|
|
235
|
+
"People": "Emberek",
|
|
236
|
+
"Groups": "Csoportok",
|
|
237
|
+
"Settings": "Beállítások",
|
|
238
|
+
"Share access": "Hozzáférés megosztása",
|
|
239
|
+
"Link expiration": "Hivatkozás lejárata",
|
|
240
|
+
"In 1 month": "1 hónap múlva",
|
|
241
|
+
"In 2 months": "2 hónap múlva",
|
|
242
|
+
"In 6 months": "6 hónap múlva",
|
|
243
|
+
"In 1 year": "1 év múlva",
|
|
244
|
+
"Invalid date format.": "Érvénytelen dátumformátum.",
|
|
245
|
+
"Access link expiration date cannot be in the past.": "A hozzáférési link lejárati dátuma nem lehet múltbeli.",
|
|
246
|
+
"Access request": "Hozzáférés igénylése",
|
|
247
|
+
"Unable to change the expiration request settings.": "Nem sikerült módosítani a lejárati beállításokat.",
|
|
248
|
+
"Expiration date: ": "Lejárat dátuma:",
|
|
249
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave empty to set no expiration limit.": "Formátum: ÉÉÉÉ-HH-NN. A megadott napon a hozzáférés lejár. Hagyja üresen, ha nem szeretne lejárati időt megadni.",
|
|
250
|
+
"Link expiration date:": "Hivatkozás lejárati dátuma:",
|
|
251
|
+
"We couldn't find any matches for {{- search}}": "Nincs találat a következőre: {{- search}}",
|
|
252
|
+
"Start over": "Újrakezdés",
|
|
253
|
+
"ProTip": "ProTip",
|
|
25
254
|
"Search guide": "Keresési útmutató",
|
|
26
|
-
"
|
|
255
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>": "<0>További tippekért tekintse meg a <2>keresési útmutatónkat</2> az összetett keresési lekérdezések megadásához.</0>",
|
|
256
|
+
"Search in my communities...": "Keresés a közösségeimben...",
|
|
27
257
|
"View": "Megtekintés",
|
|
28
|
-
"
|
|
29
|
-
"Open": "Megnyitás",
|
|
30
|
-
"No creation date found.": "Létrehozási dátum nem található.",
|
|
31
|
-
"No description": "Nincs leírás",
|
|
32
|
-
"No publication date found.": "Publikálási dátum nem található.",
|
|
33
|
-
"No resource type": "Nincs forrástípus",
|
|
34
|
-
"No title": "Nincs cím",
|
|
35
|
-
"Make your first upload!": "Tegye meg az első feltöltését!",
|
|
36
|
-
"New upload": "Új feltöltés",
|
|
37
|
-
"ORCID profile": "ORCID profil",
|
|
38
|
-
"ROR profile": "ROR profil",
|
|
39
|
-
"GND profile": "GND profil",
|
|
40
|
-
"Start over": "Újrakezdés",
|
|
41
|
-
"ProTip": "ProTipp",
|
|
42
|
-
"Export": "Exportálás",
|
|
43
|
-
"Filter results": "Találatok szűrése",
|
|
258
|
+
"Published in: {{publishedIn}}": "Publikálva: {{publishedIn}}",
|
|
44
259
|
"In review": "Bírálás alatt",
|
|
45
260
|
"Declined": "Elutasítva",
|
|
46
261
|
"Expired": "Lejárt",
|
|
47
|
-
"Draft": "
|
|
262
|
+
"Draft": "Piszkozat",
|
|
48
263
|
"New version draft": "Piszkozat új verzióhoz",
|
|
49
|
-
"Download file": "Fájl letöltése",
|
|
50
|
-
"Search records...": "Rekordok keresése...",
|
|
51
|
-
"Search in my communities...": "Keresés a közösségeimben...",
|
|
52
|
-
"Actions": "Tevékenységek",
|
|
53
264
|
"open": "megnyit",
|
|
265
|
+
"Open": "Megnyitás",
|
|
54
266
|
"unlock": "felold",
|
|
267
|
+
"Get started!": "Kezdjük!",
|
|
268
|
+
"Make your first upload!": "Tegye meg az első feltöltését!",
|
|
269
|
+
"New upload": "Új feltöltés",
|
|
55
270
|
"Search in my uploads...": "Keresés a feltöltéseim között...",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"This is the default quota that will be applied to any NEW records created by this user – it will NOT update quota of existing records.": "",
|
|
69
|
-
"Quota of {{id}} was set to {{quota}} {{unit}}": "",
|
|
70
|
-
"Unable to set quota.": "",
|
|
71
|
-
"Quota size ({{unit}})": "",
|
|
72
|
-
"Enter quota size...": "",
|
|
73
|
-
"Max file size ({{unit}})": "",
|
|
74
|
-
"Enter max file size...": "",
|
|
75
|
-
"Ticket 1234": "",
|
|
76
|
-
"Close": "",
|
|
77
|
-
"Set quota": "",
|
|
78
|
-
"Domain": "",
|
|
79
|
-
"Flagged": "",
|
|
80
|
-
"Organization": "",
|
|
81
|
-
"Company": "",
|
|
82
|
-
"Mail provider": "",
|
|
83
|
-
"Spammer": "",
|
|
84
|
-
"TLD": "",
|
|
85
|
-
"Status": "",
|
|
86
|
-
"New": "",
|
|
87
|
-
"Moderated": "",
|
|
88
|
-
"Verified": "",
|
|
89
|
-
"Blocked": "",
|
|
90
|
-
"Users": "",
|
|
91
|
-
"Active": "",
|
|
92
|
-
"Inactive": "",
|
|
93
|
-
"Confirmed": "",
|
|
94
|
-
"Links": "",
|
|
95
|
-
"Set quota for record {{recordId}}": "",
|
|
96
|
-
"Delete record": "",
|
|
97
|
-
"Restore record": "",
|
|
98
|
-
"Unavailability statement": "",
|
|
99
|
-
"Record {{id}} was restored.": "",
|
|
100
|
-
"Unable to restore.": "",
|
|
101
|
-
"Are you sure you want to restore #{{id}}": "",
|
|
102
|
-
"Published": "",
|
|
103
|
-
"Deleted": "",
|
|
104
|
-
"Scheduled for purge": "",
|
|
105
|
-
"Empty draft title": "",
|
|
106
|
-
"version": "",
|
|
107
|
-
"Owner": "",
|
|
108
|
-
"Created": "",
|
|
109
|
-
"Stats": "",
|
|
110
|
-
"Record {{id}} was deleted.": "",
|
|
111
|
-
"Unable to delete": "",
|
|
112
|
-
"The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "",
|
|
113
|
-
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is restricted. Please make sure no restricted information is shared in the tombstone below.": "",
|
|
114
|
-
"Bibliographic citation": "",
|
|
115
|
-
"Input citation text. Blank field will be filled with APA citation by default.": "",
|
|
116
|
-
"Public note": "",
|
|
117
|
-
"User {{name}} was approved.": "",
|
|
118
|
-
"User {{name}} is blocked.": "",
|
|
119
|
-
"Error": "",
|
|
120
|
-
"User": "",
|
|
121
|
-
"Email": "",
|
|
122
|
-
"Email domain": "",
|
|
123
|
-
"Username": "",
|
|
124
|
-
"GitHub": "",
|
|
125
|
-
"Updated": "",
|
|
126
|
-
"Restore": "",
|
|
127
|
-
"Restored": "",
|
|
128
|
-
"Block": "",
|
|
129
|
-
"Suspend": "",
|
|
130
|
-
"Suspended": "",
|
|
131
|
-
"Approve": "",
|
|
132
|
-
"Approved": "",
|
|
133
|
-
"Activate": "",
|
|
134
|
-
"Activated": "",
|
|
135
|
-
"Set default quota for {{email}}": "",
|
|
136
|
-
"Search records in community...": "",
|
|
137
|
-
" results found": "",
|
|
138
|
-
" results found_plural": "",
|
|
139
|
-
"Views": "",
|
|
140
|
-
"Downloads": "",
|
|
141
|
-
"Part of ": "",
|
|
142
|
-
"Uploaded on {{uploadDate}}": "",
|
|
143
|
-
"Published in: {{publishInfo}}": "",
|
|
144
|
-
"{{count}} more versions exist for this record": "",
|
|
145
|
-
"{{count}} more versions exist for this record_plural": "",
|
|
146
|
-
"References": "",
|
|
147
|
-
"More": "",
|
|
148
|
-
"Unable to request the access.": "",
|
|
149
|
-
"Email address": "",
|
|
150
|
-
"Your full name": "",
|
|
151
|
-
"Full name": "",
|
|
152
|
-
"Request message": "",
|
|
153
|
-
"I agree to that my full name and email address is shared with the owners of the record": "",
|
|
154
|
-
"Request access": "",
|
|
155
|
-
"An error occurred while fetching communities.": "",
|
|
156
|
-
"Communities": "",
|
|
157
|
-
"View all {{count}} communities": "",
|
|
158
|
-
"View all {{count}} communities_plural": "",
|
|
159
|
-
"Submit to community": "",
|
|
160
|
-
"Pending submissions": "",
|
|
161
|
-
"Manage communities": "",
|
|
162
|
-
"Community management menu dropdown": "",
|
|
163
|
-
"Export selection": "",
|
|
164
|
-
"Manage": "",
|
|
165
|
-
"Manage record": "",
|
|
166
|
-
"Manage user": "",
|
|
167
|
-
"Remove branding": "",
|
|
168
|
-
"{{communityTitle}} is a default branding for this record": "",
|
|
169
|
-
"Remove this community from appearing on top of the record details page.": "",
|
|
170
|
-
"Set branding": "",
|
|
171
|
-
"Set {{communityTitle}} as a default branding for this record": "",
|
|
172
|
-
"Set this community to appear on the top of the record details page.": "",
|
|
173
|
-
"Pending communities": "",
|
|
174
|
-
"Search for pending submissions to communities...": "",
|
|
175
|
-
"This record is not included in any communities yet.": "",
|
|
176
|
-
"Search for community...": "",
|
|
177
|
-
"Record submitted": "",
|
|
178
|
-
"Review requested": "",
|
|
179
|
-
"Search in all communities": "",
|
|
180
|
-
"Search in my communities": "",
|
|
181
|
-
"Select a community": "",
|
|
182
|
-
"Version {{- version}}": "",
|
|
183
|
-
"An error occurred while fetching the versions.": "",
|
|
184
|
-
"View all {{count}} versions": "",
|
|
185
|
-
"View all {{count}} versions_plural": "",
|
|
186
|
-
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>": "<0><0>Cite all versions?</0> You can cite all versions by using the DOI <3></3>. This DOI represents all versions, and will always resolve to the latest one. <5>Read more</5>.</0>",
|
|
187
|
-
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>": "<0><0>Cite all versions?</0> You can cite all versions by using the DOI . The DOI is registered when the first version is published. <4>Read more</4>.</0>",
|
|
188
|
-
"Remove": "",
|
|
189
|
-
"Remove {{communityTitle}} from this record": "",
|
|
190
|
-
"Remove community": "",
|
|
191
|
-
"Are you sure you want to remove the record from the community?": "",
|
|
192
|
-
"I understand the consequences:": "",
|
|
193
|
-
"The record can only be re-included in the community by going through a new review by the community curators.": "",
|
|
194
|
-
"Something went wrong": "",
|
|
195
|
-
"Cancel removal": "",
|
|
196
|
-
"Cancel": "",
|
|
197
|
-
"Confirm removal": "",
|
|
198
|
-
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.": "Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose their access</4> to the record.",
|
|
199
|
-
"Select permissions": "",
|
|
200
|
-
"Short name for your link (optional).": "",
|
|
201
|
-
"Expiration date format: YYYY-MM-DD": "",
|
|
202
|
-
"Expiration date: YYYY-MM-DD or never if blank (optional).": "",
|
|
203
|
-
"Create a new link": "",
|
|
204
|
-
"Never": "",
|
|
205
|
-
"Delete": "",
|
|
206
|
-
"Can view restricted files of all versions of this record.": "",
|
|
207
|
-
"Can preview drafts": "",
|
|
208
|
-
"Can view drafts and restricted files of all versions of this record.": "",
|
|
209
|
-
"Can edit drafts and view restricted files of all versions of this record.": "",
|
|
210
|
-
"Can view (view access link can be created only after the record is published)": "",
|
|
211
|
-
"Link title": "",
|
|
212
|
-
"Expires": "",
|
|
213
|
-
"Access": "",
|
|
214
|
-
"This record has no links generated yet.": "",
|
|
215
|
-
"Unable to change the access request settings.": "",
|
|
216
|
-
"Allow authenticated users to request access to restricted files.": "",
|
|
217
|
-
"Allow non-authenticated users to request access to restricted files.": "",
|
|
218
|
-
"Accept conditions": "",
|
|
219
|
-
"Advanced options": "",
|
|
220
|
-
"Save": "",
|
|
221
|
-
"No user has access to this record yet.": "",
|
|
222
|
-
"People with access": "",
|
|
223
|
-
"No group has access to this record yet.": "",
|
|
224
|
-
"Groups with access": "",
|
|
225
|
-
"You": "",
|
|
226
|
-
"Add people": "",
|
|
227
|
-
"No selected users": "",
|
|
228
|
-
"Search for users to grant access (only users with a public profile can be invited)": "",
|
|
229
|
-
"Search by email, full name or username": "",
|
|
230
|
-
"users": "",
|
|
231
|
-
"Add groups": "",
|
|
232
|
-
"Group": "",
|
|
233
|
-
"No selected groups": "",
|
|
234
|
-
"Search for groups": "",
|
|
235
|
-
"groups": "",
|
|
236
|
-
"Add": "",
|
|
237
|
-
"Notify people": "",
|
|
238
|
-
"Notification message": "",
|
|
239
|
-
"You are about to add": "",
|
|
240
|
-
"Access already granted": "",
|
|
241
|
-
"Can manage": "",
|
|
242
|
-
"Can manage access, edit drafts and view restricted files of all versions of this record.": "",
|
|
243
|
-
"People": "",
|
|
244
|
-
"Groups": "",
|
|
245
|
-
"Settings": "",
|
|
246
|
-
"Share access": "",
|
|
247
|
-
"Link expiration": "",
|
|
248
|
-
"In 1 month": "",
|
|
249
|
-
"In 2 months": "",
|
|
250
|
-
"In 6 months": "",
|
|
251
|
-
"In 1 year": "",
|
|
252
|
-
"Invalid date format.": "",
|
|
253
|
-
"Access link expiration date cannot be in the past.": "",
|
|
254
|
-
"Access request": "",
|
|
255
|
-
"Unable to change the expiration request settings.": "",
|
|
256
|
-
"Expiration date: ": "",
|
|
257
|
-
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave empty to set no expiration limit.": "",
|
|
258
|
-
"Link expiration date:": "",
|
|
259
|
-
"We couldn't find any matches for {{- search}}": "",
|
|
260
|
-
"<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>": "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>",
|
|
261
|
-
"<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>": "<0>For more tips, check out our <2>search guide</2> for defining advanced search queries.</0>",
|
|
262
|
-
"Published in: {{publishedIn}}": ""
|
|
271
|
+
"ORCID profile": "ORCID profil",
|
|
272
|
+
"ORCID logo": "ORCID logó",
|
|
273
|
+
"ROR profile": "ROR profil",
|
|
274
|
+
"ROR logo": "ROR logó",
|
|
275
|
+
"GND profile": "GND profil",
|
|
276
|
+
"GND logo": "GND logó",
|
|
277
|
+
"No name": "Név nélküli",
|
|
278
|
+
"and {{count}} other": "és további {{count}}",
|
|
279
|
+
"and {{count}} other_plural": "és további {{count}}",
|
|
280
|
+
"and {{count}} others": "és további {{count}}",
|
|
281
|
+
"and {{count}} others_plural": "és további {{count}}",
|
|
282
|
+
"<0><0>metadata.publication_date:[2017-01-01 TO *]</0> will give you all the publications from 2017 until today.</0>": "<0><0>metadata.publication_date:[2017-01-01 TO *]</0> lekérdezéssel 2017. január 1-jétől kezdődően a mai napig bezárólag minden publikáció listázásra kerül.</0>"
|
|
263
283
|
}
|
|
@@ -1,69 +1,20 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Copyright (C) 2025 CERN
|
|
1
|
+
// Copyright (C) 2024 Graz University of Technology.
|
|
3
2
|
// Copyright (C) 2025 KTH Royal Institute of Technology
|
|
4
|
-
//
|
|
5
|
-
// Invenio-app-rdm is free software; you can redistribute it and/or modify it
|
|
6
|
-
// under the terms of the MIT License; see LICENSE file for more details.
|
|
7
|
-
//
|
|
8
|
-
|
|
9
|
-
import TRANSLATE_AR from "./ar/translations.json";
|
|
10
|
-
import TRANSLATE_BG from "./bg/translations.json";
|
|
11
|
-
import TRANSLATE_CA from "./ca/translations.json";
|
|
12
|
-
import TRANSLATE_CS from "./cs/translations.json";
|
|
13
|
-
import TRANSLATE_DA from "./da/translations.json";
|
|
14
|
-
import TRANSLATE_DE from "./de/translations.json";
|
|
15
|
-
import TRANSLATE_EL from "./el/translations.json";
|
|
16
|
-
import TRANSLATE_EN from "./en/translations.json";
|
|
17
|
-
import TRANSLATE_ES from "./es/translations.json";
|
|
18
|
-
import TRANSLATE_ET from "./et/translations.json";
|
|
19
|
-
import TRANSLATE_FA from "./fa/translations.json";
|
|
20
|
-
import TRANSLATE_FR from "./fr/translations.json";
|
|
21
|
-
import TRANSLATE_HR from "./hr/translations.json";
|
|
22
|
-
import TRANSLATE_HU from "./hu/translations.json";
|
|
23
|
-
import TRANSLATE_IT from "./it/translations.json";
|
|
24
|
-
import TRANSLATE_JA from "./ja/translations.json";
|
|
25
|
-
import TRANSLATE_KA from "./ka/translations.json";
|
|
26
|
-
import TRANSLATE_LT from "./lt/translations.json";
|
|
27
|
-
import TRANSLATE_NO from "./no/translations.json";
|
|
28
|
-
import TRANSLATE_PL from "./pl/translations.json";
|
|
29
|
-
import TRANSLATE_PT from "./pt/translations.json";
|
|
30
|
-
import TRANSLATE_RO from "./ro/translations.json";
|
|
31
|
-
import TRANSLATE_RU from "./ru/translations.json";
|
|
32
|
-
import TRANSLATE_SK from "./sk/translations.json";
|
|
33
|
-
import TRANSLATE_SV from "./sv/translations.json";
|
|
34
|
-
import TRANSLATE_TR from "./tr/translations.json";
|
|
35
|
-
import TRANSLATE_UK from "./uk/translations.json";
|
|
36
|
-
import TRANSLATE_ZH_CN from "./zh_CN/translations.json";
|
|
37
|
-
import TRANSLATE_ZH_TW from "./zh_TW/translations.json";
|
|
38
3
|
|
|
4
|
+
/*
|
|
5
|
+
This will import translations from an auto-generated file in order to not have to manually adapt the provided languages.
|
|
6
|
+
The auto generated file will be created when running npm run compile_catalog
|
|
7
|
+
File structure of the generated file will look like:
|
|
8
|
+
import TRANSLATE_de from "./de/translations.json";
|
|
9
|
+
import TRANSLATE_en from "./en/translations.json";
|
|
10
|
+
import TRANSLATE_es from "./es/translations.json";
|
|
39
11
|
export const translations = {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
cs: { translation: TRANSLATE_CS },
|
|
44
|
-
da: { translation: TRANSLATE_DA },
|
|
45
|
-
de: { translation: TRANSLATE_DE },
|
|
46
|
-
el: { translation: TRANSLATE_EL },
|
|
47
|
-
en: { translation: TRANSLATE_EN },
|
|
48
|
-
es: { translation: TRANSLATE_ES },
|
|
49
|
-
et: { translation: TRANSLATE_ET },
|
|
50
|
-
fa: { translation: TRANSLATE_FA },
|
|
51
|
-
fr: { translation: TRANSLATE_FR },
|
|
52
|
-
hr: { translation: TRANSLATE_HR },
|
|
53
|
-
hu: { translation: TRANSLATE_HU },
|
|
54
|
-
it: { translation: TRANSLATE_IT },
|
|
55
|
-
ja: { translation: TRANSLATE_JA },
|
|
56
|
-
ka: { translation: TRANSLATE_KA },
|
|
57
|
-
lt: { translation: TRANSLATE_LT },
|
|
58
|
-
no: { translation: TRANSLATE_NO },
|
|
59
|
-
pl: { translation: TRANSLATE_PL },
|
|
60
|
-
pt: { translation: TRANSLATE_PT },
|
|
61
|
-
ro: { translation: TRANSLATE_RO },
|
|
62
|
-
ru: { translation: TRANSLATE_RU },
|
|
63
|
-
sk: { translation: TRANSLATE_SK },
|
|
64
|
-
sv: { translation: TRANSLATE_SV },
|
|
65
|
-
tr: { translation: TRANSLATE_TR },
|
|
66
|
-
uk: { translation: TRANSLATE_UK },
|
|
67
|
-
zh_CN: { translation: TRANSLATE_ZH_CN },
|
|
68
|
-
zh_TW: { translation: TRANSLATE_ZH_TW },
|
|
12
|
+
de: { translation: TRANSLATE_de },
|
|
13
|
+
en: { translation: TRANSLATE_en },
|
|
14
|
+
es: { translation: TRANSLATE_es },
|
|
69
15
|
};
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
import { translations } from "./_generatedTranslations";
|
|
19
|
+
|
|
20
|
+
export { translations };
|