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