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