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