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