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
|
@@ -1,418 +1,959 @@
|
|
|
1
1
|
# Translations template for invenio-app-rdm.
|
|
2
|
-
# Copyright (C)
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
3
|
# This file is distributed under the same license as the invenio-app-rdm
|
|
4
4
|
# project.
|
|
5
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
6
|
#
|
|
7
7
|
# Translators:
|
|
8
|
-
#
|
|
9
|
-
#
|
|
8
|
+
# Corina Ionascu <icorina@nipne.ro>, 2024
|
|
9
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
10
|
+
# Nicolaie Constantinescu, 2025
|
|
10
11
|
#
|
|
11
12
|
#, fuzzy
|
|
12
13
|
msgid ""
|
|
13
14
|
msgstr ""
|
|
14
|
-
"Project-Id-Version: invenio-app-rdm
|
|
15
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
15
16
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
16
|
-
"POT-Creation-Date:
|
|
17
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
17
18
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
18
|
-
"Last-Translator: Nicolaie Constantinescu,
|
|
19
|
+
"Last-Translator: Nicolaie Constantinescu, 2025\n"
|
|
19
20
|
"Language-Team: Romanian (https://app.transifex.com/inveniosoftware/teams/23537/ro/)\n"
|
|
20
21
|
"MIME-Version: 1.0\n"
|
|
21
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
23
|
"Content-Transfer-Encoding: 8bit\n"
|
|
23
|
-
"Generated-By: Babel 2.
|
|
24
|
+
"Generated-By: Babel 2.17.0\n"
|
|
24
25
|
"Language: ro\n"
|
|
25
26
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
|
26
27
|
|
|
27
|
-
#: invenio_app_rdm/config.py:
|
|
28
|
+
#: invenio_app_rdm/config.py:219
|
|
28
29
|
msgid "The turn-key research data management repository"
|
|
29
|
-
msgstr ""
|
|
30
|
+
msgstr "Depozit la cheie pentru managementul datelor de cercetare"
|
|
30
31
|
|
|
31
|
-
#: invenio_app_rdm/config.py:
|
|
32
|
+
#: invenio_app_rdm/config.py:258
|
|
33
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
32
34
|
msgid "InvenioRDM"
|
|
33
|
-
msgstr ""
|
|
35
|
+
msgstr "InvenioRDM"
|
|
34
36
|
|
|
35
|
-
#: invenio_app_rdm/config.py:
|
|
37
|
+
#: invenio_app_rdm/config.py:353
|
|
36
38
|
msgid "Welcome to Invenio App RDM!"
|
|
37
|
-
msgstr ""
|
|
39
|
+
msgstr "Bine ai venit la Invenio App RDM!"
|
|
38
40
|
|
|
39
|
-
#: invenio_app_rdm/config.py:
|
|
41
|
+
#: invenio_app_rdm/config.py:750
|
|
40
42
|
msgid "JSON"
|
|
41
|
-
msgstr ""
|
|
43
|
+
msgstr "JSON"
|
|
44
|
+
|
|
45
|
+
#: invenio_app_rdm/config.py:757
|
|
46
|
+
msgid "JSON-LD"
|
|
47
|
+
msgstr "JSON-LD"
|
|
42
48
|
|
|
43
|
-
#: invenio_app_rdm/config.py:
|
|
49
|
+
#: invenio_app_rdm/config.py:765
|
|
44
50
|
msgid "CSL"
|
|
45
|
-
msgstr ""
|
|
51
|
+
msgstr "CSL"
|
|
46
52
|
|
|
47
|
-
#: invenio_app_rdm/config.py:
|
|
53
|
+
#: invenio_app_rdm/config.py:772
|
|
48
54
|
msgid "DataCite JSON"
|
|
49
|
-
msgstr ""
|
|
55
|
+
msgstr "DataCite JSON"
|
|
50
56
|
|
|
51
|
-
#: invenio_app_rdm/config.py:
|
|
57
|
+
#: invenio_app_rdm/config.py:781
|
|
52
58
|
msgid "DataCite XML"
|
|
53
|
-
msgstr ""
|
|
59
|
+
msgstr "DataCite XML"
|
|
54
60
|
|
|
55
|
-
#: invenio_app_rdm/config.py:
|
|
61
|
+
#: invenio_app_rdm/config.py:790
|
|
56
62
|
msgid "Dublin Core XML"
|
|
57
|
-
msgstr ""
|
|
63
|
+
msgstr "Dublin Core XML"
|
|
64
|
+
|
|
65
|
+
#: invenio_app_rdm/config.py:799
|
|
66
|
+
msgid "MARCXML"
|
|
67
|
+
msgstr "MARCXML"
|
|
68
|
+
|
|
69
|
+
#: invenio_app_rdm/config.py:806
|
|
70
|
+
msgid "BibTeX"
|
|
71
|
+
msgstr "BibTeX"
|
|
72
|
+
|
|
73
|
+
#: invenio_app_rdm/config.py:813
|
|
74
|
+
msgid "GeoJSON"
|
|
75
|
+
msgstr "GeoJSON"
|
|
58
76
|
|
|
59
|
-
#: invenio_app_rdm/config.py:
|
|
77
|
+
#: invenio_app_rdm/config.py:820
|
|
78
|
+
msgid "DCAT"
|
|
79
|
+
msgstr "DCAT"
|
|
80
|
+
|
|
81
|
+
#: invenio_app_rdm/config.py:827
|
|
82
|
+
msgid "Codemeta"
|
|
83
|
+
msgstr "Codemeta"
|
|
84
|
+
|
|
85
|
+
#: invenio_app_rdm/config.py:834
|
|
86
|
+
msgid "Citation File Format"
|
|
87
|
+
msgstr "Citation File Format"
|
|
88
|
+
|
|
89
|
+
#: invenio_app_rdm/config.py:996
|
|
60
90
|
msgid "APA"
|
|
61
|
-
msgstr ""
|
|
91
|
+
msgstr "APA"
|
|
62
92
|
|
|
63
|
-
#: invenio_app_rdm/config.py:
|
|
93
|
+
#: invenio_app_rdm/config.py:997
|
|
64
94
|
msgid "Harvard"
|
|
65
|
-
msgstr ""
|
|
95
|
+
msgstr "Harvard"
|
|
66
96
|
|
|
67
|
-
#: invenio_app_rdm/config.py:
|
|
97
|
+
#: invenio_app_rdm/config.py:998
|
|
68
98
|
msgid "MLA"
|
|
69
|
-
msgstr ""
|
|
99
|
+
msgstr "MLA"
|
|
70
100
|
|
|
71
|
-
#: invenio_app_rdm/config.py:
|
|
101
|
+
#: invenio_app_rdm/config.py:999
|
|
72
102
|
msgid "Vancouver"
|
|
73
|
-
msgstr ""
|
|
103
|
+
msgstr "Vancouver"
|
|
74
104
|
|
|
75
|
-
#: invenio_app_rdm/config.py:
|
|
105
|
+
#: invenio_app_rdm/config.py:1000
|
|
76
106
|
msgid "Chicago"
|
|
77
|
-
msgstr ""
|
|
107
|
+
msgstr "Chicago"
|
|
78
108
|
|
|
79
|
-
#: invenio_app_rdm/config.py:
|
|
109
|
+
#: invenio_app_rdm/config.py:1001
|
|
80
110
|
msgid "IEEE"
|
|
111
|
+
msgstr "IEEE"
|
|
112
|
+
|
|
113
|
+
#: invenio_app_rdm/ext.py:57
|
|
114
|
+
msgid "My dashboard"
|
|
115
|
+
msgstr "Tabloul de control personal"
|
|
116
|
+
|
|
117
|
+
#: invenio_app_rdm/ext.py:63
|
|
118
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
119
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
120
|
+
msgid "New upload"
|
|
121
|
+
msgstr "Încărcare nouă"
|
|
122
|
+
|
|
123
|
+
#: invenio_app_rdm/ext.py:77
|
|
124
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
125
|
+
msgid "Uploads"
|
|
126
|
+
msgstr "Încărcări"
|
|
127
|
+
|
|
128
|
+
#: invenio_app_rdm/ext.py:82
|
|
129
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
130
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
131
|
+
msgid "Communities"
|
|
132
|
+
msgstr "Comunități"
|
|
133
|
+
|
|
134
|
+
#: invenio_app_rdm/ext.py:87
|
|
135
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
136
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
137
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
138
|
+
msgid "Requests"
|
|
139
|
+
msgstr "Cereri"
|
|
140
|
+
|
|
141
|
+
#: invenio_app_rdm/ext.py:110
|
|
142
|
+
msgid "Home"
|
|
143
|
+
msgstr "Acasă"
|
|
144
|
+
|
|
145
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
146
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
147
|
+
#: invenio_app_rdm/ext.py:118
|
|
148
|
+
msgid "Records"
|
|
149
|
+
msgstr "Înregistrări"
|
|
150
|
+
|
|
151
|
+
#: invenio_app_rdm/ext.py:125
|
|
152
|
+
msgid "Submit"
|
|
153
|
+
msgstr "Trimite"
|
|
154
|
+
|
|
155
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
156
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
157
|
+
msgid "Domains"
|
|
158
|
+
msgstr "Domenii"
|
|
159
|
+
|
|
160
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
161
|
+
msgid "Site management"
|
|
162
|
+
msgstr "Management site"
|
|
163
|
+
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
165
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
167
|
+
msgid "Domain"
|
|
168
|
+
msgstr "Domeniu"
|
|
169
|
+
|
|
170
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
171
|
+
msgid "TLD"
|
|
172
|
+
msgstr "TLD"
|
|
173
|
+
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
175
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
177
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
178
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
179
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
180
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
181
|
+
msgid "Status"
|
|
182
|
+
msgstr "Status"
|
|
183
|
+
|
|
184
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
185
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
186
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
187
|
+
msgid "Users"
|
|
188
|
+
msgstr "Utilizatori"
|
|
189
|
+
|
|
190
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
191
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
192
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
193
|
+
msgid "Active"
|
|
194
|
+
msgstr "Activ"
|
|
195
|
+
|
|
196
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
197
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
198
|
+
msgid "Inactive"
|
|
199
|
+
msgstr "Inactiv"
|
|
200
|
+
|
|
201
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
202
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
203
|
+
msgid "Confirmed"
|
|
204
|
+
msgstr "Confirmat"
|
|
205
|
+
|
|
206
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
207
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
208
|
+
msgid "Verified"
|
|
209
|
+
msgstr "Verificat"
|
|
210
|
+
|
|
211
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
212
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
213
|
+
msgid "Blocked"
|
|
214
|
+
msgstr "Blocat"
|
|
215
|
+
|
|
216
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
217
|
+
msgid "Domain name (all lowercase)"
|
|
218
|
+
msgstr "Numele domeniului (fără majuscule)"
|
|
219
|
+
|
|
220
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
221
|
+
msgid ""
|
|
222
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
223
|
+
"domain require moderation), verified (users in domain does not require "
|
|
224
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
225
|
+
msgstr ""
|
|
226
|
+
"Starea domeniului. Unul dintre cele noi (domenii care au nevoie de "
|
|
227
|
+
"revizuire), moderate (utilizatorii domeniului au nevoie de moderare), "
|
|
228
|
+
"verificați (utilizatorii docmeniului nu au nevoie de moderare) sau dintre "
|
|
229
|
+
"cei blocați (utilizatorii nu se pot înregistra folosind acest domeniu)."
|
|
230
|
+
|
|
231
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
232
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
233
|
+
msgid "Category"
|
|
234
|
+
msgstr "Categorie"
|
|
235
|
+
|
|
236
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
237
|
+
msgid "A label to categorise the domain."
|
|
238
|
+
msgstr "O etichetă pentru a categorisi acest domeniu."
|
|
239
|
+
|
|
240
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
241
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
242
|
+
msgid "Flagged"
|
|
243
|
+
msgstr "Semnalat"
|
|
244
|
+
|
|
245
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
246
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
247
|
+
msgstr ""
|
|
248
|
+
"Folosit de procesele automate pentru a semnala domeniul care are nevoie de "
|
|
249
|
+
"revizuire."
|
|
250
|
+
|
|
251
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
252
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
253
|
+
msgid "Source of flag"
|
|
254
|
+
msgstr "Sursa semnalului"
|
|
255
|
+
|
|
256
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
257
|
+
msgid "Which source flagged the domain."
|
|
258
|
+
msgstr "Care dintre surse a semnalat domeniul."
|
|
259
|
+
|
|
260
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
261
|
+
msgid "Create domain"
|
|
262
|
+
msgstr "Creează domeniul"
|
|
263
|
+
|
|
264
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
265
|
+
msgid "Edit domain"
|
|
266
|
+
msgstr "Editează domeniul"
|
|
267
|
+
|
|
268
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
269
|
+
msgid "Domain details"
|
|
270
|
+
msgstr "Detaliile domeniului"
|
|
271
|
+
|
|
272
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
273
|
+
msgid "Top-level domain"
|
|
274
|
+
msgstr "Domeniu top-level"
|
|
275
|
+
|
|
276
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
277
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
278
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
279
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
280
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
281
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
282
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
283
|
+
msgid "Created"
|
|
284
|
+
msgstr "Creat"
|
|
285
|
+
|
|
286
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
287
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
288
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
289
|
+
msgid "Updated"
|
|
290
|
+
msgstr "Actualizat"
|
|
291
|
+
|
|
292
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
293
|
+
msgid "Organisation"
|
|
294
|
+
msgstr "Organizație"
|
|
295
|
+
|
|
296
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
297
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
298
|
+
msgid "Records & files"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
302
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
303
|
+
msgid "Title"
|
|
304
|
+
msgstr "Titlul"
|
|
305
|
+
|
|
306
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
307
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
308
|
+
msgid "Owner"
|
|
309
|
+
msgstr "Proprietar"
|
|
310
|
+
|
|
311
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
312
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
313
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
314
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
315
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
317
|
+
msgid "Files"
|
|
318
|
+
msgstr "Fișiere"
|
|
319
|
+
|
|
320
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
321
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
322
|
+
msgid "Stats"
|
|
323
|
+
msgstr "Informații"
|
|
324
|
+
|
|
325
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
326
|
+
msgid "Delete record"
|
|
327
|
+
msgstr "Șterge înregistrare"
|
|
328
|
+
|
|
329
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
330
|
+
msgid "Restore record"
|
|
331
|
+
msgstr "Restaurează înregistrare"
|
|
332
|
+
|
|
333
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
334
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
335
|
+
msgid "Drafts"
|
|
81
336
|
msgstr ""
|
|
82
337
|
|
|
83
|
-
#: invenio_app_rdm/
|
|
84
|
-
msgid "
|
|
338
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
339
|
+
msgid "Set quota"
|
|
340
|
+
msgstr "Setează cota"
|
|
341
|
+
|
|
342
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
343
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
344
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
345
|
+
msgid "Moderation"
|
|
85
346
|
msgstr ""
|
|
86
347
|
|
|
87
|
-
#: invenio_app_rdm/
|
|
88
|
-
#: invenio_app_rdm/
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
msgid "
|
|
91
|
-
msgstr "
|
|
348
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
349
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
350
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
351
|
+
msgid "User"
|
|
352
|
+
msgstr "Utilizator"
|
|
92
353
|
|
|
93
|
-
#: invenio_app_rdm/
|
|
94
|
-
|
|
354
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
355
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
356
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
357
|
+
msgid "Email"
|
|
358
|
+
msgstr "Email"
|
|
359
|
+
|
|
360
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
361
|
+
msgid "Email domain"
|
|
95
362
|
msgstr ""
|
|
96
363
|
|
|
97
|
-
#: invenio_app_rdm/
|
|
98
|
-
|
|
99
|
-
msgid "New upload"
|
|
364
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
365
|
+
msgid "Activity"
|
|
100
366
|
msgstr ""
|
|
101
367
|
|
|
102
|
-
#: invenio_app_rdm/
|
|
103
|
-
|
|
368
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
369
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
370
|
+
msgid "Approve"
|
|
371
|
+
msgstr "Aprobă"
|
|
372
|
+
|
|
373
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
374
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
375
|
+
msgid "Block"
|
|
104
376
|
msgstr ""
|
|
105
377
|
|
|
106
|
-
#: invenio_app_rdm/
|
|
107
|
-
msgid "
|
|
378
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
379
|
+
msgid "User moderation"
|
|
108
380
|
msgstr ""
|
|
109
381
|
|
|
110
|
-
#: invenio_app_rdm/
|
|
111
|
-
|
|
382
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
383
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
384
|
+
msgid "ID"
|
|
385
|
+
msgstr "ID"
|
|
386
|
+
|
|
387
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
388
|
+
msgid "Open"
|
|
389
|
+
msgstr "Deschis"
|
|
390
|
+
|
|
391
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
392
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
393
|
+
msgid "Username"
|
|
394
|
+
msgstr "Nume utilizator"
|
|
395
|
+
|
|
396
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
397
|
+
msgid "Domain "
|
|
398
|
+
msgstr "Domeniu"
|
|
399
|
+
|
|
400
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
401
|
+
msgid "Visibility"
|
|
402
|
+
msgstr "Vizibilitate"
|
|
403
|
+
|
|
404
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
405
|
+
msgid "Confirmed at"
|
|
406
|
+
msgstr "Confirmat la"
|
|
407
|
+
|
|
408
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
409
|
+
msgid "Verified at"
|
|
410
|
+
msgstr "Verificat la"
|
|
411
|
+
|
|
412
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
413
|
+
msgid "Blocked at"
|
|
414
|
+
msgstr "Blocat la"
|
|
415
|
+
|
|
416
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
417
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
418
|
+
msgid "User management"
|
|
112
419
|
msgstr ""
|
|
113
420
|
|
|
114
|
-
#: invenio_app_rdm/
|
|
115
|
-
msgid "
|
|
421
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
422
|
+
msgid "Restore"
|
|
116
423
|
msgstr ""
|
|
117
424
|
|
|
118
|
-
#: invenio_app_rdm/
|
|
119
|
-
msgid "
|
|
425
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
426
|
+
msgid "Suspend"
|
|
120
427
|
msgstr ""
|
|
121
428
|
|
|
429
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
430
|
+
msgid "User details"
|
|
431
|
+
msgstr "Detaliile utilizatorului"
|
|
432
|
+
|
|
433
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
434
|
+
msgid "Search "
|
|
435
|
+
msgstr "Caută"
|
|
436
|
+
|
|
437
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
438
|
+
msgid "New version"
|
|
439
|
+
msgstr "Versiune nouă"
|
|
440
|
+
|
|
441
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
442
|
+
msgid "Edit upload"
|
|
443
|
+
msgstr "Editează încărcarea"
|
|
444
|
+
|
|
445
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
446
|
+
msgid "Information banner"
|
|
447
|
+
msgstr "Banner cu informații"
|
|
448
|
+
|
|
449
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
450
|
+
msgid "Community visibility"
|
|
451
|
+
msgstr "Vizibilitate la nivelul comunității"
|
|
452
|
+
|
|
122
453
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
123
|
-
|
|
124
|
-
|
|
454
|
+
msgid "The community is restricted to users with access."
|
|
455
|
+
msgstr "Comunitatea este restricționată la utilizatorii care au acces."
|
|
456
|
+
|
|
457
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
458
|
+
msgid "Restricted"
|
|
459
|
+
msgstr "Restricționat"
|
|
460
|
+
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
462
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
463
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
125
464
|
msgid "Preview"
|
|
126
|
-
msgstr ""
|
|
465
|
+
msgstr "Previzualizare"
|
|
127
466
|
|
|
128
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
467
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
129
468
|
msgid "You are previewing a published record."
|
|
130
|
-
msgstr ""
|
|
469
|
+
msgstr "Previzualizezi o înregistrare publicată."
|
|
131
470
|
|
|
132
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
471
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
133
472
|
msgid "You are previewing changes that have not yet been published."
|
|
134
|
-
msgstr ""
|
|
473
|
+
msgstr "Previzualizezi modificările care nu au fost încă publicate."
|
|
135
474
|
|
|
136
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
475
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
137
476
|
msgid "You are previewing a new record that has not yet been published."
|
|
138
|
-
msgstr ""
|
|
477
|
+
msgstr "Previzualizezi o înregistrare nouă care nu a fost încă publicată."
|
|
139
478
|
|
|
140
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
479
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
141
480
|
msgid ""
|
|
142
481
|
"You are previewing a new record version that has not yet been published."
|
|
143
482
|
msgstr ""
|
|
483
|
+
"Previzualizezi o versiune a unei noi înregistrări care nu a fost încă "
|
|
484
|
+
"publicată."
|
|
144
485
|
|
|
145
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
486
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
146
487
|
#, python-format
|
|
147
488
|
msgid ""
|
|
148
489
|
"\n"
|
|
149
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
490
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
491
|
+
" available.\n"
|
|
150
492
|
" "
|
|
151
493
|
msgstr ""
|
|
494
|
+
"\n"
|
|
495
|
+
" Este disponibilă o %(link_start)sversiune nouă%(link_end)s a \n"
|
|
496
|
+
" înregistrării.\n"
|
|
497
|
+
" "
|
|
152
498
|
|
|
153
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
499
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
154
500
|
msgid "Record access information"
|
|
155
|
-
msgstr ""
|
|
501
|
+
msgstr "Informații de acces ale înregistrării"
|
|
156
502
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
158
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
159
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
503
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
504
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
506
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
160
507
|
msgid "Reason"
|
|
161
|
-
msgstr ""
|
|
508
|
+
msgstr "Motiv"
|
|
162
509
|
|
|
163
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
510
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
164
511
|
msgid "Back-navigation"
|
|
165
|
-
msgstr ""
|
|
512
|
+
msgstr "Navigare înapoi"
|
|
166
513
|
|
|
167
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
514
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
168
515
|
msgid "Back to edit"
|
|
169
|
-
msgstr ""
|
|
516
|
+
msgstr "Înapoi la editare"
|
|
170
517
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
518
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
172
519
|
msgid "Manage record"
|
|
173
|
-
msgstr ""
|
|
520
|
+
msgstr "Gestionează înregistrarea"
|
|
174
521
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
522
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
176
523
|
msgid "Publication date and version number"
|
|
177
|
-
msgstr ""
|
|
524
|
+
msgstr "Data publicării și numărul versiunii"
|
|
178
525
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
526
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
180
527
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
181
528
|
msgid "Publication date"
|
|
182
|
-
msgstr ""
|
|
529
|
+
msgstr "Data publicării"
|
|
183
530
|
|
|
184
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
531
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
185
532
|
msgid "Published"
|
|
186
|
-
msgstr ""
|
|
533
|
+
msgstr "Publicat"
|
|
187
534
|
|
|
188
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
535
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
536
|
+
#, python-brace-format
|
|
189
537
|
msgid "Version {version_number}"
|
|
190
|
-
msgstr ""
|
|
538
|
+
msgstr "Versiunea {version_number}"
|
|
191
539
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
540
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
193
541
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
194
542
|
msgid "Resource type"
|
|
195
|
-
msgstr ""
|
|
543
|
+
msgstr "Tipul resursei"
|
|
196
544
|
|
|
197
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
545
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
198
546
|
msgid "Access status"
|
|
199
|
-
msgstr ""
|
|
547
|
+
msgstr "Starea accesului"
|
|
200
548
|
|
|
201
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
549
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
202
550
|
msgid "Record title and creators"
|
|
203
|
-
msgstr ""
|
|
551
|
+
msgstr "Titlul înregistrării și creatorii"
|
|
204
552
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
553
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
206
554
|
msgid "Creators and contributors"
|
|
207
|
-
msgstr ""
|
|
555
|
+
msgstr "Creatorii și cei care au contribuit"
|
|
556
|
+
|
|
557
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
558
|
+
msgid "Request access"
|
|
559
|
+
msgstr "Solicită acces"
|
|
208
560
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
210
|
-
msgid "
|
|
561
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
562
|
+
msgid ""
|
|
563
|
+
"If you would like to request access to these files, please fill out the form"
|
|
564
|
+
" below."
|
|
211
565
|
msgstr ""
|
|
566
|
+
"Dacă dorești să soliciți acces la aceste fișiere, completează formularul de "
|
|
567
|
+
"mai jos."
|
|
212
568
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
msgid "Files"
|
|
569
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
570
|
+
msgid ""
|
|
571
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
572
|
+
"accepted:"
|
|
218
573
|
msgstr ""
|
|
574
|
+
"Trebuie să îndeplinești aceste condiții pentru ca această solicitare să fie "
|
|
575
|
+
"acceptată:"
|
|
219
576
|
|
|
220
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
578
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
579
|
+
msgid "System files"
|
|
580
|
+
msgstr "Fișiere de sistem"
|
|
581
|
+
|
|
582
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
221
583
|
msgid "Additional record details"
|
|
222
|
-
msgstr ""
|
|
584
|
+
msgstr "Detalii suplimentare privind înregistrarea"
|
|
223
585
|
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
225
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
586
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
226
587
|
msgid "Record details"
|
|
227
|
-
msgstr ""
|
|
588
|
+
msgstr "Detaliile înregistrării"
|
|
228
589
|
|
|
229
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
230
|
-
msgid "
|
|
231
|
-
msgstr ""
|
|
590
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
591
|
+
msgid "Jump to top of page"
|
|
592
|
+
msgstr "Salt la începutul paginii"
|
|
232
593
|
|
|
233
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
234
|
-
msgid "
|
|
235
|
-
msgstr ""
|
|
594
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
595
|
+
msgid "Jump up"
|
|
596
|
+
msgstr "Salt mai sus"
|
|
236
597
|
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
238
|
-
|
|
239
|
-
|
|
598
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
599
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
600
|
+
msgid "Draft not found"
|
|
601
|
+
msgstr "Nu găsesc draft-ul"
|
|
240
602
|
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
242
|
-
msgid "
|
|
603
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
604
|
+
msgid ""
|
|
605
|
+
"This record has already been published and is not currently being edited, so"
|
|
606
|
+
" no draft exists."
|
|
243
607
|
msgstr ""
|
|
608
|
+
"Această înregistrare a fost deja publicatăși nefiind editată în acest "
|
|
609
|
+
"moment, deci nu există vreun draft."
|
|
244
610
|
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
246
|
-
msgid "
|
|
247
|
-
msgstr ""
|
|
611
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
612
|
+
msgid "Go to published record"
|
|
613
|
+
msgstr "Mergi la înregistrarea publicată"
|
|
248
614
|
|
|
249
615
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
250
616
|
msgid "Back to details"
|
|
251
|
-
msgstr ""
|
|
617
|
+
msgstr "Înapoi la detalii"
|
|
252
618
|
|
|
253
619
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
254
620
|
msgid "Preview for"
|
|
621
|
+
msgstr "Previzualizare pentru"
|
|
622
|
+
|
|
623
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
624
|
+
msgid "Permission required"
|
|
625
|
+
msgstr "Sunt necesare permisiuni"
|
|
626
|
+
|
|
627
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
628
|
+
msgid ""
|
|
629
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
630
|
+
"users with access."
|
|
631
|
+
msgstr ""
|
|
632
|
+
"Înregistrarea a fost accesibilă publicului anterior dar acum este "
|
|
633
|
+
"restricționată utilizatorilor care nu au acces."
|
|
634
|
+
|
|
635
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
636
|
+
msgid ""
|
|
637
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
638
|
+
"active for reference."
|
|
255
639
|
msgstr ""
|
|
640
|
+
"Digital Object Identifier-ul (DOI) asociat acestei înregistrări rămâne activ"
|
|
641
|
+
" ca referință."
|
|
642
|
+
|
|
643
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
644
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
645
|
+
msgid "Identifier:"
|
|
646
|
+
msgstr "Identificator:"
|
|
256
647
|
|
|
257
648
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
258
649
|
msgid "Search results"
|
|
259
|
-
msgstr ""
|
|
650
|
+
msgstr "Rezultatele căutării"
|
|
260
651
|
|
|
261
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
652
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
262
653
|
msgid "Tombstone"
|
|
263
|
-
msgstr ""
|
|
654
|
+
msgstr "Container al obiectelor șterse"
|
|
655
|
+
|
|
656
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
657
|
+
msgid "Reason unknown"
|
|
658
|
+
msgstr "Motiv necunoscut"
|
|
264
659
|
|
|
265
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
660
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
266
661
|
msgid "Gone"
|
|
267
|
-
msgstr ""
|
|
662
|
+
msgstr "Nu mai e"
|
|
268
663
|
|
|
269
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
664
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
270
665
|
#, python-format
|
|
271
666
|
msgid ""
|
|
272
667
|
"\n"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
" "
|
|
668
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
669
|
+
" metadata of the record is kept for archival purposes."
|
|
276
670
|
msgstr ""
|
|
671
|
+
"\n"
|
|
672
|
+
" Înregistrarea pe care încerci să o accesezi a fost eliminată din %(sitename)s. Metadatele\n"
|
|
673
|
+
" înregistrării sunt ținute din rațiuni de arhivare."
|
|
277
674
|
|
|
278
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
675
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
279
676
|
msgid "Reason for removal:"
|
|
677
|
+
msgstr "Motivul eliminării:"
|
|
678
|
+
|
|
679
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
680
|
+
msgid "Removed by:"
|
|
681
|
+
msgstr "Eliminat de:"
|
|
682
|
+
|
|
683
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
684
|
+
msgid "Removal note:"
|
|
685
|
+
msgstr "Notă de ștergere:"
|
|
686
|
+
|
|
687
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
688
|
+
msgid "Date of removal:"
|
|
689
|
+
msgstr "Data eliminării:"
|
|
690
|
+
|
|
691
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
692
|
+
msgid "Citation:"
|
|
693
|
+
msgstr "Citare:"
|
|
694
|
+
|
|
695
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
696
|
+
msgid "You are currently not logged in"
|
|
280
697
|
msgstr ""
|
|
281
698
|
|
|
282
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
283
|
-
|
|
284
|
-
msgid "Creators list"
|
|
699
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
700
|
+
msgid "Do you have an account?"
|
|
285
701
|
msgstr ""
|
|
286
702
|
|
|
287
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
288
|
-
msgid "
|
|
703
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
704
|
+
msgid "Log in here"
|
|
705
|
+
msgstr ""
|
|
706
|
+
|
|
707
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
708
|
+
msgid "You are logged in as"
|
|
709
|
+
msgstr "Ești logat ca"
|
|
710
|
+
|
|
711
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
712
|
+
msgid "Not you?"
|
|
713
|
+
msgstr ""
|
|
714
|
+
|
|
715
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
716
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
717
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
718
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
719
|
+
msgid "Log out"
|
|
720
|
+
msgstr "Deconectare"
|
|
721
|
+
|
|
722
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
723
|
+
msgid "to switch account."
|
|
289
724
|
msgstr ""
|
|
290
725
|
|
|
291
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
292
|
-
msgid "
|
|
726
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
727
|
+
msgid "Send message"
|
|
293
728
|
msgstr ""
|
|
294
729
|
|
|
730
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
731
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
732
|
+
msgid "Creators"
|
|
733
|
+
msgstr "Creatori"
|
|
734
|
+
|
|
735
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
736
|
+
msgid "Contributors"
|
|
737
|
+
msgstr "Contribuitori"
|
|
738
|
+
|
|
295
739
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
296
740
|
msgid "Record description"
|
|
297
|
-
msgstr ""
|
|
741
|
+
msgstr "Descrierea înregistrării"
|
|
298
742
|
|
|
299
743
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:15
|
|
300
744
|
msgid "Description"
|
|
301
745
|
msgstr "Descriere"
|
|
302
746
|
|
|
303
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
747
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
304
748
|
msgid "Additional details"
|
|
305
|
-
msgstr ""
|
|
749
|
+
msgstr "Detalii suplimentare"
|
|
306
750
|
|
|
307
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
752
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
308
753
|
msgid "Additional titles"
|
|
309
|
-
msgstr ""
|
|
754
|
+
msgstr "Titluri suplimentare"
|
|
310
755
|
|
|
311
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
757
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
312
758
|
msgid "Identifiers"
|
|
313
|
-
msgstr ""
|
|
759
|
+
msgstr "Identificatori"
|
|
314
760
|
|
|
315
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
762
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
316
763
|
msgid "Related works"
|
|
317
|
-
msgstr ""
|
|
764
|
+
msgstr "Lucrări similare"
|
|
318
765
|
|
|
319
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
767
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
320
768
|
msgid "Funding"
|
|
321
|
-
msgstr ""
|
|
769
|
+
msgstr "Finanțare"
|
|
322
770
|
|
|
323
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
772
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
324
773
|
msgid "Dates"
|
|
325
|
-
msgstr ""
|
|
774
|
+
msgstr "Date calendaristice"
|
|
326
775
|
|
|
327
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
328
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
777
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
329
778
|
msgid "References"
|
|
330
|
-
msgstr ""
|
|
331
|
-
|
|
332
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
333
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
334
|
-
msgid "
|
|
335
|
-
msgstr ""
|
|
336
|
-
|
|
337
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
779
|
+
msgstr "Referințe"
|
|
780
|
+
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
782
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
783
|
+
msgid "Views"
|
|
784
|
+
msgstr "Panouri"
|
|
785
|
+
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
787
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
788
|
+
msgid "Downloads"
|
|
789
|
+
msgstr "Descărcări"
|
|
790
|
+
|
|
791
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
792
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
793
|
+
msgid "Show more details"
|
|
794
|
+
msgstr "Afișează mai multe detalii"
|
|
795
|
+
|
|
796
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
797
|
+
msgid "Show less details"
|
|
798
|
+
msgstr "Afișează mai puține detalii"
|
|
799
|
+
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
801
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
802
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
803
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
804
|
+
msgid "All versions"
|
|
805
|
+
msgstr "Toate versiunile"
|
|
806
|
+
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
810
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
811
|
+
msgid "This version"
|
|
812
|
+
msgstr "Această versiune"
|
|
813
|
+
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
815
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
816
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
817
|
+
msgid "More info"
|
|
818
|
+
msgstr "Mai multe informații"
|
|
819
|
+
|
|
820
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
821
|
+
msgid "Total views"
|
|
822
|
+
msgstr "Total vizualizări"
|
|
823
|
+
|
|
824
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
825
|
+
msgid "Total downloads"
|
|
826
|
+
msgstr "Total descărcări"
|
|
827
|
+
|
|
828
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
829
|
+
msgid "Data volume"
|
|
830
|
+
msgstr "Volumul datelor"
|
|
831
|
+
|
|
832
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
833
|
+
msgid "Total data volume"
|
|
834
|
+
msgstr "Volumul total al datelor"
|
|
835
|
+
|
|
836
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
837
|
+
msgid "More info on how stats are collected."
|
|
838
|
+
msgstr ""
|
|
839
|
+
"Mai multe informații privind modul în care sunt colectate informațiile."
|
|
344
840
|
|
|
345
841
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
346
842
|
msgid "Keywords"
|
|
347
|
-
msgstr ""
|
|
843
|
+
msgstr "Cuvinte cheie"
|
|
348
844
|
|
|
349
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
350
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
845
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
846
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
351
847
|
msgid "Search results for "
|
|
352
|
-
msgstr ""
|
|
848
|
+
msgstr "Caută rezultate pentru"
|
|
849
|
+
|
|
850
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
851
|
+
msgid "Citation"
|
|
852
|
+
msgstr "Citare"
|
|
353
853
|
|
|
354
854
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
355
855
|
msgid "Details"
|
|
356
|
-
msgstr ""
|
|
856
|
+
msgstr "Detalii"
|
|
357
857
|
|
|
358
858
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:26
|
|
359
859
|
msgid "Publisher"
|
|
360
|
-
msgstr ""
|
|
860
|
+
msgstr "Editură"
|
|
361
861
|
|
|
362
862
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
363
|
-
msgid "
|
|
364
|
-
msgstr ""
|
|
863
|
+
msgid "Published in"
|
|
864
|
+
msgstr "Publicat în"
|
|
365
865
|
|
|
366
866
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
367
|
-
msgid "
|
|
368
|
-
msgstr ""
|
|
867
|
+
msgid "Imprint"
|
|
868
|
+
msgstr "Marcare"
|
|
369
869
|
|
|
370
870
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
871
|
+
msgid "Awarding university"
|
|
872
|
+
msgstr "Finanțat de universitatea"
|
|
873
|
+
|
|
874
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
875
|
+
msgid "Conference"
|
|
876
|
+
msgstr "Conferința"
|
|
877
|
+
|
|
878
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
879
|
+
msgid "Languages"
|
|
880
|
+
msgstr "Limbi de circulație"
|
|
881
|
+
|
|
882
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
883
|
+
msgid "Formats"
|
|
884
|
+
msgstr "Formate"
|
|
885
|
+
|
|
886
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
371
887
|
msgid "Sizes"
|
|
372
|
-
msgstr ""
|
|
888
|
+
msgstr "Dimensiuni"
|
|
373
889
|
|
|
374
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
375
890
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
376
891
|
msgid "Export"
|
|
377
|
-
msgstr ""
|
|
892
|
+
msgstr "Export"
|
|
893
|
+
|
|
894
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
895
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
896
|
+
msgid "External resources"
|
|
897
|
+
msgstr "Resurse externe"
|
|
378
898
|
|
|
379
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:12
|
|
380
899
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
900
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
381
901
|
msgid "Keywords and subjects"
|
|
382
|
-
msgstr ""
|
|
383
|
-
|
|
384
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
385
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
387
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
388
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
902
|
+
msgstr "Cuvinte cheie și subiecte"
|
|
903
|
+
|
|
904
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
905
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
906
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
907
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
908
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
909
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
389
910
|
msgid "Opens in new tab"
|
|
390
|
-
msgstr ""
|
|
911
|
+
msgstr "Se deschide într-un tab nou"
|
|
912
|
+
|
|
913
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
914
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
915
|
+
msgid "Read more"
|
|
916
|
+
msgstr "Citește mai mult"
|
|
391
917
|
|
|
392
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
393
918
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
394
919
|
msgid "Rights"
|
|
395
|
-
msgstr ""
|
|
920
|
+
msgstr "Drepturi de autor"
|
|
396
921
|
|
|
397
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
922
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
398
923
|
msgid "Close"
|
|
399
|
-
msgstr ""
|
|
924
|
+
msgstr "Închide"
|
|
400
925
|
|
|
401
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
926
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
402
927
|
msgid "No further description."
|
|
403
|
-
msgstr ""
|
|
928
|
+
msgstr "Nu există alte descrieri."
|
|
929
|
+
|
|
930
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
931
|
+
msgid "Geographic locations"
|
|
932
|
+
msgstr "Locații geografice"
|
|
404
933
|
|
|
405
934
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
406
935
|
msgid "Record management"
|
|
407
|
-
msgstr ""
|
|
936
|
+
msgstr "Managementul înregistrării"
|
|
408
937
|
|
|
409
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
410
|
-
msgid "
|
|
411
|
-
msgstr ""
|
|
938
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
939
|
+
msgid "Metrics"
|
|
940
|
+
msgstr "Metrici"
|
|
941
|
+
|
|
942
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
943
|
+
msgid "Upload information"
|
|
944
|
+
msgstr "Încărcarea informațiilor"
|
|
945
|
+
|
|
946
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
947
|
+
msgid "Technical metadata"
|
|
948
|
+
msgstr "Metadate tehnice"
|
|
949
|
+
|
|
950
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
951
|
+
msgid "Modified"
|
|
952
|
+
msgstr "Modificat"
|
|
412
953
|
|
|
413
954
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
414
955
|
msgid "Versions"
|
|
415
|
-
msgstr ""
|
|
956
|
+
msgstr "Versiuni"
|
|
416
957
|
|
|
417
958
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:17
|
|
418
959
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:22
|
|
@@ -420,314 +961,431 @@ msgstr ""
|
|
|
420
961
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:88
|
|
421
962
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:89
|
|
422
963
|
msgid "profile"
|
|
423
|
-
msgstr ""
|
|
964
|
+
msgstr "profil"
|
|
424
965
|
|
|
425
966
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
426
967
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
427
968
|
msgid "Show affiliations"
|
|
428
|
-
msgstr ""
|
|
969
|
+
msgstr "Afișează afilierile"
|
|
429
970
|
|
|
430
971
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
431
972
|
msgid "Hide affiliations"
|
|
432
|
-
msgstr ""
|
|
973
|
+
msgstr "Ascunde afilierile"
|
|
433
974
|
|
|
434
975
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:79
|
|
435
976
|
msgid "Affiliations for"
|
|
436
|
-
msgstr ""
|
|
977
|
+
msgstr "Afilieri pentru"
|
|
437
978
|
|
|
438
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
979
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
439
980
|
msgid "Open external link"
|
|
440
|
-
msgstr ""
|
|
981
|
+
msgstr "Deschide link-ul extern"
|
|
982
|
+
|
|
983
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
984
|
+
msgid "Conference website"
|
|
985
|
+
msgstr "Siteul web al conferinței"
|
|
441
986
|
|
|
442
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
987
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
988
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
989
|
+
msgid "DOI"
|
|
990
|
+
msgstr "DOI"
|
|
991
|
+
|
|
992
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
993
|
+
msgid "Get the DOI badge!"
|
|
994
|
+
msgstr "Obține ecusonul pentru DOI!"
|
|
995
|
+
|
|
996
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
997
|
+
msgid "DOI Badge"
|
|
998
|
+
msgstr "Ecuson DOI"
|
|
999
|
+
|
|
1000
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
443
1001
|
msgid "File preview"
|
|
444
|
-
msgstr ""
|
|
1002
|
+
msgstr "Previzualizarea fișierului"
|
|
445
1003
|
|
|
446
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1004
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
447
1005
|
msgid "Name"
|
|
448
1006
|
msgstr "Nume"
|
|
449
1007
|
|
|
450
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1008
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
451
1009
|
msgid "Size"
|
|
452
|
-
msgstr ""
|
|
1010
|
+
msgstr "Dimensiune"
|
|
453
1011
|
|
|
454
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
msgstr ""
|
|
1012
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1013
|
+
msgid "Download all"
|
|
1014
|
+
msgstr "Descarcă-le pe toate"
|
|
458
1015
|
|
|
459
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1016
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
460
1017
|
msgid ""
|
|
461
1018
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
462
1019
|
"file integrity."
|
|
463
1020
|
msgstr ""
|
|
1021
|
+
"Aceasta este amprenta fișierului (checksum), care poate fi folosită pentru a"
|
|
1022
|
+
" verifica integritatea fișierului."
|
|
464
1023
|
|
|
465
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1024
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
466
1025
|
msgid "Download"
|
|
1026
|
+
msgstr "Descarcă"
|
|
1027
|
+
|
|
1028
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1029
|
+
msgid "Unknown"
|
|
1030
|
+
msgstr "Necunoscut"
|
|
1031
|
+
|
|
1032
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1033
|
+
msgid "See the full number"
|
|
1034
|
+
msgstr "Vezi numărul total"
|
|
1035
|
+
|
|
1036
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1037
|
+
msgid "Version"
|
|
1038
|
+
msgstr "Versiune"
|
|
1039
|
+
|
|
1040
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1041
|
+
msgid "No DOI available"
|
|
467
1042
|
msgstr ""
|
|
468
1043
|
|
|
469
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
470
|
-
|
|
1044
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1045
|
+
#, python-format
|
|
1046
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
471
1047
|
msgstr ""
|
|
472
1048
|
|
|
473
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
474
|
-
|
|
1049
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1050
|
+
#, python-format
|
|
1051
|
+
msgid "Get a %(scheme_label)s now!"
|
|
475
1052
|
msgstr ""
|
|
476
1053
|
|
|
477
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1054
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1055
|
+
#, python-format
|
|
478
1056
|
msgid ""
|
|
479
|
-
"Reserve a
|
|
480
|
-
"files prior to upload). The
|
|
481
|
-
" published."
|
|
1057
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1058
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1059
|
+
"is published."
|
|
482
1060
|
msgstr ""
|
|
483
1061
|
|
|
484
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1062
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1063
|
+
#, python-format
|
|
485
1064
|
msgid ""
|
|
486
|
-
"A
|
|
1065
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
487
1066
|
"Example: 10.1234/foo.bar"
|
|
488
1067
|
msgstr ""
|
|
489
1068
|
|
|
490
|
-
#: invenio_app_rdm/
|
|
1069
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1070
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1071
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1072
|
+
msgid "All"
|
|
1073
|
+
msgstr "Toate"
|
|
1074
|
+
|
|
1075
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
491
1076
|
msgid "Back to invitations"
|
|
492
|
-
msgstr ""
|
|
1077
|
+
msgstr "Înapoi la invitații"
|
|
493
1078
|
|
|
494
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
495
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1080
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1081
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1082
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
496
1083
|
msgid "Back to requests"
|
|
497
|
-
msgstr ""
|
|
1084
|
+
msgstr "Înapoi la solicitări"
|
|
498
1085
|
|
|
499
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1086
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
500
1087
|
msgid "Conversation"
|
|
501
|
-
msgstr ""
|
|
1088
|
+
msgstr "Dialog"
|
|
502
1089
|
|
|
503
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1090
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
504
1091
|
msgid "Record"
|
|
505
|
-
msgstr "
|
|
1092
|
+
msgstr "Înregistrare"
|
|
1093
|
+
|
|
1094
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1095
|
+
msgid "Access request"
|
|
1096
|
+
msgstr "Cerere de acces"
|
|
506
1097
|
|
|
507
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1098
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
508
1099
|
msgid "View Community"
|
|
509
|
-
msgstr ""
|
|
1100
|
+
msgstr "Afișează comunitatea"
|
|
510
1101
|
|
|
511
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1102
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
512
1103
|
msgid "View record"
|
|
513
|
-
msgstr ""
|
|
1104
|
+
msgstr "Afișează înregistrarea"
|
|
514
1105
|
|
|
515
|
-
#: invenio_app_rdm/theme/views.py:
|
|
516
|
-
msgid "
|
|
517
|
-
msgstr ""
|
|
1106
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1107
|
+
msgid "Notification preferences were updated."
|
|
1108
|
+
msgstr "Preferințele pentru notificare au fost actualizate."
|
|
518
1109
|
|
|
519
1110
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
520
1111
|
msgid "About InvenioRDM"
|
|
521
|
-
msgstr ""
|
|
1112
|
+
msgstr "Despre InvenioRDM"
|
|
522
1113
|
|
|
523
1114
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
524
|
-
|
|
525
|
-
msgid ""
|
|
526
|
-
"\n"
|
|
527
|
-
" <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
|
|
528
|
-
" "
|
|
1115
|
+
msgid "Product page"
|
|
529
1116
|
msgstr ""
|
|
530
1117
|
|
|
531
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
532
|
-
|
|
533
|
-
msgid ""
|
|
534
|
-
"\n"
|
|
535
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
536
|
-
" "
|
|
1118
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1119
|
+
msgid "Features"
|
|
537
1120
|
msgstr ""
|
|
538
1121
|
|
|
539
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
540
|
-
|
|
541
|
-
msgid ""
|
|
542
|
-
"\n"
|
|
543
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
|
|
544
|
-
" "
|
|
1122
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1123
|
+
msgid "Roadmap"
|
|
545
1124
|
msgstr ""
|
|
546
1125
|
|
|
547
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
548
|
-
|
|
549
|
-
msgid ""
|
|
550
|
-
"\n"
|
|
551
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
|
|
552
|
-
" "
|
|
1126
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
1127
|
+
msgid "Demo site"
|
|
553
1128
|
msgstr ""
|
|
554
1129
|
|
|
555
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1130
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
556
1131
|
msgid "Get involved"
|
|
557
|
-
msgstr ""
|
|
1132
|
+
msgstr "Implică-te"
|
|
558
1133
|
|
|
559
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
"\n"
|
|
563
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
564
|
-
" "
|
|
565
|
-
msgstr ""
|
|
1134
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1135
|
+
msgid "GitHub"
|
|
1136
|
+
msgstr "GitHub"
|
|
566
1137
|
|
|
567
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
568
|
-
|
|
569
|
-
msgid ""
|
|
570
|
-
"\n"
|
|
571
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
572
|
-
" "
|
|
1138
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1139
|
+
msgid "Project Milestones"
|
|
573
1140
|
msgstr ""
|
|
574
1141
|
|
|
575
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
576
|
-
|
|
577
|
-
msgid ""
|
|
578
|
-
"\n"
|
|
579
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
580
|
-
" "
|
|
1142
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
1143
|
+
msgid "Documentation"
|
|
581
1144
|
msgstr ""
|
|
582
1145
|
|
|
583
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1146
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
584
1147
|
msgid "Community"
|
|
1148
|
+
msgstr "Comunitate"
|
|
1149
|
+
|
|
1150
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1151
|
+
msgid "Chatroom"
|
|
585
1152
|
msgstr ""
|
|
586
1153
|
|
|
587
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
588
|
-
|
|
589
|
-
msgid ""
|
|
590
|
-
"\n"
|
|
591
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
592
|
-
" "
|
|
1154
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
1155
|
+
msgid "Forum"
|
|
593
1156
|
msgstr ""
|
|
594
1157
|
|
|
595
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
596
|
-
|
|
597
|
-
msgid ""
|
|
598
|
-
"\n"
|
|
599
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
600
|
-
" "
|
|
1158
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
1159
|
+
msgid "Events & training"
|
|
601
1160
|
msgstr ""
|
|
602
1161
|
|
|
603
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
604
|
-
|
|
605
|
-
msgid ""
|
|
606
|
-
"\n"
|
|
607
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
608
|
-
" "
|
|
1162
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1163
|
+
msgid "Impersonated session"
|
|
609
1164
|
msgstr ""
|
|
610
1165
|
|
|
611
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
612
|
-
|
|
613
|
-
msgid ""
|
|
614
|
-
"Powered by <a\n"
|
|
615
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1166
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1167
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
616
1168
|
msgstr ""
|
|
617
1169
|
|
|
618
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1170
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1171
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1172
|
+
msgid "home"
|
|
1173
|
+
msgstr "acasă"
|
|
1174
|
+
|
|
1175
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1176
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1177
|
+
msgid "Menu"
|
|
1178
|
+
msgstr "Meniu"
|
|
1179
|
+
|
|
1180
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1181
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1182
|
+
msgid "Close menu"
|
|
1183
|
+
msgstr "Închide meniul"
|
|
1184
|
+
|
|
1185
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1186
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1187
|
+
msgid "Inbox"
|
|
1188
|
+
msgstr "Inbox"
|
|
1189
|
+
|
|
1190
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1191
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1192
|
+
msgid "Search"
|
|
1193
|
+
msgstr "Caută"
|
|
1194
|
+
|
|
1195
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1196
|
+
msgid "Log in"
|
|
1197
|
+
msgstr "Conectare"
|
|
1198
|
+
|
|
1199
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1200
|
+
msgid "Sign up"
|
|
1201
|
+
msgstr "Înregistrare"
|
|
1202
|
+
|
|
1203
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1204
|
+
msgid "Quick create"
|
|
1205
|
+
msgstr "Creează rapid"
|
|
1206
|
+
|
|
1207
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1208
|
+
msgid "Actions"
|
|
1209
|
+
msgstr "Acțiuni"
|
|
1210
|
+
|
|
1211
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1212
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1213
|
+
msgid "My account"
|
|
1214
|
+
msgstr "Contul meu"
|
|
1215
|
+
|
|
1216
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
619
1217
|
msgid "You've successfully installed InvenioRDM!"
|
|
620
|
-
msgstr ""
|
|
1218
|
+
msgstr "Ai instalat cu succes InvenioRDM!"
|
|
621
1219
|
|
|
622
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1220
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
623
1221
|
msgid "What is ahead?"
|
|
624
|
-
msgstr ""
|
|
1222
|
+
msgstr "Ce urmează?"
|
|
625
1223
|
|
|
626
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1224
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
627
1225
|
msgid "Configure"
|
|
628
|
-
msgstr ""
|
|
1226
|
+
msgstr "Configurare"
|
|
629
1227
|
|
|
630
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
631
|
-
#, python-format
|
|
1228
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
632
1229
|
msgid ""
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
636
|
-
" section in the docs</a>.\n"
|
|
637
|
-
" "
|
|
1230
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1231
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
638
1232
|
msgstr ""
|
|
639
1233
|
|
|
640
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
641
|
-
msgid "
|
|
1234
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1235
|
+
msgid "configuration section in the docs"
|
|
642
1236
|
msgstr ""
|
|
643
1237
|
|
|
644
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
645
|
-
|
|
1238
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
1239
|
+
msgid "Customize"
|
|
1240
|
+
msgstr "Fă modificările necesare"
|
|
1241
|
+
|
|
1242
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
646
1243
|
msgid ""
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
650
|
-
" "
|
|
1244
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1245
|
+
"how to do so"
|
|
651
1246
|
msgstr ""
|
|
652
1247
|
|
|
653
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1248
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1249
|
+
msgid "here"
|
|
1250
|
+
msgstr "aici"
|
|
1251
|
+
|
|
1252
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
654
1253
|
msgid "Run it!"
|
|
655
|
-
msgstr ""
|
|
1254
|
+
msgstr "Rulează-l!"
|
|
656
1255
|
|
|
657
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
658
|
-
|
|
659
|
-
msgid ""
|
|
660
|
-
"\n"
|
|
661
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
|
|
662
|
-
" InvenioRDM instance locally or in containers.\n"
|
|
663
|
-
" "
|
|
1256
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1257
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
664
1258
|
msgstr ""
|
|
665
1259
|
|
|
666
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1260
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1261
|
+
msgid "Run"
|
|
1262
|
+
msgstr "Rulează"
|
|
1263
|
+
|
|
1264
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
667
1265
|
msgid "Docs"
|
|
668
|
-
msgstr ""
|
|
1266
|
+
msgstr "Documente"
|
|
669
1267
|
|
|
670
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1268
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
671
1269
|
msgid "Code"
|
|
672
1270
|
msgstr "Cod"
|
|
673
1271
|
|
|
674
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
675
|
-
msgid "
|
|
676
|
-
msgstr "
|
|
1272
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1273
|
+
msgid "To disable this section, add"
|
|
1274
|
+
msgstr "Pentru a deactiva această secțiune, adaugă"
|
|
677
1275
|
|
|
678
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
679
|
-
msgid "
|
|
1276
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1277
|
+
msgid "to your invenio.cfg file."
|
|
1278
|
+
msgstr "la fișierul invenio.cfg propriu."
|
|
1279
|
+
|
|
1280
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1281
|
+
msgid "In this community"
|
|
1282
|
+
msgstr "În această comunitate"
|
|
1283
|
+
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1285
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1286
|
+
msgid "Search records"
|
|
1287
|
+
msgstr "Caută înregistrări"
|
|
1288
|
+
|
|
1289
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1290
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1291
|
+
msgid "Powered by"
|
|
1292
|
+
msgstr "Motorizat de"
|
|
1293
|
+
|
|
1294
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1295
|
+
msgid ""
|
|
1296
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1297
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
680
1298
|
msgstr ""
|
|
681
1299
|
|
|
682
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
msgid "Requests"
|
|
1300
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1301
|
+
#, python-format
|
|
1302
|
+
msgid "ID: %s"
|
|
686
1303
|
msgstr ""
|
|
687
1304
|
|
|
688
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
689
|
-
|
|
1305
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1306
|
+
#, python-format
|
|
1307
|
+
msgid "URI: %s"
|
|
690
1308
|
msgstr ""
|
|
691
1309
|
|
|
692
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
693
|
-
|
|
694
|
-
|
|
1310
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1311
|
+
#, python-format
|
|
1312
|
+
msgid "Name: %s"
|
|
1313
|
+
msgstr ""
|
|
695
1314
|
|
|
696
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
697
|
-
|
|
698
|
-
|
|
1315
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1316
|
+
#, python-format
|
|
1317
|
+
msgid "Created: %s"
|
|
1318
|
+
msgstr ""
|
|
699
1319
|
|
|
700
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
701
|
-
|
|
702
|
-
msgid "
|
|
1320
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1321
|
+
#, python-format
|
|
1322
|
+
msgid "Checksum: %s"
|
|
703
1323
|
msgstr ""
|
|
704
1324
|
|
|
705
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
msgid "Log out"
|
|
1325
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1326
|
+
#, python-format
|
|
1327
|
+
msgid "Last check date: %s"
|
|
709
1328
|
msgstr ""
|
|
710
1329
|
|
|
711
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
712
|
-
|
|
1330
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1331
|
+
#, python-format
|
|
1332
|
+
msgid "Last check FAILED with result: %s"
|
|
713
1333
|
msgstr ""
|
|
714
1334
|
|
|
715
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
716
|
-
|
|
717
|
-
msgid "
|
|
1335
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1336
|
+
#, python-format
|
|
1337
|
+
msgid "Record: %s/records/%s"
|
|
1338
|
+
msgstr ""
|
|
1339
|
+
|
|
1340
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1341
|
+
#, python-format
|
|
1342
|
+
msgid "Draft: %s/uploads/%s"
|
|
718
1343
|
msgstr ""
|
|
719
1344
|
|
|
720
1345
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
721
1346
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1347
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
722
1348
|
msgid "Search guide"
|
|
723
|
-
msgstr ""
|
|
1349
|
+
msgstr "Ghidul de căutare"
|
|
724
1350
|
|
|
725
|
-
#: invenio_app_rdm/
|
|
726
|
-
#: invenio_app_rdm/
|
|
727
|
-
msgid "
|
|
1351
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1352
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1353
|
+
msgid "FAQ statistics"
|
|
1354
|
+
msgstr "FAQ statistici"
|
|
1355
|
+
|
|
1356
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1357
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1358
|
+
msgid "FAQ versioning"
|
|
1359
|
+
msgstr "FAQ versionare"
|
|
1360
|
+
|
|
1361
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1362
|
+
msgid "Recent uploads"
|
|
728
1363
|
msgstr ""
|
|
729
1364
|
|
|
730
|
-
#: invenio_app_rdm/
|
|
731
|
-
|
|
732
|
-
msgid "Uploads"
|
|
1365
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1366
|
+
msgid "Verified community"
|
|
733
1367
|
msgstr ""
|
|
1368
|
+
|
|
1369
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1370
|
+
msgid "Privacy policy"
|
|
1371
|
+
msgstr "Politica privind confidențialitatea"
|
|
1372
|
+
|
|
1373
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1374
|
+
msgid "Terms of use"
|
|
1375
|
+
msgstr "Termeni de utilizare"
|
|
1376
|
+
|
|
1377
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1378
|
+
msgid "Support"
|
|
1379
|
+
msgstr "Asistență"
|
|
1380
|
+
|
|
1381
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1382
|
+
msgid "Your dashboard"
|
|
1383
|
+
msgstr "Tabloul de control personal"
|
|
1384
|
+
|
|
1385
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1386
|
+
msgid "Anonymous user"
|
|
1387
|
+
msgstr "User anonim"
|
|
1388
|
+
|
|
1389
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1390
|
+
msgid "New community"
|
|
1391
|
+
msgstr "Comunitate nouă"
|