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