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
|
@@ -5,16 +5,46 @@ msgstr ""
|
|
|
5
5
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
6
6
|
"Content-Transfer-Encoding: 8bit\n"
|
|
7
7
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
|
8
|
-
"POT-Creation-Date:
|
|
9
|
-
"PO-Revision-Date:
|
|
8
|
+
"POT-Creation-Date: 2025-06-30T21:08:07.188Z\n"
|
|
9
|
+
"PO-Revision-Date: 2025-06-30T21:08:07.188Z\n"
|
|
10
10
|
"Language: en\n"
|
|
11
11
|
|
|
12
|
-
msgid "
|
|
13
|
-
msgstr "
|
|
12
|
+
msgid "Recent changes"
|
|
13
|
+
msgstr "Recent changes"
|
|
14
|
+
|
|
15
|
+
msgid "Audit Log Details"
|
|
16
|
+
msgstr "Audit Log Details"
|
|
17
|
+
|
|
18
|
+
msgid "Resource"
|
|
19
|
+
msgstr "Resource"
|
|
20
|
+
|
|
21
|
+
msgid "Resource ID"
|
|
22
|
+
msgstr "Resource ID"
|
|
23
|
+
|
|
24
|
+
msgid "Action"
|
|
25
|
+
msgstr "Action"
|
|
26
|
+
|
|
27
|
+
msgid "User"
|
|
28
|
+
msgstr "User"
|
|
29
|
+
|
|
30
|
+
msgid "Created"
|
|
31
|
+
msgstr "Created"
|
|
32
|
+
|
|
33
|
+
msgid "No revision ID found."
|
|
34
|
+
msgstr "No revision ID found."
|
|
35
|
+
|
|
36
|
+
msgid "Unable to fetch revisions."
|
|
37
|
+
msgstr "Unable to fetch revisions."
|
|
38
|
+
|
|
39
|
+
msgid "Cancel revision comparison"
|
|
40
|
+
msgstr "Cancel revision comparison"
|
|
14
41
|
|
|
15
42
|
msgid "Impersonate user"
|
|
16
43
|
msgstr "Impersonate user"
|
|
17
44
|
|
|
45
|
+
msgid "Impersonate"
|
|
46
|
+
msgstr "Impersonate"
|
|
47
|
+
|
|
18
48
|
msgid "You must accept this."
|
|
19
49
|
msgstr "You must accept this."
|
|
20
50
|
|
|
@@ -34,14 +64,20 @@ msgstr ""
|
|
|
34
64
|
"Please read carefully and confirm the following statements before you "
|
|
35
65
|
"proceed."
|
|
36
66
|
|
|
37
|
-
msgid "You are about to impersonate user
|
|
38
|
-
msgstr "You are about to impersonate user
|
|
67
|
+
msgid "You are about to impersonate user "
|
|
68
|
+
msgstr "You are about to impersonate user "
|
|
39
69
|
|
|
40
|
-
msgid "You
|
|
41
|
-
msgstr "You
|
|
70
|
+
msgid "You "
|
|
71
|
+
msgstr "You "
|
|
42
72
|
|
|
43
|
-
msgid "
|
|
44
|
-
msgstr "
|
|
73
|
+
msgid "MUST"
|
|
74
|
+
msgstr "MUST"
|
|
75
|
+
|
|
76
|
+
msgid " logout after completing your inquiry."
|
|
77
|
+
msgstr " logout after completing your inquiry."
|
|
78
|
+
|
|
79
|
+
msgid "Close"
|
|
80
|
+
msgstr "Close"
|
|
45
81
|
|
|
46
82
|
msgid "Set Quota"
|
|
47
83
|
msgstr "Set Quota"
|
|
@@ -54,10 +90,10 @@ msgstr "Note"
|
|
|
54
90
|
|
|
55
91
|
msgid ""
|
|
56
92
|
"This is the default quota that will be applied to any NEW records created "
|
|
57
|
-
"by this user
|
|
93
|
+
"by this user - it will NOT update quota of existing records."
|
|
58
94
|
msgstr ""
|
|
59
95
|
"This is the default quota that will be applied to any NEW records created "
|
|
60
|
-
"by this user
|
|
96
|
+
"by this user - it will NOT update quota of existing records."
|
|
61
97
|
|
|
62
98
|
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
63
99
|
msgstr "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
@@ -80,9 +116,6 @@ msgstr "Enter max file size..."
|
|
|
80
116
|
msgid "Ticket 1234"
|
|
81
117
|
msgstr "Ticket 1234"
|
|
82
118
|
|
|
83
|
-
msgid "Close"
|
|
84
|
-
msgstr "Close"
|
|
85
|
-
|
|
86
119
|
msgid "Set quota"
|
|
87
120
|
msgstr "Set quota"
|
|
88
121
|
|
|
@@ -140,6 +173,9 @@ msgstr "Links"
|
|
|
140
173
|
msgid "Set quota for record {{recordId}}"
|
|
141
174
|
msgstr "Set quota for record {{recordId}}"
|
|
142
175
|
|
|
176
|
+
msgid "Compare revisions"
|
|
177
|
+
msgstr "Compare revisions"
|
|
178
|
+
|
|
143
179
|
msgid "Delete record"
|
|
144
180
|
msgstr "Delete record"
|
|
145
181
|
|
|
@@ -176,8 +212,8 @@ msgstr "version"
|
|
|
176
212
|
msgid "Owner"
|
|
177
213
|
msgstr "Owner"
|
|
178
214
|
|
|
179
|
-
msgid "
|
|
180
|
-
msgstr "
|
|
215
|
+
msgid "System"
|
|
216
|
+
msgstr "System"
|
|
181
217
|
|
|
182
218
|
msgid "Files"
|
|
183
219
|
msgstr "Files"
|
|
@@ -191,6 +227,12 @@ msgstr "Record {{id}} was deleted."
|
|
|
191
227
|
msgid "Unable to delete"
|
|
192
228
|
msgstr "Unable to delete"
|
|
193
229
|
|
|
230
|
+
msgid "Public"
|
|
231
|
+
msgstr "Public"
|
|
232
|
+
|
|
233
|
+
msgid "Hidden"
|
|
234
|
+
msgstr "Hidden"
|
|
235
|
+
|
|
194
236
|
msgid ""
|
|
195
237
|
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
196
238
|
"to provide a public tombstone when deactivating public records."
|
|
@@ -229,9 +271,6 @@ msgstr "User {{name}} is blocked."
|
|
|
229
271
|
msgid "Error"
|
|
230
272
|
msgstr "Error"
|
|
231
273
|
|
|
232
|
-
msgid "User"
|
|
233
|
-
msgstr "User"
|
|
234
|
-
|
|
235
274
|
msgid "Email"
|
|
236
275
|
msgstr "Email"
|
|
237
276
|
|
|
@@ -241,6 +280,9 @@ msgstr "Email domain"
|
|
|
241
280
|
msgid "Actions"
|
|
242
281
|
msgstr "Actions"
|
|
243
282
|
|
|
283
|
+
msgid "Records"
|
|
284
|
+
msgstr "Records"
|
|
285
|
+
|
|
244
286
|
msgid "Username"
|
|
245
287
|
msgstr "Username"
|
|
246
288
|
|
|
@@ -250,6 +292,12 @@ msgstr "GitHub"
|
|
|
250
292
|
msgid "Updated"
|
|
251
293
|
msgstr "Updated"
|
|
252
294
|
|
|
295
|
+
msgid "Drafts"
|
|
296
|
+
msgstr "Drafts"
|
|
297
|
+
|
|
298
|
+
msgid "Moderation"
|
|
299
|
+
msgstr "Moderation"
|
|
300
|
+
|
|
253
301
|
msgid "Restore"
|
|
254
302
|
msgstr "Restore"
|
|
255
303
|
|
|
@@ -286,14 +334,12 @@ msgstr "Filter results"
|
|
|
286
334
|
msgid "Search records in community..."
|
|
287
335
|
msgstr "Search records in community..."
|
|
288
336
|
|
|
337
|
+
msgid "results found"
|
|
338
|
+
msgstr "results found"
|
|
339
|
+
|
|
289
340
|
msgid "Sort by"
|
|
290
341
|
msgstr "Sort by"
|
|
291
342
|
|
|
292
|
-
msgid " results found"
|
|
293
|
-
msgid_plural " results found"
|
|
294
|
-
msgstr[0] " results found"
|
|
295
|
-
msgstr[1] " results found"
|
|
296
|
-
|
|
297
343
|
msgid "Search records..."
|
|
298
344
|
msgstr "Search records..."
|
|
299
345
|
|
|
@@ -315,20 +361,50 @@ msgstr "Copied!"
|
|
|
315
361
|
msgid "Part of "
|
|
316
362
|
msgstr "Part of "
|
|
317
363
|
|
|
364
|
+
msgid "No creation date found."
|
|
365
|
+
msgstr "No creation date found."
|
|
366
|
+
|
|
367
|
+
msgid "No description"
|
|
368
|
+
msgstr "No description"
|
|
369
|
+
|
|
370
|
+
msgid "No publication date found."
|
|
371
|
+
msgstr "No publication date found."
|
|
372
|
+
|
|
373
|
+
msgid "No resource type"
|
|
374
|
+
msgstr "No resource type"
|
|
375
|
+
|
|
376
|
+
msgid "No title"
|
|
377
|
+
msgstr "No title"
|
|
378
|
+
|
|
318
379
|
msgid "Uploaded on {{uploadDate}}"
|
|
319
380
|
msgstr "Uploaded on {{uploadDate}}"
|
|
320
381
|
|
|
321
|
-
msgid "Published in: {{publishInfo}}"
|
|
322
|
-
msgstr "Published in: {{publishInfo}}"
|
|
382
|
+
msgid "Published in: {{- publishInfo }}"
|
|
383
|
+
msgstr "Published in: {{- publishInfo }}"
|
|
323
384
|
|
|
324
385
|
msgid "{{count}} more versions exist for this record"
|
|
325
386
|
msgid_plural "{{count}} more versions exist for this record"
|
|
326
387
|
msgstr[0] "{{count}} more versions exist for this record"
|
|
327
388
|
msgstr[1] "{{count}} more versions exist for this record"
|
|
328
389
|
|
|
390
|
+
msgid "Recommendation"
|
|
391
|
+
msgstr "Recommendation"
|
|
392
|
+
|
|
393
|
+
msgid "This check is recommended but not mandatory."
|
|
394
|
+
msgstr "This check is recommended but not mandatory."
|
|
395
|
+
|
|
396
|
+
msgid "This check indicates a critical issue that must be addressed."
|
|
397
|
+
msgstr "This check indicates a critical issue that must be addressed."
|
|
398
|
+
|
|
399
|
+
msgid "Person"
|
|
400
|
+
msgstr "Person"
|
|
401
|
+
|
|
329
402
|
msgid "The record has no files."
|
|
330
403
|
msgstr "The record has no files."
|
|
331
404
|
|
|
405
|
+
msgid "Basic information"
|
|
406
|
+
msgstr "Basic information"
|
|
407
|
+
|
|
332
408
|
msgid "Creators"
|
|
333
409
|
msgstr "Creators"
|
|
334
410
|
|
|
@@ -341,6 +417,15 @@ msgstr "Add contributor"
|
|
|
341
417
|
msgid "Contributors"
|
|
342
418
|
msgstr "Contributors"
|
|
343
419
|
|
|
420
|
+
msgid "Edit contributor"
|
|
421
|
+
msgstr "Edit contributor"
|
|
422
|
+
|
|
423
|
+
msgid "Funding"
|
|
424
|
+
msgstr "Funding"
|
|
425
|
+
|
|
426
|
+
msgid "Awards/Grants"
|
|
427
|
+
msgstr "Awards/Grants"
|
|
428
|
+
|
|
344
429
|
msgid "Alternate identifiers"
|
|
345
430
|
msgstr "Alternate identifiers"
|
|
346
431
|
|
|
@@ -359,6 +444,9 @@ msgstr "More"
|
|
|
359
444
|
msgid "Unable to request the access."
|
|
360
445
|
msgstr "Unable to request the access."
|
|
361
446
|
|
|
447
|
+
msgid "Your email address"
|
|
448
|
+
msgstr "Your email address"
|
|
449
|
+
|
|
362
450
|
msgid "Email address"
|
|
363
451
|
msgstr "Email address"
|
|
364
452
|
|
|
@@ -381,6 +469,23 @@ msgstr ""
|
|
|
381
469
|
msgid "Request access"
|
|
382
470
|
msgstr "Request access"
|
|
383
471
|
|
|
472
|
+
msgid "Email confirmation needed"
|
|
473
|
+
msgstr "Email confirmation needed"
|
|
474
|
+
|
|
475
|
+
msgid "We have sent you an email to verify your address."
|
|
476
|
+
msgstr "We have sent you an email to verify your address."
|
|
477
|
+
|
|
478
|
+
msgid ""
|
|
479
|
+
"\n"
|
|
480
|
+
" Please check the email and follow the instructions to "
|
|
481
|
+
"complete the access request.\n"
|
|
482
|
+
" "
|
|
483
|
+
msgstr ""
|
|
484
|
+
"\n"
|
|
485
|
+
" Please check the email and follow the instructions to "
|
|
486
|
+
"complete the access request.\n"
|
|
487
|
+
" "
|
|
488
|
+
|
|
384
489
|
msgid "An error occurred while fetching communities."
|
|
385
490
|
msgstr "An error occurred while fetching communities."
|
|
386
491
|
|
|
@@ -425,6 +530,15 @@ msgstr "Manage record"
|
|
|
425
530
|
msgid "Manage user"
|
|
426
531
|
msgstr "Manage user"
|
|
427
532
|
|
|
533
|
+
msgid "Block user"
|
|
534
|
+
msgstr "Block user"
|
|
535
|
+
|
|
536
|
+
msgid "Block User"
|
|
537
|
+
msgstr "Block User"
|
|
538
|
+
|
|
539
|
+
msgid "Blocking the user will delete all existing records of the user."
|
|
540
|
+
msgstr "Blocking the user will delete all existing records of the user."
|
|
541
|
+
|
|
428
542
|
msgid "Remove branding"
|
|
429
543
|
msgstr "Remove branding"
|
|
430
544
|
|
|
@@ -458,6 +572,9 @@ msgstr "Style"
|
|
|
458
572
|
msgid "This record is not included in any communities yet."
|
|
459
573
|
msgstr "This record is not included in any communities yet."
|
|
460
574
|
|
|
575
|
+
msgid "Part of"
|
|
576
|
+
msgstr "Part of"
|
|
577
|
+
|
|
461
578
|
msgid "Search for community..."
|
|
462
579
|
msgstr "Search for community..."
|
|
463
580
|
|
|
@@ -493,23 +610,20 @@ msgid_plural "View all {{count}} versions"
|
|
|
493
610
|
msgstr[0] "View all {{count}} versions"
|
|
494
611
|
msgstr[1] "View all {{count}} versions"
|
|
495
612
|
|
|
496
|
-
msgid ""
|
|
497
|
-
"
|
|
498
|
-
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
499
|
-
"latest one. <5>Read more</5>.</0>"
|
|
500
|
-
msgstr ""
|
|
501
|
-
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
502
|
-
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
503
|
-
"latest one. <5>Read more</5>.</0>"
|
|
613
|
+
msgid "Cite all versions?"
|
|
614
|
+
msgstr "Cite all versions?"
|
|
504
615
|
|
|
505
|
-
msgid ""
|
|
506
|
-
"
|
|
507
|
-
|
|
508
|
-
"
|
|
509
|
-
msgstr ""
|
|
510
|
-
|
|
511
|
-
"
|
|
512
|
-
"more
|
|
616
|
+
msgid "You can cite all versions by using the DOI"
|
|
617
|
+
msgstr "You can cite all versions by using the DOI"
|
|
618
|
+
|
|
619
|
+
msgid "This DOI represents all versions, and will always resolve to the latest one."
|
|
620
|
+
msgstr "This DOI represents all versions, and will always resolve to the latest one."
|
|
621
|
+
|
|
622
|
+
msgid "Read more"
|
|
623
|
+
msgstr "Read more"
|
|
624
|
+
|
|
625
|
+
msgid "The DOI is registered when the first version is published."
|
|
626
|
+
msgstr "The DOI is registered when the first version is published."
|
|
513
627
|
|
|
514
628
|
msgid "Remove"
|
|
515
629
|
msgstr "Remove"
|
|
@@ -526,6 +640,18 @@ msgstr "Are you sure you want to remove the record from the community?"
|
|
|
526
640
|
msgid "I understand the consequences:"
|
|
527
641
|
msgstr "I understand the consequences:"
|
|
528
642
|
|
|
643
|
+
msgid "Members of the community "
|
|
644
|
+
msgstr "Members of the community "
|
|
645
|
+
|
|
646
|
+
msgid " will "
|
|
647
|
+
msgstr " will "
|
|
648
|
+
|
|
649
|
+
msgid "lose their access"
|
|
650
|
+
msgstr "lose their access"
|
|
651
|
+
|
|
652
|
+
msgid " to the record."
|
|
653
|
+
msgstr " to the record."
|
|
654
|
+
|
|
529
655
|
msgid ""
|
|
530
656
|
"The record can only be re-included in the community by going through a new "
|
|
531
657
|
"review by the community curators."
|
|
@@ -545,13 +671,6 @@ msgstr "Cancel"
|
|
|
545
671
|
msgid "Confirm removal"
|
|
546
672
|
msgstr "Confirm removal"
|
|
547
673
|
|
|
548
|
-
msgid ""
|
|
549
|
-
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
550
|
-
"their access</4> to the record."
|
|
551
|
-
msgstr ""
|
|
552
|
-
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
553
|
-
"their access</4> to the record."
|
|
554
|
-
|
|
555
674
|
msgid "Select permissions"
|
|
556
675
|
msgstr "Select permissions"
|
|
557
676
|
|
|
@@ -567,9 +686,18 @@ msgstr "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
|
567
686
|
msgid "Create a new link"
|
|
568
687
|
msgstr "Create a new link"
|
|
569
688
|
|
|
689
|
+
msgid "Link title"
|
|
690
|
+
msgstr "Link title"
|
|
691
|
+
|
|
692
|
+
msgid "Expires at"
|
|
693
|
+
msgstr "Expires at"
|
|
694
|
+
|
|
570
695
|
msgid "Never"
|
|
571
696
|
msgstr "Never"
|
|
572
697
|
|
|
698
|
+
msgid "Access"
|
|
699
|
+
msgstr "Access"
|
|
700
|
+
|
|
573
701
|
msgid "Delete"
|
|
574
702
|
msgstr "Delete"
|
|
575
703
|
|
|
@@ -585,14 +713,22 @@ msgstr "Can view restricted files of all versions of this record."
|
|
|
585
713
|
msgid "Can preview drafts"
|
|
586
714
|
msgstr "Can preview drafts"
|
|
587
715
|
|
|
588
|
-
msgid "
|
|
589
|
-
|
|
716
|
+
msgid ""
|
|
717
|
+
"Can view drafts, restricted files, and comment on associated draft requests "
|
|
718
|
+
"of all versions of this record."
|
|
719
|
+
msgstr ""
|
|
720
|
+
"Can view drafts, restricted files, and comment on associated draft requests "
|
|
721
|
+
"of all versions of this record."
|
|
590
722
|
|
|
591
723
|
msgid "Can edit"
|
|
592
724
|
msgstr "Can edit"
|
|
593
725
|
|
|
594
|
-
msgid "
|
|
595
|
-
|
|
726
|
+
msgid ""
|
|
727
|
+
"Can edit drafts, view restricted files, and comment on associated draft "
|
|
728
|
+
"requests of all versions of this record."
|
|
729
|
+
msgstr ""
|
|
730
|
+
"Can edit drafts, view restricted files, and comment on associated draft "
|
|
731
|
+
"requests of all versions of this record."
|
|
596
732
|
|
|
597
733
|
msgid ""
|
|
598
734
|
"Can view (view access link can be created only after the record is "
|
|
@@ -601,15 +737,9 @@ msgstr ""
|
|
|
601
737
|
"Can view (view access link can be created only after the record is "
|
|
602
738
|
"published)"
|
|
603
739
|
|
|
604
|
-
msgid "Link title"
|
|
605
|
-
msgstr "Link title"
|
|
606
|
-
|
|
607
740
|
msgid "Expires"
|
|
608
741
|
msgstr "Expires"
|
|
609
742
|
|
|
610
|
-
msgid "Access"
|
|
611
|
-
msgstr "Access"
|
|
612
|
-
|
|
613
743
|
msgid "This record has no links generated yet."
|
|
614
744
|
msgstr "This record has no links generated yet."
|
|
615
745
|
|
|
@@ -699,11 +829,11 @@ msgid "Can manage"
|
|
|
699
829
|
msgstr "Can manage"
|
|
700
830
|
|
|
701
831
|
msgid ""
|
|
702
|
-
"Can manage access, edit drafts
|
|
703
|
-
"this record."
|
|
832
|
+
"Can manage access, edit drafts, view restricted files, and comment on "
|
|
833
|
+
"associated draft requests of all versions of this record."
|
|
704
834
|
msgstr ""
|
|
705
|
-
"Can manage access, edit drafts
|
|
706
|
-
"this record."
|
|
835
|
+
"Can manage access, edit drafts, view restricted files, and comment on "
|
|
836
|
+
"associated draft requests of all versions of this record."
|
|
707
837
|
|
|
708
838
|
msgid "You don't have permissions to share this record."
|
|
709
839
|
msgstr "You don't have permissions to share this record."
|
|
@@ -772,27 +902,41 @@ msgstr "Start over"
|
|
|
772
902
|
msgid "ProTip"
|
|
773
903
|
msgstr "ProTip"
|
|
774
904
|
|
|
905
|
+
msgid "will give you all the publications from 2025 until today."
|
|
906
|
+
msgstr "will give you all the publications from 2025 until today."
|
|
907
|
+
|
|
908
|
+
msgid "For more tips, check out our "
|
|
909
|
+
msgstr "For more tips, check out our "
|
|
910
|
+
|
|
775
911
|
msgid "Search guide"
|
|
776
912
|
msgstr "Search guide"
|
|
777
913
|
|
|
778
|
-
msgid ""
|
|
779
|
-
"
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
"
|
|
783
|
-
|
|
914
|
+
msgid "search guide"
|
|
915
|
+
msgstr "search guide"
|
|
916
|
+
|
|
917
|
+
msgid "for defining advanced search queries."
|
|
918
|
+
msgstr "for defining advanced search queries."
|
|
919
|
+
|
|
920
|
+
msgid "This community has no subcommunities"
|
|
921
|
+
msgstr "This community has no subcommunities"
|
|
922
|
+
|
|
923
|
+
msgid "Logging in..."
|
|
924
|
+
msgstr "Logging in..."
|
|
925
|
+
|
|
926
|
+
msgid "Logging out..."
|
|
927
|
+
msgstr "Logging out..."
|
|
784
928
|
|
|
785
929
|
msgid "Search in my communities..."
|
|
786
930
|
msgstr "Search in my communities..."
|
|
787
931
|
|
|
932
|
+
msgid "My communities"
|
|
933
|
+
msgstr "My communities"
|
|
934
|
+
|
|
788
935
|
msgid "View"
|
|
789
936
|
msgstr "View"
|
|
790
937
|
|
|
791
|
-
msgid "
|
|
792
|
-
msgstr "
|
|
793
|
-
|
|
794
|
-
msgid "Published in: {{publishedIn}}"
|
|
795
|
-
msgstr "Published in: {{publishedIn}}"
|
|
938
|
+
msgid "Published in: {{- publishedIn }}"
|
|
939
|
+
msgstr "Published in: {{- publishedIn }}"
|
|
796
940
|
|
|
797
941
|
msgid "In review"
|
|
798
942
|
msgstr "In review"
|
|
@@ -818,18 +962,6 @@ msgstr "Open"
|
|
|
818
962
|
msgid "unlock"
|
|
819
963
|
msgstr "unlock"
|
|
820
964
|
|
|
821
|
-
msgid "No description"
|
|
822
|
-
msgstr "No description"
|
|
823
|
-
|
|
824
|
-
msgid "No title"
|
|
825
|
-
msgstr "No title"
|
|
826
|
-
|
|
827
|
-
msgid "No publication date found."
|
|
828
|
-
msgstr "No publication date found."
|
|
829
|
-
|
|
830
|
-
msgid "No resource type"
|
|
831
|
-
msgstr "No resource type"
|
|
832
|
-
|
|
833
965
|
msgid "Get started!"
|
|
834
966
|
msgstr "Get started!"
|
|
835
967
|
|
|
@@ -842,19 +974,36 @@ msgstr "New upload"
|
|
|
842
974
|
msgid "Search in my uploads..."
|
|
843
975
|
msgstr "Search in my uploads..."
|
|
844
976
|
|
|
977
|
+
msgid "My uploads"
|
|
978
|
+
msgstr "My uploads"
|
|
979
|
+
|
|
845
980
|
msgid "ORCID profile"
|
|
846
981
|
msgstr "ORCID profile"
|
|
847
982
|
|
|
983
|
+
msgid "ORCID logo"
|
|
984
|
+
msgstr "ORCID logo"
|
|
985
|
+
|
|
848
986
|
msgid "ROR profile"
|
|
849
987
|
msgstr "ROR profile"
|
|
850
988
|
|
|
989
|
+
msgid "ROR logo"
|
|
990
|
+
msgstr "ROR logo"
|
|
991
|
+
|
|
851
992
|
msgid "GND profile"
|
|
852
993
|
msgstr "GND profile"
|
|
853
994
|
|
|
854
|
-
|
|
855
|
-
"
|
|
856
|
-
|
|
857
|
-
msgid "
|
|
858
|
-
msgstr ""
|
|
859
|
-
|
|
860
|
-
"
|
|
995
|
+
msgid "GND logo"
|
|
996
|
+
msgstr "GND logo"
|
|
997
|
+
|
|
998
|
+
msgid "No name"
|
|
999
|
+
msgstr "No name"
|
|
1000
|
+
|
|
1001
|
+
msgid "and {{count}} other"
|
|
1002
|
+
msgid_plural "and {{count}} other"
|
|
1003
|
+
msgstr[0] "and {{count}} other"
|
|
1004
|
+
msgstr[1] "and {{count}} other"
|
|
1005
|
+
|
|
1006
|
+
msgid "and {{count}} others"
|
|
1007
|
+
msgid_plural "and {{count}} others"
|
|
1008
|
+
msgstr[0] "and {{count}} others"
|
|
1009
|
+
msgstr[1] "and {{count}} others"
|
|
@@ -156,13 +156,13 @@
|
|
|
156
156
|
<h3>Fehlende Werte</h3>
|
|
157
157
|
<p>
|
|
158
158
|
Es ist möglich, mit den Feldnamen <code>_exists_</code> und
|
|
159
|
-
<code>
|
|
159
|
+
<code>NOT _exists_</code> nach Datensätzen zu suchen,
|
|
160
160
|
in denen entweder ein Wert fehlt oder die einen Wert in einem bestimmten Feld haben.
|
|
161
161
|
</p>
|
|
162
162
|
<p>
|
|
163
163
|
<strong>Beispiel:</strong>
|
|
164
164
|
<a
|
|
165
|
-
href="/search?page=1&size=20&q=
|
|
165
|
+
href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles"><code>NOT _exists_:metadata.additional_titles</code></a>
|
|
166
166
|
(alle Datensätze ohne metadata.additional_titles)
|
|
167
167
|
</p>
|
|
168
168
|
<p>
|
|
@@ -184,13 +184,13 @@
|
|
|
184
184
|
<p>
|
|
185
185
|
It is possible to search for records that either are missing a value or have
|
|
186
186
|
a value in a specific field using the <code>_exists_</code> and
|
|
187
|
-
<code>
|
|
187
|
+
<code>NOT _exists_</code> field names.
|
|
188
188
|
</p>
|
|
189
189
|
<p>
|
|
190
190
|
<strong>Example:</strong>
|
|
191
|
-
<a href="/search?page=1&size=20&q=
|
|
192
|
-
|
|
193
|
-
>
|
|
191
|
+
<a href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles">
|
|
192
|
+
<code>NOT _exists_:metadata.additional_titles</code>
|
|
193
|
+
</a>
|
|
194
194
|
(all records without metadata.additional_titles)
|
|
195
195
|
</p>
|
|
196
196
|
<p>
|
|
@@ -176,13 +176,13 @@
|
|
|
176
176
|
<p>
|
|
177
177
|
Det är möjligt att söka efter poster som antingen saknar ett värde eller har
|
|
178
178
|
ett värde i ett specifikt fält med hjälp av <code>_exists_</code> och
|
|
179
|
-
<code>
|
|
179
|
+
<code>NOT _exists_</code> i kombination med fältnamn.
|
|
180
180
|
</p>
|
|
181
181
|
<p>
|
|
182
182
|
<strong>Exempel:</strong>
|
|
183
|
-
<a href="/search?page=1&size=20&q=
|
|
184
|
-
|
|
185
|
-
>
|
|
183
|
+
<a href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles">
|
|
184
|
+
<code>NOT _exists_:metadata.additional_titles</code>
|
|
185
|
+
</a>
|
|
186
186
|
(alla poster utan metadata.additional_titles)
|
|
187
187
|
</p>
|
|
188
188
|
<p>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{#
|
|
2
2
|
Copyright (C) 2019-2022 CERN.
|
|
3
3
|
Copyright (C) 2014 KTH Royal Institute of Technology.
|
|
4
|
+
Copyright (C) 2025 Northwestern University.
|
|
4
5
|
|
|
5
6
|
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
6
7
|
under the terms of the MIT License; see LICENSE file for more details.
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
</div>
|
|
26
27
|
<div class="description">
|
|
27
28
|
{{ _("Configure the datamodel, resource types, permissions and much more to make it suit your needs! For more information on how to do it visit the") }}
|
|
28
|
-
<a href="https://inveniordm.docs.cern.ch/
|
|
29
|
+
<a href="https://inveniordm.docs.cern.ch/operate/customize/configuration/" target="_blank">
|
|
29
30
|
{{ _("configuration section in the docs") }}
|
|
30
31
|
</a>.
|
|
31
32
|
</div>
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
</div>
|
|
43
44
|
<div class="description">
|
|
44
45
|
{{ _("Customize the layout and adapt the styling to match your institution's. See how to do so") }}
|
|
45
|
-
<a href="https://inveniordm.docs.cern.ch/customize/" target="_blank">
|
|
46
|
+
<a href="https://inveniordm.docs.cern.ch/operate/customize/look-and-feel/" target="_blank">
|
|
46
47
|
{{ _("here") }}
|
|
47
48
|
</a>.
|
|
48
49
|
</div>
|
|
@@ -54,11 +55,11 @@
|
|
|
54
55
|
<div class="intro-step-list-image">3</div>
|
|
55
56
|
</div>
|
|
56
57
|
<div class="content">
|
|
57
|
-
<div class="header">{{ _("
|
|
58
|
+
<div class="header">{{ _("Use it!") }}</div>
|
|
58
59
|
<div class="description">
|
|
59
|
-
{{ _("
|
|
60
|
-
<a href="https://inveniordm.docs.cern.ch/
|
|
61
|
-
{{ _("
|
|
60
|
+
{{ _("Use and explore your InvenioRDM instance.") }}
|
|
61
|
+
<a href="https://inveniordm.docs.cern.ch/use/" target="_blank">
|
|
62
|
+
{{ _("Use") }}
|
|
62
63
|
</a>.
|
|
63
64
|
</div>
|
|
64
65
|
</div>
|