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