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/en/translations.json
CHANGED
|
@@ -1,18 +1,30 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"Recent changes": "Recent changes",
|
|
3
|
+
"Audit Log Details": "Audit Log Details",
|
|
4
|
+
"Resource": "Resource",
|
|
5
|
+
"Resource ID": "Resource ID",
|
|
6
|
+
"Action": "Action",
|
|
7
|
+
"User": "User",
|
|
8
|
+
"Created": "Created",
|
|
9
|
+
"No revision ID found.": "No revision ID found.",
|
|
10
|
+
"Unable to fetch revisions.": "Unable to fetch revisions.",
|
|
11
|
+
"Cancel revision comparison": "Cancel revision comparison",
|
|
3
12
|
"Impersonate user": "Impersonate user",
|
|
13
|
+
"Impersonate": "Impersonate",
|
|
4
14
|
"You must accept this.": "You must accept this.",
|
|
5
15
|
"Success": "Success",
|
|
6
16
|
"User impersonated succesfully! You will be redirected in frontpage soon.": "User impersonated succesfully! You will be redirected in frontpage soon.",
|
|
7
17
|
"Unable to impersonate user.": "Unable to impersonate user.",
|
|
8
18
|
"Please read carefully and confirm the following statements before you proceed.": "Please read carefully and confirm the following statements before you proceed.",
|
|
9
|
-
"You are about to impersonate user
|
|
10
|
-
"You
|
|
11
|
-
"
|
|
19
|
+
"You are about to impersonate user ": "You are about to impersonate user ",
|
|
20
|
+
"You ": "You ",
|
|
21
|
+
"MUST": "MUST",
|
|
22
|
+
" logout after completing your inquiry.": " logout after completing your inquiry.",
|
|
23
|
+
"Close": "Close",
|
|
12
24
|
"Set Quota": "Set Quota",
|
|
13
25
|
"Set quota in bytes": "Set quota in bytes",
|
|
14
26
|
"Note": "Note",
|
|
15
|
-
"This is the default quota that will be applied to any NEW records created by this user
|
|
27
|
+
"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.": "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.",
|
|
16
28
|
"Quota of {{id}} was set to {{quota}} {{unit}}": "Quota of {{id}} was set to {{quota}} {{unit}}",
|
|
17
29
|
"Unable to set quota.": "Unable to set quota.",
|
|
18
30
|
"Quota size ({{unit}})": "Quota size ({{unit}})",
|
|
@@ -20,7 +32,6 @@
|
|
|
20
32
|
"Max file size ({{unit}})": "Max file size ({{unit}})",
|
|
21
33
|
"Enter max file size...": "Enter max file size...",
|
|
22
34
|
"Ticket 1234": "Ticket 1234",
|
|
23
|
-
"Close": "Close",
|
|
24
35
|
"Set quota": "Set quota",
|
|
25
36
|
"Domain": "Domain",
|
|
26
37
|
"Flagged": "Flagged",
|
|
@@ -40,6 +51,7 @@
|
|
|
40
51
|
"Confirmed": "Confirmed",
|
|
41
52
|
"Links": "Links",
|
|
42
53
|
"Set quota for record {{recordId}}": "Set quota for record {{recordId}}",
|
|
54
|
+
"Compare revisions": "Compare revisions",
|
|
43
55
|
"Delete record": "Delete record",
|
|
44
56
|
"Restore record": "Restore record",
|
|
45
57
|
"Unavailability statement": "Unavailability statement",
|
|
@@ -52,11 +64,13 @@
|
|
|
52
64
|
"Empty draft title": "Empty draft title",
|
|
53
65
|
"version": "version",
|
|
54
66
|
"Owner": "Owner",
|
|
55
|
-
"
|
|
67
|
+
"System": "System",
|
|
56
68
|
"Files": "Files",
|
|
57
69
|
"Stats": "Stats",
|
|
58
70
|
"Record {{id}} was deleted.": "Record {{id}} was deleted.",
|
|
59
71
|
"Unable to delete": "Unable to delete",
|
|
72
|
+
"Public": "Public",
|
|
73
|
+
"Hidden": "Hidden",
|
|
60
74
|
"The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.": "The tombstone is set to hidden but your record is public. Best practice is to provide a public tombstone when deactivating public records.",
|
|
61
75
|
"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.": "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.",
|
|
62
76
|
"Bibliographic citation": "Bibliographic citation",
|
|
@@ -65,13 +79,15 @@
|
|
|
65
79
|
"User {{name}} was approved.": "User {{name}} was approved.",
|
|
66
80
|
"User {{name}} is blocked.": "User {{name}} is blocked.",
|
|
67
81
|
"Error": "Error",
|
|
68
|
-
"User": "User",
|
|
69
82
|
"Email": "Email",
|
|
70
83
|
"Email domain": "Email domain",
|
|
71
84
|
"Actions": "Actions",
|
|
85
|
+
"Records": "Records",
|
|
72
86
|
"Username": "Username",
|
|
73
87
|
"GitHub": "GitHub",
|
|
74
88
|
"Updated": "Updated",
|
|
89
|
+
"Drafts": "Drafts",
|
|
90
|
+
"Moderation": "Moderation",
|
|
75
91
|
"Restore": "Restore",
|
|
76
92
|
"Restored": "Restored",
|
|
77
93
|
"Block": "Block",
|
|
@@ -84,9 +100,8 @@
|
|
|
84
100
|
"Set default quota for {{email}}": "Set default quota for {{email}}",
|
|
85
101
|
"Filter results": "Filter results",
|
|
86
102
|
"Search records in community...": "Search records in community...",
|
|
103
|
+
"results found": "results found",
|
|
87
104
|
"Sort by": "Sort by",
|
|
88
|
-
" results found": " results found",
|
|
89
|
-
" results found_plural": " results found",
|
|
90
105
|
"Search records...": "Search records...",
|
|
91
106
|
"Search": "Search",
|
|
92
107
|
"Views": "Views",
|
|
@@ -94,27 +109,44 @@
|
|
|
94
109
|
"Copy to clipboard": "Copy to clipboard",
|
|
95
110
|
"Copied!": "Copied!",
|
|
96
111
|
"Part of ": "Part of ",
|
|
112
|
+
"No creation date found.": "No creation date found.",
|
|
113
|
+
"No description": "No description",
|
|
114
|
+
"No publication date found.": "No publication date found.",
|
|
115
|
+
"No resource type": "No resource type",
|
|
116
|
+
"No title": "No title",
|
|
97
117
|
"Uploaded on {{uploadDate}}": "Uploaded on {{uploadDate}}",
|
|
98
|
-
"Published in: {{publishInfo}}": "Published in: {{publishInfo}}",
|
|
118
|
+
"Published in: {{- publishInfo }}": "Published in: {{- publishInfo }}",
|
|
99
119
|
"{{count}} more versions exist for this record": "{{count}} more versions exist for this record",
|
|
100
120
|
"{{count}} more versions exist for this record_plural": "{{count}} more versions exist for this record",
|
|
121
|
+
"Recommendation": "Recommendation",
|
|
122
|
+
"This check is recommended but not mandatory.": "This check is recommended but not mandatory.",
|
|
123
|
+
"This check indicates a critical issue that must be addressed.": "This check indicates a critical issue that must be addressed.",
|
|
124
|
+
"Person": "Person",
|
|
101
125
|
"The record has no files.": "The record has no files.",
|
|
126
|
+
"Basic information": "Basic information",
|
|
102
127
|
"Creators": "Creators",
|
|
103
128
|
"Recommended information": "Recommended information",
|
|
104
129
|
"Add contributor": "Add contributor",
|
|
105
130
|
"Contributors": "Contributors",
|
|
131
|
+
"Edit contributor": "Edit contributor",
|
|
132
|
+
"Funding": "Funding",
|
|
133
|
+
"Awards/Grants": "Awards/Grants",
|
|
106
134
|
"Alternate identifiers": "Alternate identifiers",
|
|
107
135
|
"Related works": "Related works",
|
|
108
136
|
"References": "References",
|
|
109
137
|
"Visibility": "Visibility",
|
|
110
138
|
"More": "More",
|
|
111
139
|
"Unable to request the access.": "Unable to request the access.",
|
|
140
|
+
"Your email address": "Your email address",
|
|
112
141
|
"Email address": "Email address",
|
|
113
142
|
"Your full name": "Your full name",
|
|
114
143
|
"Full name": "Full name",
|
|
115
144
|
"Request message": "Request message",
|
|
116
145
|
"I agree to that my full name and email address is shared with the owners of the record": "I agree to that my full name and email address is shared with the owners of the record",
|
|
117
146
|
"Request access": "Request access",
|
|
147
|
+
"Email confirmation needed": "Email confirmation needed",
|
|
148
|
+
"We have sent you an email to verify your address.": "We have sent you an email to verify your address.",
|
|
149
|
+
"\n Please check the email and follow the instructions to complete the access request.\n ": "\n Please check the email and follow the instructions to complete the access request.\n ",
|
|
118
150
|
"An error occurred while fetching communities.": "An error occurred while fetching communities.",
|
|
119
151
|
"Communities": "Communities",
|
|
120
152
|
"View all {{count}} communities": "View all {{count}} communities",
|
|
@@ -130,6 +162,9 @@
|
|
|
130
162
|
"Manage": "Manage",
|
|
131
163
|
"Manage record": "Manage record",
|
|
132
164
|
"Manage user": "Manage user",
|
|
165
|
+
"Block user": "Block user",
|
|
166
|
+
"Block User": "Block User",
|
|
167
|
+
"Blocking the user will delete all existing records of the user.": "Blocking the user will delete all existing records of the user.",
|
|
133
168
|
"Remove branding": "Remove branding",
|
|
134
169
|
"{{communityTitle}} is a default branding for this record": "{{communityTitle}} is a default branding for this record",
|
|
135
170
|
"Remove this community from appearing on top of the record details page.": "Remove this community from appearing on top of the record details page.",
|
|
@@ -141,6 +176,7 @@
|
|
|
141
176
|
"An error occurred while generating the citation.": "An error occurred while generating the citation.",
|
|
142
177
|
"Style": "Style",
|
|
143
178
|
"This record is not included in any communities yet.": "This record is not included in any communities yet.",
|
|
179
|
+
"Part of": "Part of",
|
|
144
180
|
"Search for community...": "Search for community...",
|
|
145
181
|
"Record submitted": "Record submitted",
|
|
146
182
|
"Review requested": "Review requested",
|
|
@@ -153,37 +189,44 @@
|
|
|
153
189
|
"An error occurred while fetching the versions.": "An error occurred while fetching the versions.",
|
|
154
190
|
"View all {{count}} versions": "View all {{count}} versions",
|
|
155
191
|
"View all {{count}} versions_plural": "View all {{count}} versions",
|
|
156
|
-
"
|
|
157
|
-
"
|
|
192
|
+
"Cite all versions?": "Cite all versions?",
|
|
193
|
+
"You can cite all versions by using the DOI": "You can cite all versions by using the DOI",
|
|
194
|
+
"This DOI represents all versions, and will always resolve to the latest one.": "This DOI represents all versions, and will always resolve to the latest one.",
|
|
195
|
+
"Read more": "Read more",
|
|
196
|
+
"The DOI is registered when the first version is published.": "The DOI is registered when the first version is published.",
|
|
158
197
|
"Remove": "Remove",
|
|
159
198
|
"Remove {{communityTitle}} from this record": "Remove {{communityTitle}} from this record",
|
|
160
199
|
"Remove community": "Remove community",
|
|
161
200
|
"Are you sure you want to remove the record from the community?": "Are you sure you want to remove the record from the community?",
|
|
162
201
|
"I understand the consequences:": "I understand the consequences:",
|
|
202
|
+
"Members of the community ": "Members of the community ",
|
|
203
|
+
" will ": " will ",
|
|
204
|
+
"lose their access": "lose their access",
|
|
205
|
+
" to the record.": " to the record.",
|
|
163
206
|
"The record can only be re-included in the community by going through a new review by the community curators.": "The record can only be re-included in the community by going through a new review by the community curators.",
|
|
164
207
|
"Something went wrong": "Something went wrong",
|
|
165
208
|
"Cancel removal": "Cancel removal",
|
|
166
209
|
"Cancel": "Cancel",
|
|
167
210
|
"Confirm removal": "Confirm removal",
|
|
168
|
-
"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.",
|
|
169
211
|
"Select permissions": "Select permissions",
|
|
170
212
|
"Short name for your link (optional).": "Short name for your link (optional).",
|
|
171
213
|
"Expiration date format: YYYY-MM-DD": "Expiration date format: YYYY-MM-DD",
|
|
172
214
|
"Expiration date: YYYY-MM-DD or never if blank (optional).": "Expiration date: YYYY-MM-DD or never if blank (optional).",
|
|
173
215
|
"Create a new link": "Create a new link",
|
|
216
|
+
"Link title": "Link title",
|
|
217
|
+
"Expires at": "Expires at",
|
|
174
218
|
"Never": "Never",
|
|
219
|
+
"Access": "Access",
|
|
175
220
|
"Delete": "Delete",
|
|
176
221
|
"Copy link": "Copy link",
|
|
177
222
|
"Can view": "Can view",
|
|
178
223
|
"Can view restricted files of all versions of this record.": "Can view restricted files of all versions of this record.",
|
|
179
224
|
"Can preview drafts": "Can preview drafts",
|
|
180
|
-
"Can view drafts
|
|
225
|
+
"Can view drafts, restricted files, and comment on associated draft requests of all versions of this record.": "Can view drafts, restricted files, and comment on associated draft requests of all versions of this record.",
|
|
181
226
|
"Can edit": "Can edit",
|
|
182
|
-
"Can edit drafts
|
|
227
|
+
"Can edit drafts, view restricted files, and comment on associated draft requests of all versions of this record.": "Can edit drafts, view restricted files, and comment on associated draft requests of all versions of this record.",
|
|
183
228
|
"Can view (view access link can be created only after the record is published)": "Can view (view access link can be created only after the record is published)",
|
|
184
|
-
"Link title": "Link title",
|
|
185
229
|
"Expires": "Expires",
|
|
186
|
-
"Access": "Access",
|
|
187
230
|
"This record has no links generated yet.": "This record has no links generated yet.",
|
|
188
231
|
"Unable to change the access request settings.": "Unable to change the access request settings.",
|
|
189
232
|
"Allow authenticated users to request access to restricted files.": "Allow authenticated users to request access to restricted files.",
|
|
@@ -212,7 +255,7 @@
|
|
|
212
255
|
"You are about to add": "You are about to add",
|
|
213
256
|
"Access already granted": "Access already granted",
|
|
214
257
|
"Can manage": "Can manage",
|
|
215
|
-
"Can manage access, edit drafts
|
|
258
|
+
"Can manage access, edit drafts, view restricted files, and comment on associated draft requests of all versions of this record.": "Can manage access, edit drafts, view restricted files, and comment on associated draft requests of all versions of this record.",
|
|
216
259
|
"You don't have permissions to share this record.": "You don't have permissions to share this record.",
|
|
217
260
|
"Share": "Share",
|
|
218
261
|
"People": "People",
|
|
@@ -234,13 +277,18 @@
|
|
|
234
277
|
"We couldn't find any matches for {{- search}}": "We couldn't find any matches for {{- search}}",
|
|
235
278
|
"Start over": "Start over",
|
|
236
279
|
"ProTip": "ProTip",
|
|
280
|
+
"will give you all the publications from 2025 until today.": "will give you all the publications from 2025 until today.",
|
|
281
|
+
"For more tips, check out our ": "For more tips, check out our ",
|
|
237
282
|
"Search guide": "Search guide",
|
|
238
|
-
"
|
|
239
|
-
"
|
|
283
|
+
"search guide": "search guide",
|
|
284
|
+
"for defining advanced search queries.": "for defining advanced search queries.",
|
|
285
|
+
"This community has no subcommunities": "This community has no subcommunities",
|
|
286
|
+
"Logging in...": "Logging in...",
|
|
287
|
+
"Logging out...": "Logging out...",
|
|
240
288
|
"Search in my communities...": "Search in my communities...",
|
|
289
|
+
"My communities": "My communities",
|
|
241
290
|
"View": "View",
|
|
242
|
-
"
|
|
243
|
-
"Published in: {{publishedIn}}": "Published in: {{publishedIn}}",
|
|
291
|
+
"Published in: {{- publishedIn }}": "Published in: {{- publishedIn }}",
|
|
244
292
|
"In review": "In review",
|
|
245
293
|
"Declined": "Declined",
|
|
246
294
|
"Expired": "Expired",
|
|
@@ -249,15 +297,20 @@
|
|
|
249
297
|
"open": "open",
|
|
250
298
|
"Open": "Open",
|
|
251
299
|
"unlock": "unlock",
|
|
252
|
-
"No description": "No description",
|
|
253
|
-
"No title": "No title",
|
|
254
|
-
"No publication date found.": "No publication date found.",
|
|
255
|
-
"No resource type": "No resource type",
|
|
256
300
|
"Get started!": "Get started!",
|
|
257
301
|
"Make your first upload!": "Make your first upload!",
|
|
258
302
|
"New upload": "New upload",
|
|
259
303
|
"Search in my uploads...": "Search in my uploads...",
|
|
304
|
+
"My uploads": "My uploads",
|
|
260
305
|
"ORCID profile": "ORCID profile",
|
|
306
|
+
"ORCID logo": "ORCID logo",
|
|
261
307
|
"ROR profile": "ROR profile",
|
|
262
|
-
"
|
|
308
|
+
"ROR logo": "ROR logo",
|
|
309
|
+
"GND profile": "GND profile",
|
|
310
|
+
"GND logo": "GND logo",
|
|
311
|
+
"No name": "No name",
|
|
312
|
+
"and {{count}} other": "and {{count}} other",
|
|
313
|
+
"and {{count}} other_plural": "and {{count}} other",
|
|
314
|
+
"and {{count}} others": "and {{count}} others",
|
|
315
|
+
"and {{count}} others_plural": "and {{count}} others"
|
|
263
316
|
}
|