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/it/messages.po
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
|
-
#
|
|
4
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Jiří Kunčar <jiri.kuncar@gmail.com>, 2024
|
|
4
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
5
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2025
|
|
6
|
+
# Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2025
|
|
7
|
+
# Fare Fare <fare@polito.it>, 2025
|
|
7
8
|
#
|
|
8
9
|
msgid ""
|
|
9
10
|
msgstr ""
|
|
10
11
|
"Project-Id-Version: i18next-conv\n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
12
13
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
13
|
-
"Last-Translator: Fare Fare <fare@polito.it>,
|
|
14
|
+
"Last-Translator: Fare Fare <fare@polito.it>, 2025\n"
|
|
14
15
|
"Language-Team: Italian (https://app.transifex.com/inveniosoftware/teams/23537/it/)\n"
|
|
15
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -21,15 +22,339 @@ msgstr ""
|
|
|
21
22
|
msgid "Basic information"
|
|
22
23
|
msgstr ""
|
|
23
24
|
|
|
24
|
-
msgid "
|
|
25
|
+
msgid "Impersonate user"
|
|
25
26
|
msgstr ""
|
|
26
27
|
|
|
27
|
-
msgid "
|
|
28
|
+
msgid "Impersonate"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
31
|
+
msgid "You must accept this."
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
msgid "Success"
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
msgid ""
|
|
38
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
39
|
+
msgstr ""
|
|
40
|
+
|
|
41
|
+
msgid "Unable to impersonate user."
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
msgid ""
|
|
45
|
+
"Please read carefully and confirm the following statements before you "
|
|
46
|
+
"proceed."
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
msgid "Close"
|
|
56
|
+
msgstr "Chiudi"
|
|
57
|
+
|
|
58
|
+
msgid "Set Quota"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
61
|
+
msgid "Set quota in bytes"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
msgid "Note"
|
|
65
|
+
msgstr "Nota"
|
|
66
|
+
|
|
67
|
+
msgid ""
|
|
68
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
69
|
+
" this user – it will NOT update quota of existing records."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
72
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
msgid "Unable to set quota."
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
msgid "Quota size ({{unit}})"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
msgid "Enter quota size..."
|
|
82
|
+
msgstr ""
|
|
83
|
+
|
|
84
|
+
msgid "Max file size ({{unit}})"
|
|
85
|
+
msgstr ""
|
|
86
|
+
|
|
87
|
+
msgid "Enter max file size..."
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
msgid "Ticket 1234"
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
msgid "Set quota"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
msgid "Domain"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
msgid "Flagged"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
102
|
+
msgid "Organization"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
105
|
+
msgid "Company"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
108
|
+
msgid "Mail provider"
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
msgid "Spammer"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
114
|
+
msgid "TLD"
|
|
115
|
+
msgstr ""
|
|
116
|
+
|
|
117
|
+
msgid "Status"
|
|
118
|
+
msgstr "Stato"
|
|
119
|
+
|
|
120
|
+
msgid "New"
|
|
121
|
+
msgstr "Nuovo"
|
|
122
|
+
|
|
123
|
+
msgid "Moderated"
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
126
|
+
msgid "Verified"
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
129
|
+
msgid "Blocked"
|
|
130
|
+
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgid "Users"
|
|
133
|
+
msgstr "Utenti"
|
|
134
|
+
|
|
135
|
+
msgid "Active"
|
|
136
|
+
msgstr "Attivo"
|
|
137
|
+
|
|
138
|
+
msgid "Inactive"
|
|
139
|
+
msgstr ""
|
|
140
|
+
|
|
141
|
+
msgid "Confirmed"
|
|
142
|
+
msgstr ""
|
|
143
|
+
|
|
144
|
+
msgid "Links"
|
|
145
|
+
msgstr ""
|
|
146
|
+
|
|
147
|
+
msgid "Set quota for record {{recordId}}"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
msgid "Delete record"
|
|
151
|
+
msgstr ""
|
|
152
|
+
|
|
153
|
+
msgid "Restore record"
|
|
154
|
+
msgstr ""
|
|
155
|
+
|
|
156
|
+
msgid "Unavailability statement"
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
msgid "Record {{id}} was restored."
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
msgid "Unable to restore."
|
|
163
|
+
msgstr ""
|
|
164
|
+
|
|
165
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
msgid "Published"
|
|
169
|
+
msgstr "Pubblicato"
|
|
170
|
+
|
|
171
|
+
msgid "Deleted"
|
|
172
|
+
msgstr "Eliminato"
|
|
173
|
+
|
|
174
|
+
msgid "Scheduled for purge"
|
|
28
175
|
msgstr ""
|
|
29
176
|
|
|
177
|
+
msgid "Empty draft title"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
msgid "version"
|
|
181
|
+
msgstr "versione"
|
|
182
|
+
|
|
183
|
+
msgid "Owner"
|
|
184
|
+
msgstr "Proprietario"
|
|
185
|
+
|
|
186
|
+
msgid "Created"
|
|
187
|
+
msgstr "Creato"
|
|
188
|
+
|
|
30
189
|
msgid "Files"
|
|
31
190
|
msgstr "File"
|
|
32
191
|
|
|
192
|
+
msgid "Stats"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
195
|
+
msgid "Record {{id}} was deleted."
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
msgid "Unable to delete"
|
|
199
|
+
msgstr ""
|
|
200
|
+
|
|
201
|
+
msgid "Public"
|
|
202
|
+
msgstr "Publico"
|
|
203
|
+
|
|
204
|
+
msgid "Hidden"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
msgid ""
|
|
208
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
209
|
+
"to provide a public tombstone when deactivating public records."
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
212
|
+
msgid ""
|
|
213
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
214
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
215
|
+
"tombstone below."
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
msgid "Bibliographic citation"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
221
|
+
msgid ""
|
|
222
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
223
|
+
"default."
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
msgid "Public note"
|
|
227
|
+
msgstr ""
|
|
228
|
+
|
|
229
|
+
msgid "User {{name}} was approved."
|
|
230
|
+
msgstr ""
|
|
231
|
+
|
|
232
|
+
msgid "User {{name}} is blocked."
|
|
233
|
+
msgstr ""
|
|
234
|
+
|
|
235
|
+
msgid "Error"
|
|
236
|
+
msgstr "Errore"
|
|
237
|
+
|
|
238
|
+
msgid "User"
|
|
239
|
+
msgstr "Utente"
|
|
240
|
+
|
|
241
|
+
msgid "Email"
|
|
242
|
+
msgstr "Email"
|
|
243
|
+
|
|
244
|
+
msgid "Email domain"
|
|
245
|
+
msgstr ""
|
|
246
|
+
|
|
247
|
+
msgid "Actions"
|
|
248
|
+
msgstr "Azioni"
|
|
249
|
+
|
|
250
|
+
msgid "Records"
|
|
251
|
+
msgstr "Record"
|
|
252
|
+
|
|
253
|
+
msgid "Username"
|
|
254
|
+
msgstr "Nome utente"
|
|
255
|
+
|
|
256
|
+
msgid "GitHub"
|
|
257
|
+
msgstr "GitHub"
|
|
258
|
+
|
|
259
|
+
msgid "Updated"
|
|
260
|
+
msgstr ""
|
|
261
|
+
|
|
262
|
+
msgid "Restore"
|
|
263
|
+
msgstr ""
|
|
264
|
+
|
|
265
|
+
msgid "Restored"
|
|
266
|
+
msgstr ""
|
|
267
|
+
|
|
268
|
+
msgid "Block"
|
|
269
|
+
msgstr ""
|
|
270
|
+
|
|
271
|
+
msgid "Suspend"
|
|
272
|
+
msgstr ""
|
|
273
|
+
|
|
274
|
+
msgid "Suspended"
|
|
275
|
+
msgstr ""
|
|
276
|
+
|
|
277
|
+
msgid "Approve"
|
|
278
|
+
msgstr "Approva"
|
|
279
|
+
|
|
280
|
+
msgid "Approved"
|
|
281
|
+
msgstr "Approvato"
|
|
282
|
+
|
|
283
|
+
msgid "Activate"
|
|
284
|
+
msgstr "Attivare"
|
|
285
|
+
|
|
286
|
+
msgid "Activated"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
msgid "Set default quota for {{email}}"
|
|
290
|
+
msgstr ""
|
|
291
|
+
|
|
292
|
+
msgid "Filter results"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
295
|
+
msgid "Search records in community..."
|
|
296
|
+
msgstr ""
|
|
297
|
+
|
|
298
|
+
msgid "Sort by"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
msgid " results found"
|
|
302
|
+
msgid_plural " results found"
|
|
303
|
+
msgstr[0] ""
|
|
304
|
+
msgstr[1] ""
|
|
305
|
+
msgstr[2] ""
|
|
306
|
+
|
|
307
|
+
msgid "Search records..."
|
|
308
|
+
msgstr ""
|
|
309
|
+
|
|
310
|
+
msgid "Search"
|
|
311
|
+
msgstr "Cerca"
|
|
312
|
+
|
|
313
|
+
msgid "Views"
|
|
314
|
+
msgstr "Viste"
|
|
315
|
+
|
|
316
|
+
msgid "Downloads"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
msgid "Copy to clipboard"
|
|
320
|
+
msgstr ""
|
|
321
|
+
|
|
322
|
+
msgid "Copied!"
|
|
323
|
+
msgstr ""
|
|
324
|
+
|
|
325
|
+
msgid "Part of "
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
msgid "No creation date found."
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
msgid "No description"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
msgid "No publication date found."
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
msgid "No resource type"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
msgid "No title"
|
|
341
|
+
msgstr "Senza titolo"
|
|
342
|
+
|
|
343
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
344
|
+
msgstr ""
|
|
345
|
+
|
|
346
|
+
msgid "Published in: {{publishInfo}}"
|
|
347
|
+
msgstr ""
|
|
348
|
+
|
|
349
|
+
msgid "{{count}} more versions exist for this record"
|
|
350
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
351
|
+
msgstr[0] ""
|
|
352
|
+
msgstr[1] ""
|
|
353
|
+
msgstr[2] ""
|
|
354
|
+
|
|
355
|
+
msgid "Person"
|
|
356
|
+
msgstr ""
|
|
357
|
+
|
|
33
358
|
msgid "The record has no files."
|
|
34
359
|
msgstr ""
|
|
35
360
|
|
|
@@ -45,29 +370,167 @@ msgstr ""
|
|
|
45
370
|
msgid "Contributors"
|
|
46
371
|
msgstr ""
|
|
47
372
|
|
|
373
|
+
msgid "Edit contributor"
|
|
374
|
+
msgstr ""
|
|
375
|
+
|
|
376
|
+
msgid "Funding"
|
|
377
|
+
msgstr "Finanziamento"
|
|
378
|
+
|
|
379
|
+
msgid "Awards/Grants"
|
|
380
|
+
msgstr ""
|
|
381
|
+
|
|
48
382
|
msgid "Alternate identifiers"
|
|
49
383
|
msgstr ""
|
|
50
384
|
|
|
51
385
|
msgid "Related works"
|
|
52
386
|
msgstr "Lavori correlati"
|
|
53
387
|
|
|
388
|
+
msgid "References"
|
|
389
|
+
msgstr "Riferimenti"
|
|
390
|
+
|
|
54
391
|
msgid "Visibility"
|
|
55
392
|
msgstr ""
|
|
56
393
|
|
|
394
|
+
msgid "More"
|
|
395
|
+
msgstr ""
|
|
396
|
+
|
|
397
|
+
msgid "Unable to request the access."
|
|
398
|
+
msgstr ""
|
|
399
|
+
|
|
400
|
+
msgid "Your email address"
|
|
401
|
+
msgstr ""
|
|
402
|
+
|
|
403
|
+
msgid "Email address"
|
|
404
|
+
msgstr "Indirizzo email"
|
|
405
|
+
|
|
406
|
+
msgid "Your full name"
|
|
407
|
+
msgstr ""
|
|
408
|
+
|
|
409
|
+
msgid "Full name"
|
|
410
|
+
msgstr "Nome e cognome"
|
|
411
|
+
|
|
412
|
+
msgid "Request message"
|
|
413
|
+
msgstr ""
|
|
414
|
+
|
|
415
|
+
msgid ""
|
|
416
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
417
|
+
"the record"
|
|
418
|
+
msgstr ""
|
|
419
|
+
|
|
420
|
+
msgid "Request access"
|
|
421
|
+
msgstr ""
|
|
422
|
+
|
|
423
|
+
msgid "Email confirmation needed"
|
|
424
|
+
msgstr ""
|
|
425
|
+
|
|
426
|
+
msgid "We have sent you an email to verify your address."
|
|
427
|
+
msgstr ""
|
|
428
|
+
|
|
429
|
+
msgid ""
|
|
430
|
+
"\n"
|
|
431
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
432
|
+
" "
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
msgid "An error occurred while fetching communities."
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
438
|
+
msgid "Communities"
|
|
439
|
+
msgstr "Comunità"
|
|
440
|
+
|
|
441
|
+
msgid "View all {{count}} communities"
|
|
442
|
+
msgid_plural "View all {{count}} communities"
|
|
443
|
+
msgstr[0] ""
|
|
444
|
+
msgstr[1] ""
|
|
445
|
+
msgstr[2] ""
|
|
446
|
+
|
|
447
|
+
msgid "Submit to community"
|
|
448
|
+
msgstr ""
|
|
449
|
+
|
|
450
|
+
msgid "Pending submissions"
|
|
451
|
+
msgstr ""
|
|
452
|
+
|
|
453
|
+
msgid "Manage communities"
|
|
454
|
+
msgstr ""
|
|
455
|
+
|
|
456
|
+
msgid "Community management menu dropdown"
|
|
457
|
+
msgstr ""
|
|
458
|
+
|
|
57
459
|
msgid "Edit"
|
|
58
460
|
msgstr "Modifica"
|
|
59
461
|
|
|
60
|
-
msgid "
|
|
462
|
+
msgid "Export selection"
|
|
463
|
+
msgstr ""
|
|
464
|
+
|
|
465
|
+
msgid "Download file"
|
|
466
|
+
msgstr ""
|
|
467
|
+
|
|
468
|
+
msgid "Export"
|
|
469
|
+
msgstr "Esporta"
|
|
470
|
+
|
|
471
|
+
msgid "Manage"
|
|
472
|
+
msgstr "Gestire"
|
|
473
|
+
|
|
474
|
+
msgid "Manage record"
|
|
475
|
+
msgstr "Gestisci record"
|
|
476
|
+
|
|
477
|
+
msgid "Manage user"
|
|
478
|
+
msgstr ""
|
|
479
|
+
|
|
480
|
+
msgid "Remove branding"
|
|
481
|
+
msgstr ""
|
|
482
|
+
|
|
483
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
484
|
+
msgstr ""
|
|
485
|
+
|
|
486
|
+
msgid ""
|
|
487
|
+
"Remove this community from appearing on top of the record details page."
|
|
488
|
+
msgstr ""
|
|
489
|
+
|
|
490
|
+
msgid "Set branding"
|
|
491
|
+
msgstr ""
|
|
492
|
+
|
|
493
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
494
|
+
msgstr ""
|
|
495
|
+
|
|
496
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
497
|
+
msgstr ""
|
|
498
|
+
|
|
499
|
+
msgid "Pending communities"
|
|
500
|
+
msgstr ""
|
|
501
|
+
|
|
502
|
+
msgid "Search for pending submissions to communities..."
|
|
61
503
|
msgstr ""
|
|
62
504
|
|
|
63
|
-
msgid "
|
|
505
|
+
msgid "An error occurred while generating the citation."
|
|
64
506
|
msgstr ""
|
|
65
507
|
|
|
66
508
|
msgid "Style"
|
|
67
509
|
msgstr ""
|
|
68
510
|
|
|
69
|
-
msgid "
|
|
70
|
-
msgstr "
|
|
511
|
+
msgid "This record is not included in any communities yet."
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
msgid "Search for community..."
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
msgid "Record submitted"
|
|
518
|
+
msgstr ""
|
|
519
|
+
|
|
520
|
+
msgid "Review requested"
|
|
521
|
+
msgstr ""
|
|
522
|
+
|
|
523
|
+
msgid "Search in all communities"
|
|
524
|
+
msgstr ""
|
|
525
|
+
|
|
526
|
+
msgid "Search in my communities"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
529
|
+
msgid "Select a community"
|
|
530
|
+
msgstr ""
|
|
531
|
+
|
|
532
|
+
msgid "Version {{- version}}"
|
|
533
|
+
msgstr ""
|
|
71
534
|
|
|
72
535
|
msgid "Preview"
|
|
73
536
|
msgstr "Anteprima"
|
|
@@ -75,205 +538,368 @@ msgstr "Anteprima"
|
|
|
75
538
|
msgid "Only published versions are displayed."
|
|
76
539
|
msgstr ""
|
|
77
540
|
|
|
78
|
-
msgid "
|
|
541
|
+
msgid "An error occurred while fetching the versions."
|
|
79
542
|
msgstr ""
|
|
80
543
|
|
|
81
|
-
msgid "
|
|
544
|
+
msgid "View all {{count}} versions"
|
|
545
|
+
msgid_plural "View all {{count}} versions"
|
|
546
|
+
msgstr[0] ""
|
|
547
|
+
msgstr[1] ""
|
|
548
|
+
msgstr[2] ""
|
|
549
|
+
|
|
550
|
+
msgid ""
|
|
551
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
552
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
553
|
+
"latest one. <5>Read more</5>.</0>"
|
|
82
554
|
msgstr ""
|
|
83
555
|
|
|
84
|
-
msgid "
|
|
556
|
+
msgid ""
|
|
557
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
558
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
559
|
+
"more</4>.</0>"
|
|
85
560
|
msgstr ""
|
|
86
561
|
|
|
87
|
-
msgid "
|
|
562
|
+
msgid "Remove"
|
|
563
|
+
msgstr "Rimuovi"
|
|
564
|
+
|
|
565
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
88
566
|
msgstr ""
|
|
89
567
|
|
|
90
|
-
msgid "
|
|
568
|
+
msgid "Remove community"
|
|
91
569
|
msgstr ""
|
|
92
570
|
|
|
93
|
-
msgid "
|
|
571
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
574
|
+
msgid "I understand the consequences:"
|
|
575
|
+
msgstr ""
|
|
576
|
+
|
|
577
|
+
msgid ""
|
|
578
|
+
"The record can only be re-included in the community by going through a new "
|
|
579
|
+
"review by the community curators."
|
|
580
|
+
msgstr ""
|
|
581
|
+
|
|
582
|
+
msgid "Something went wrong"
|
|
94
583
|
msgstr ""
|
|
95
584
|
|
|
96
|
-
msgid "
|
|
585
|
+
msgid "Cancel removal"
|
|
97
586
|
msgstr ""
|
|
98
587
|
|
|
588
|
+
msgid "Cancel"
|
|
589
|
+
msgstr "Annulla"
|
|
590
|
+
|
|
591
|
+
msgid "Confirm removal"
|
|
592
|
+
msgstr ""
|
|
593
|
+
|
|
594
|
+
msgid ""
|
|
595
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
596
|
+
"their access</4> to the record."
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
msgid "Select permissions"
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
602
|
+
msgid "Short name for your link (optional)."
|
|
603
|
+
msgstr ""
|
|
604
|
+
|
|
605
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
609
|
+
msgstr ""
|
|
610
|
+
|
|
611
|
+
msgid "Create a new link"
|
|
612
|
+
msgstr ""
|
|
613
|
+
|
|
614
|
+
msgid "Link title"
|
|
615
|
+
msgstr ""
|
|
616
|
+
|
|
617
|
+
msgid "Expires at"
|
|
618
|
+
msgstr ""
|
|
619
|
+
|
|
620
|
+
msgid "Never"
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
623
|
+
msgid "Access"
|
|
624
|
+
msgstr "Accesso"
|
|
625
|
+
|
|
626
|
+
msgid "Delete"
|
|
627
|
+
msgstr "Cancella"
|
|
628
|
+
|
|
99
629
|
msgid "Copy link"
|
|
100
630
|
msgstr ""
|
|
101
631
|
|
|
102
|
-
msgid "
|
|
632
|
+
msgid "Can view"
|
|
633
|
+
msgstr ""
|
|
634
|
+
|
|
635
|
+
msgid "Can view restricted files of all versions of this record."
|
|
636
|
+
msgstr ""
|
|
637
|
+
|
|
638
|
+
msgid "Can preview drafts"
|
|
639
|
+
msgstr ""
|
|
640
|
+
|
|
641
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
103
642
|
msgstr ""
|
|
104
643
|
|
|
105
|
-
msgid "
|
|
644
|
+
msgid "Can edit"
|
|
106
645
|
msgstr ""
|
|
107
646
|
|
|
108
647
|
msgid ""
|
|
109
|
-
"
|
|
648
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
110
649
|
msgstr ""
|
|
111
650
|
|
|
112
651
|
msgid ""
|
|
113
|
-
"
|
|
114
|
-
"
|
|
652
|
+
"Can view (view access link can be created only after the record is "
|
|
653
|
+
"published)"
|
|
115
654
|
msgstr ""
|
|
116
655
|
|
|
117
|
-
msgid "
|
|
656
|
+
msgid "Expires"
|
|
118
657
|
msgstr ""
|
|
119
658
|
|
|
120
|
-
msgid "
|
|
121
|
-
msgstr "
|
|
659
|
+
msgid "This record has no links generated yet."
|
|
660
|
+
msgstr ""
|
|
122
661
|
|
|
123
|
-
msgid "
|
|
662
|
+
msgid "Unable to change the access request settings."
|
|
124
663
|
msgstr ""
|
|
125
664
|
|
|
126
|
-
msgid "
|
|
665
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
127
666
|
msgstr ""
|
|
128
667
|
|
|
129
|
-
msgid "
|
|
668
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
130
669
|
msgstr ""
|
|
131
670
|
|
|
132
|
-
msgid "
|
|
133
|
-
msgstr "
|
|
671
|
+
msgid "Accept conditions"
|
|
672
|
+
msgstr ""
|
|
134
673
|
|
|
135
|
-
msgid "
|
|
136
|
-
msgstr "
|
|
674
|
+
msgid "Advanced options"
|
|
675
|
+
msgstr ""
|
|
137
676
|
|
|
138
|
-
msgid "
|
|
677
|
+
msgid "Save"
|
|
678
|
+
msgstr "Memorizza"
|
|
679
|
+
|
|
680
|
+
msgid "No user has access to this record yet."
|
|
139
681
|
msgstr ""
|
|
140
682
|
|
|
141
|
-
msgid "
|
|
142
|
-
msgstr "
|
|
683
|
+
msgid "People with access"
|
|
684
|
+
msgstr ""
|
|
143
685
|
|
|
144
|
-
msgid "
|
|
145
|
-
msgstr "
|
|
686
|
+
msgid "No group has access to this record yet."
|
|
687
|
+
msgstr ""
|
|
146
688
|
|
|
147
|
-
msgid "
|
|
689
|
+
msgid "Groups with access"
|
|
148
690
|
msgstr ""
|
|
149
691
|
|
|
150
|
-
msgid "You
|
|
692
|
+
msgid "You"
|
|
151
693
|
msgstr ""
|
|
152
694
|
|
|
153
|
-
msgid "
|
|
695
|
+
msgid "Add people"
|
|
154
696
|
msgstr ""
|
|
155
697
|
|
|
156
|
-
msgid "No
|
|
698
|
+
msgid "No selected users"
|
|
157
699
|
msgstr ""
|
|
158
700
|
|
|
159
|
-
msgid "
|
|
701
|
+
msgid ""
|
|
702
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
703
|
+
"invited)"
|
|
160
704
|
msgstr ""
|
|
161
705
|
|
|
162
|
-
msgid "
|
|
706
|
+
msgid "Search by email, full name or username"
|
|
163
707
|
msgstr ""
|
|
164
708
|
|
|
165
|
-
msgid "
|
|
166
|
-
msgstr "
|
|
709
|
+
msgid "users"
|
|
710
|
+
msgstr ""
|
|
167
711
|
|
|
168
|
-
msgid "
|
|
712
|
+
msgid "Add groups"
|
|
169
713
|
msgstr ""
|
|
170
714
|
|
|
171
|
-
msgid "
|
|
172
|
-
msgstr "
|
|
715
|
+
msgid "Group"
|
|
716
|
+
msgstr "Gruppo"
|
|
173
717
|
|
|
174
|
-
msgid "
|
|
718
|
+
msgid "No selected groups"
|
|
175
719
|
msgstr ""
|
|
176
720
|
|
|
177
|
-
msgid "
|
|
721
|
+
msgid "Search for groups"
|
|
178
722
|
msgstr ""
|
|
179
723
|
|
|
180
|
-
msgid "
|
|
724
|
+
msgid "groups"
|
|
181
725
|
msgstr ""
|
|
182
726
|
|
|
183
|
-
msgid "
|
|
727
|
+
msgid "Add"
|
|
728
|
+
msgstr "Aggiungi"
|
|
729
|
+
|
|
730
|
+
msgid "Notify people"
|
|
184
731
|
msgstr ""
|
|
185
732
|
|
|
186
|
-
msgid "
|
|
733
|
+
msgid "Notification message"
|
|
187
734
|
msgstr ""
|
|
188
735
|
|
|
189
|
-
msgid "
|
|
736
|
+
msgid "You are about to add"
|
|
190
737
|
msgstr ""
|
|
191
738
|
|
|
192
|
-
msgid "
|
|
739
|
+
msgid "Access already granted"
|
|
193
740
|
msgstr ""
|
|
194
741
|
|
|
195
|
-
msgid "
|
|
742
|
+
msgid "Can manage"
|
|
196
743
|
msgstr ""
|
|
197
744
|
|
|
198
|
-
msgid "
|
|
745
|
+
msgid ""
|
|
746
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
747
|
+
"this record."
|
|
199
748
|
msgstr ""
|
|
200
749
|
|
|
201
|
-
msgid "
|
|
750
|
+
msgid "You don't have permissions to share this record."
|
|
202
751
|
msgstr ""
|
|
203
752
|
|
|
204
|
-
msgid "
|
|
753
|
+
msgid "Share"
|
|
205
754
|
msgstr ""
|
|
206
755
|
|
|
207
|
-
msgid "
|
|
756
|
+
msgid "People"
|
|
208
757
|
msgstr ""
|
|
209
758
|
|
|
210
|
-
msgid "
|
|
759
|
+
msgid "Groups"
|
|
760
|
+
msgstr "Gruppi"
|
|
761
|
+
|
|
762
|
+
msgid "Settings"
|
|
763
|
+
msgstr "Impostazioni"
|
|
764
|
+
|
|
765
|
+
msgid "Share access"
|
|
211
766
|
msgstr ""
|
|
212
767
|
|
|
213
|
-
msgid "
|
|
214
|
-
msgstr "
|
|
768
|
+
msgid "Link expiration"
|
|
769
|
+
msgstr ""
|
|
215
770
|
|
|
216
|
-
msgid "
|
|
771
|
+
msgid "In 1 month"
|
|
217
772
|
msgstr ""
|
|
218
773
|
|
|
219
|
-
msgid "In
|
|
774
|
+
msgid "In 2 months"
|
|
220
775
|
msgstr ""
|
|
221
776
|
|
|
222
|
-
msgid "
|
|
777
|
+
msgid "In 6 months"
|
|
223
778
|
msgstr ""
|
|
224
779
|
|
|
225
|
-
msgid "
|
|
780
|
+
msgid "In 1 year"
|
|
226
781
|
msgstr ""
|
|
227
782
|
|
|
228
|
-
msgid "
|
|
783
|
+
msgid "Invalid date format."
|
|
229
784
|
msgstr ""
|
|
230
785
|
|
|
231
|
-
msgid "
|
|
786
|
+
msgid "Access link expiration date cannot be in the past."
|
|
232
787
|
msgstr ""
|
|
233
788
|
|
|
234
|
-
msgid "
|
|
789
|
+
msgid "Access request"
|
|
790
|
+
msgstr ""
|
|
791
|
+
|
|
792
|
+
msgid "Unable to change the expiration request settings."
|
|
235
793
|
msgstr ""
|
|
236
794
|
|
|
237
|
-
msgid "
|
|
795
|
+
msgid "Expiration date: "
|
|
238
796
|
msgstr ""
|
|
239
797
|
|
|
240
798
|
msgid ""
|
|
241
|
-
"
|
|
242
|
-
"
|
|
799
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
800
|
+
"empty to set no expiration limit."
|
|
243
801
|
msgstr ""
|
|
244
802
|
|
|
245
|
-
msgid "
|
|
803
|
+
msgid "Link expiration date:"
|
|
246
804
|
msgstr ""
|
|
247
805
|
|
|
248
|
-
msgid "
|
|
806
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
249
807
|
msgstr ""
|
|
250
808
|
|
|
251
|
-
msgid "
|
|
809
|
+
msgid "Start over"
|
|
252
810
|
msgstr ""
|
|
253
811
|
|
|
254
|
-
msgid "
|
|
255
|
-
msgstr "
|
|
812
|
+
msgid "ProTip"
|
|
813
|
+
msgstr ""
|
|
256
814
|
|
|
257
|
-
msgid "
|
|
258
|
-
msgstr "
|
|
815
|
+
msgid "Search guide"
|
|
816
|
+
msgstr ""
|
|
817
|
+
|
|
818
|
+
msgid ""
|
|
819
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
820
|
+
"search queries.</0>"
|
|
821
|
+
msgstr ""
|
|
259
822
|
|
|
260
823
|
msgid "Search in my communities..."
|
|
261
824
|
msgstr ""
|
|
262
825
|
|
|
263
|
-
msgid "
|
|
826
|
+
msgid "View"
|
|
827
|
+
msgstr "Visualizzazione"
|
|
828
|
+
|
|
829
|
+
msgid "Published in: {{publishedIn}}"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
832
|
+
msgid "In review"
|
|
264
833
|
msgstr ""
|
|
265
834
|
|
|
266
|
-
msgid "
|
|
835
|
+
msgid "Declined"
|
|
267
836
|
msgstr ""
|
|
268
837
|
|
|
269
|
-
msgid "
|
|
270
|
-
msgstr "
|
|
838
|
+
msgid "Expired"
|
|
839
|
+
msgstr ""
|
|
840
|
+
|
|
841
|
+
msgid "Draft"
|
|
842
|
+
msgstr ""
|
|
843
|
+
|
|
844
|
+
msgid "New version draft"
|
|
845
|
+
msgstr ""
|
|
271
846
|
|
|
272
847
|
msgid "open"
|
|
273
848
|
msgstr ""
|
|
274
849
|
|
|
850
|
+
msgid "Open"
|
|
851
|
+
msgstr "Apri"
|
|
852
|
+
|
|
275
853
|
msgid "unlock"
|
|
276
854
|
msgstr ""
|
|
277
855
|
|
|
856
|
+
msgid "Get started!"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
msgid "Make your first upload!"
|
|
860
|
+
msgstr ""
|
|
861
|
+
|
|
862
|
+
msgid "New upload"
|
|
863
|
+
msgstr "Nuovo caricamento"
|
|
864
|
+
|
|
278
865
|
msgid "Search in my uploads..."
|
|
279
866
|
msgstr ""
|
|
867
|
+
|
|
868
|
+
msgid "ORCID profile"
|
|
869
|
+
msgstr ""
|
|
870
|
+
|
|
871
|
+
msgid "ORCID logo"
|
|
872
|
+
msgstr ""
|
|
873
|
+
|
|
874
|
+
msgid "ROR profile"
|
|
875
|
+
msgstr ""
|
|
876
|
+
|
|
877
|
+
msgid "ROR logo"
|
|
878
|
+
msgstr ""
|
|
879
|
+
|
|
880
|
+
msgid "GND profile"
|
|
881
|
+
msgstr ""
|
|
882
|
+
|
|
883
|
+
msgid "GND logo"
|
|
884
|
+
msgstr ""
|
|
885
|
+
|
|
886
|
+
msgid "No name"
|
|
887
|
+
msgstr ""
|
|
888
|
+
|
|
889
|
+
msgid "and {{count}} other"
|
|
890
|
+
msgid_plural "and {{count}} other"
|
|
891
|
+
msgstr[0] ""
|
|
892
|
+
msgstr[1] ""
|
|
893
|
+
msgstr[2] ""
|
|
894
|
+
|
|
895
|
+
msgid "and {{count}} others"
|
|
896
|
+
msgid_plural "and {{count}} others"
|
|
897
|
+
msgstr[0] ""
|
|
898
|
+
msgstr[1] ""
|
|
899
|
+
msgstr[2] ""
|
|
900
|
+
|
|
901
|
+
msgctxt ""
|
|
902
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
903
|
+
"until today.</0>"
|
|
904
|
+
msgid "<0><0>metadata.publication"
|
|
905
|
+
msgstr ""
|