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,259 +1,617 @@
|
|
|
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
|
-
# Alizee Pace <alizee.pace@gmail.com>,
|
|
9
|
-
#
|
|
10
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
11
|
-
#
|
|
8
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2024
|
|
9
|
+
# Ignacio Estevo, 2025
|
|
10
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
11
|
+
# Zacharias Zacharodimos <zacharias.zacharodimos@cern.ch>, 2025
|
|
12
|
+
# Jesús Martín <jesusmartin@sallep.net>, 2025
|
|
12
13
|
#
|
|
13
14
|
#, fuzzy
|
|
14
15
|
msgid ""
|
|
15
16
|
msgstr ""
|
|
16
|
-
"Project-Id-Version: invenio-app-rdm
|
|
17
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
17
18
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
18
|
-
"POT-Creation-Date:
|
|
19
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
19
20
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
20
|
-
"Last-Translator: Jesús Martín <jesusmartin@sallep.net>,
|
|
21
|
+
"Last-Translator: Jesús Martín <jesusmartin@sallep.net>, 2025\n"
|
|
21
22
|
"Language-Team: Spanish (https://app.transifex.com/inveniosoftware/teams/23537/es/)\n"
|
|
22
23
|
"MIME-Version: 1.0\n"
|
|
23
24
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
24
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
25
|
-
"Generated-By: Babel 2.
|
|
26
|
+
"Generated-By: Babel 2.17.0\n"
|
|
26
27
|
"Language: es\n"
|
|
27
28
|
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
28
29
|
|
|
29
|
-
#: invenio_app_rdm/config.py:
|
|
30
|
+
#: invenio_app_rdm/config.py:219
|
|
30
31
|
msgid "The turn-key research data management repository"
|
|
31
32
|
msgstr "El repositorio de gestión de datos de investigación preconfigurado"
|
|
32
33
|
|
|
33
|
-
#: invenio_app_rdm/config.py:
|
|
34
|
+
#: invenio_app_rdm/config.py:258
|
|
35
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
34
36
|
msgid "InvenioRDM"
|
|
35
37
|
msgstr "InvenioRDM"
|
|
36
38
|
|
|
37
|
-
#: invenio_app_rdm/config.py:
|
|
39
|
+
#: invenio_app_rdm/config.py:353
|
|
38
40
|
msgid "Welcome to Invenio App RDM!"
|
|
39
41
|
msgstr "¡Bienvenido a Invenio RDM!"
|
|
40
42
|
|
|
41
|
-
#: invenio_app_rdm/config.py:
|
|
43
|
+
#: invenio_app_rdm/config.py:750
|
|
42
44
|
msgid "JSON"
|
|
43
45
|
msgstr "JSON"
|
|
44
46
|
|
|
45
|
-
#: invenio_app_rdm/config.py:
|
|
47
|
+
#: invenio_app_rdm/config.py:757
|
|
48
|
+
msgid "JSON-LD"
|
|
49
|
+
msgstr "JSON-LD"
|
|
50
|
+
|
|
51
|
+
#: invenio_app_rdm/config.py:765
|
|
46
52
|
msgid "CSL"
|
|
47
53
|
msgstr "CSL"
|
|
48
54
|
|
|
49
|
-
#: invenio_app_rdm/config.py:
|
|
55
|
+
#: invenio_app_rdm/config.py:772
|
|
50
56
|
msgid "DataCite JSON"
|
|
51
57
|
msgstr "DataCite JSON"
|
|
52
58
|
|
|
53
|
-
#: invenio_app_rdm/config.py:
|
|
59
|
+
#: invenio_app_rdm/config.py:781
|
|
54
60
|
msgid "DataCite XML"
|
|
55
61
|
msgstr "DataCite XML"
|
|
56
62
|
|
|
57
|
-
#: invenio_app_rdm/config.py:
|
|
63
|
+
#: invenio_app_rdm/config.py:790
|
|
58
64
|
msgid "Dublin Core XML"
|
|
59
65
|
msgstr "Dublin Core XML"
|
|
60
66
|
|
|
61
|
-
#: invenio_app_rdm/config.py:
|
|
67
|
+
#: invenio_app_rdm/config.py:799
|
|
68
|
+
msgid "MARCXML"
|
|
69
|
+
msgstr "MARCXML"
|
|
70
|
+
|
|
71
|
+
#: invenio_app_rdm/config.py:806
|
|
72
|
+
msgid "BibTeX"
|
|
73
|
+
msgstr "BibTeX"
|
|
74
|
+
|
|
75
|
+
#: invenio_app_rdm/config.py:813
|
|
76
|
+
msgid "GeoJSON"
|
|
77
|
+
msgstr "GeoJSON"
|
|
78
|
+
|
|
79
|
+
#: invenio_app_rdm/config.py:820
|
|
80
|
+
msgid "DCAT"
|
|
81
|
+
msgstr "DCAT"
|
|
82
|
+
|
|
83
|
+
#: invenio_app_rdm/config.py:827
|
|
84
|
+
msgid "Codemeta"
|
|
85
|
+
msgstr "Codemeta"
|
|
86
|
+
|
|
87
|
+
#: invenio_app_rdm/config.py:834
|
|
88
|
+
msgid "Citation File Format"
|
|
89
|
+
msgstr "Formato de Archivo de Cita"
|
|
90
|
+
|
|
91
|
+
#: invenio_app_rdm/config.py:996
|
|
62
92
|
msgid "APA"
|
|
63
93
|
msgstr "APA"
|
|
64
94
|
|
|
65
|
-
#: invenio_app_rdm/config.py:
|
|
95
|
+
#: invenio_app_rdm/config.py:997
|
|
66
96
|
msgid "Harvard"
|
|
67
97
|
msgstr "Harvard"
|
|
68
98
|
|
|
69
|
-
#: invenio_app_rdm/config.py:
|
|
99
|
+
#: invenio_app_rdm/config.py:998
|
|
70
100
|
msgid "MLA"
|
|
71
101
|
msgstr "MLA"
|
|
72
102
|
|
|
73
|
-
#: invenio_app_rdm/config.py:
|
|
103
|
+
#: invenio_app_rdm/config.py:999
|
|
74
104
|
msgid "Vancouver"
|
|
75
105
|
msgstr "Vancouver"
|
|
76
106
|
|
|
77
|
-
#: invenio_app_rdm/config.py:
|
|
107
|
+
#: invenio_app_rdm/config.py:1000
|
|
78
108
|
msgid "Chicago"
|
|
79
109
|
msgstr "Chicago"
|
|
80
110
|
|
|
81
|
-
#: invenio_app_rdm/config.py:
|
|
111
|
+
#: invenio_app_rdm/config.py:1001
|
|
82
112
|
msgid "IEEE"
|
|
83
113
|
msgstr "IEEE"
|
|
84
114
|
|
|
85
|
-
#: invenio_app_rdm/
|
|
115
|
+
#: invenio_app_rdm/ext.py:57
|
|
116
|
+
msgid "My dashboard"
|
|
117
|
+
msgstr "Mi panel"
|
|
118
|
+
|
|
119
|
+
#: invenio_app_rdm/ext.py:63
|
|
120
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
121
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
122
|
+
msgid "New upload"
|
|
123
|
+
msgstr "Nuevo envío"
|
|
124
|
+
|
|
125
|
+
#: invenio_app_rdm/ext.py:77
|
|
126
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
127
|
+
msgid "Uploads"
|
|
128
|
+
msgstr "Envíos"
|
|
129
|
+
|
|
130
|
+
#: invenio_app_rdm/ext.py:82
|
|
131
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
132
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
133
|
+
msgid "Communities"
|
|
134
|
+
msgstr "Comunidades"
|
|
135
|
+
|
|
136
|
+
#: invenio_app_rdm/ext.py:87
|
|
137
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
138
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
139
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
140
|
+
msgid "Requests"
|
|
141
|
+
msgstr "Peticiones"
|
|
142
|
+
|
|
143
|
+
#: invenio_app_rdm/ext.py:110
|
|
144
|
+
msgid "Home"
|
|
145
|
+
msgstr "Página principal"
|
|
146
|
+
|
|
147
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
148
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
149
|
+
#: invenio_app_rdm/ext.py:118
|
|
150
|
+
msgid "Records"
|
|
151
|
+
msgstr "Registros"
|
|
152
|
+
|
|
153
|
+
#: invenio_app_rdm/ext.py:125
|
|
154
|
+
msgid "Submit"
|
|
155
|
+
msgstr "Enviar"
|
|
156
|
+
|
|
157
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
158
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
159
|
+
msgid "Domains"
|
|
160
|
+
msgstr "Dominios"
|
|
161
|
+
|
|
162
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
163
|
+
msgid "Site management"
|
|
164
|
+
msgstr "Gestión del sitio"
|
|
165
|
+
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
167
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
168
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
169
|
+
msgid "Domain"
|
|
170
|
+
msgstr "Dominio"
|
|
171
|
+
|
|
172
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
173
|
+
msgid "TLD"
|
|
174
|
+
msgstr "TLD"
|
|
175
|
+
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
177
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
178
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
179
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
180
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
181
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
182
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
183
|
+
msgid "Status"
|
|
184
|
+
msgstr "Estado"
|
|
185
|
+
|
|
186
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
187
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
188
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
189
|
+
msgid "Users"
|
|
190
|
+
msgstr "Usuarios"
|
|
191
|
+
|
|
192
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
193
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
194
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
195
|
+
msgid "Active"
|
|
196
|
+
msgstr "Activo"
|
|
197
|
+
|
|
198
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
199
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
200
|
+
msgid "Inactive"
|
|
201
|
+
msgstr "No activo"
|
|
202
|
+
|
|
203
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
204
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
205
|
+
msgid "Confirmed"
|
|
206
|
+
msgstr "Confirmado"
|
|
207
|
+
|
|
208
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
209
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
210
|
+
msgid "Verified"
|
|
211
|
+
msgstr "Verificado"
|
|
212
|
+
|
|
213
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
214
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
215
|
+
msgid "Blocked"
|
|
216
|
+
msgstr "Bloqueado"
|
|
217
|
+
|
|
218
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
219
|
+
msgid "Domain name (all lowercase)"
|
|
220
|
+
msgstr "Nombre de dominio (todo en minúsculas)"
|
|
221
|
+
|
|
222
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
223
|
+
msgid ""
|
|
224
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
225
|
+
"domain require moderation), verified (users in domain does not require "
|
|
226
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
227
|
+
msgstr ""
|
|
228
|
+
"Estado del dominio. Puede ser nuevo (el dominio necesita revisión), moderado"
|
|
229
|
+
" (los usuarios del dominio requieren moderación), verificado (los usuarios "
|
|
230
|
+
"del dominio no requieren moderación) o bloqueado (los usuarios no pueden "
|
|
231
|
+
"registrarse usando este dominio)."
|
|
232
|
+
|
|
233
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
234
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
235
|
+
msgid "Category"
|
|
236
|
+
msgstr "Categoría"
|
|
237
|
+
|
|
238
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
239
|
+
msgid "A label to categorise the domain."
|
|
240
|
+
msgstr "Una etiqueta para categorizar el dominio."
|
|
241
|
+
|
|
242
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
243
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
244
|
+
msgid "Flagged"
|
|
245
|
+
msgstr "Marcado"
|
|
246
|
+
|
|
247
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
248
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
249
|
+
msgstr ""
|
|
250
|
+
"Utilizado por procesos automáticos para marcar el dominio como que requiere "
|
|
251
|
+
"revisión."
|
|
252
|
+
|
|
253
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
254
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
255
|
+
msgid "Source of flag"
|
|
256
|
+
msgstr "Fuente de la marca"
|
|
257
|
+
|
|
258
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
259
|
+
msgid "Which source flagged the domain."
|
|
260
|
+
msgstr "Qué fuente marcó el dominio."
|
|
261
|
+
|
|
262
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
263
|
+
msgid "Create domain"
|
|
264
|
+
msgstr "Crear dominio"
|
|
265
|
+
|
|
266
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
267
|
+
msgid "Edit domain"
|
|
268
|
+
msgstr "Editar dominio"
|
|
269
|
+
|
|
270
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
271
|
+
msgid "Domain details"
|
|
272
|
+
msgstr "Detalles del dominio"
|
|
273
|
+
|
|
274
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
275
|
+
msgid "Top-level domain"
|
|
276
|
+
msgstr "Dominio de nivel superior"
|
|
277
|
+
|
|
278
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
279
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
280
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
281
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
282
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
283
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
284
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
285
|
+
msgid "Created"
|
|
286
|
+
msgstr "Creado"
|
|
287
|
+
|
|
288
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
289
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
290
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
291
|
+
msgid "Updated"
|
|
292
|
+
msgstr "Actualizado"
|
|
293
|
+
|
|
294
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
295
|
+
msgid "Organisation"
|
|
296
|
+
msgstr "Organización"
|
|
297
|
+
|
|
298
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
299
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
300
|
+
msgid "Records & files"
|
|
301
|
+
msgstr ""
|
|
302
|
+
|
|
303
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
304
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
305
|
+
msgid "Title"
|
|
306
|
+
msgstr "Título"
|
|
307
|
+
|
|
308
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
309
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
310
|
+
msgid "Owner"
|
|
311
|
+
msgstr "Propietario"
|
|
312
|
+
|
|
313
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
314
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
315
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
317
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
318
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
319
|
+
msgid "Files"
|
|
320
|
+
msgstr "Archivos"
|
|
321
|
+
|
|
322
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
323
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
324
|
+
msgid "Stats"
|
|
325
|
+
msgstr "Estadísticas"
|
|
326
|
+
|
|
327
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
328
|
+
msgid "Delete record"
|
|
329
|
+
msgstr "Eliminar registro"
|
|
330
|
+
|
|
331
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
332
|
+
msgid "Restore record"
|
|
333
|
+
msgstr "Restaurar registro"
|
|
334
|
+
|
|
335
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
336
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
337
|
+
msgid "Drafts"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
341
|
+
msgid "Set quota"
|
|
342
|
+
msgstr "Establecer cuota"
|
|
343
|
+
|
|
344
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
345
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
346
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
347
|
+
msgid "Moderation"
|
|
348
|
+
msgstr ""
|
|
349
|
+
|
|
350
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
351
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
352
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
353
|
+
msgid "User"
|
|
354
|
+
msgstr "Usuario"
|
|
355
|
+
|
|
356
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
357
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
358
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
359
|
+
msgid "Email"
|
|
360
|
+
msgstr "Email"
|
|
361
|
+
|
|
362
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
363
|
+
msgid "Email domain"
|
|
364
|
+
msgstr "Dominio del correo"
|
|
365
|
+
|
|
366
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
367
|
+
msgid "Activity"
|
|
368
|
+
msgstr ""
|
|
369
|
+
|
|
370
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
371
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
372
|
+
msgid "Approve"
|
|
373
|
+
msgstr "Aprobar"
|
|
374
|
+
|
|
375
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
376
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
377
|
+
msgid "Block"
|
|
378
|
+
msgstr "Bloquear"
|
|
379
|
+
|
|
380
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
381
|
+
msgid "User moderation"
|
|
382
|
+
msgstr "Moderación de usuarios"
|
|
383
|
+
|
|
384
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
385
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
386
|
+
msgid "ID"
|
|
387
|
+
msgstr "ID"
|
|
388
|
+
|
|
389
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
390
|
+
msgid "Open"
|
|
391
|
+
msgstr "Abrir"
|
|
392
|
+
|
|
393
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
394
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
395
|
+
msgid "Username"
|
|
396
|
+
msgstr "Nombre de usuario"
|
|
397
|
+
|
|
398
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
399
|
+
msgid "Domain "
|
|
400
|
+
msgstr "Dominio"
|
|
401
|
+
|
|
402
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
403
|
+
msgid "Visibility"
|
|
404
|
+
msgstr "Visibilidad"
|
|
405
|
+
|
|
406
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
407
|
+
msgid "Confirmed at"
|
|
408
|
+
msgstr "Confirmado en"
|
|
409
|
+
|
|
410
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
411
|
+
msgid "Verified at"
|
|
412
|
+
msgstr "Verificado en"
|
|
413
|
+
|
|
414
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
415
|
+
msgid "Blocked at"
|
|
416
|
+
msgstr "Bloqueado en"
|
|
417
|
+
|
|
418
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
419
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
420
|
+
msgid "User management"
|
|
421
|
+
msgstr ""
|
|
422
|
+
|
|
423
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
424
|
+
msgid "Restore"
|
|
425
|
+
msgstr "Restaurar"
|
|
426
|
+
|
|
427
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
428
|
+
msgid "Suspend"
|
|
429
|
+
msgstr "Suspender"
|
|
430
|
+
|
|
431
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
432
|
+
msgid "User details"
|
|
433
|
+
msgstr "Detalles de usuario"
|
|
434
|
+
|
|
435
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
86
436
|
msgid "Search "
|
|
87
437
|
msgstr "Búsqueda"
|
|
88
438
|
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
91
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
92
|
-
msgid "Search"
|
|
93
|
-
msgstr "Buscar"
|
|
94
|
-
|
|
95
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:9
|
|
439
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
96
440
|
msgid "New version"
|
|
97
441
|
msgstr "Nueva versión"
|
|
98
442
|
|
|
99
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:
|
|
100
|
-
#: invenio_app_rdm/theme/views.py:44
|
|
101
|
-
msgid "New upload"
|
|
102
|
-
msgstr "Nuevo envío"
|
|
103
|
-
|
|
104
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:13
|
|
443
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
105
444
|
msgid "Edit upload"
|
|
106
445
|
msgstr "Editar envío"
|
|
107
446
|
|
|
108
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
447
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
109
448
|
msgid "Information banner"
|
|
110
449
|
msgstr "Banner informativo"
|
|
111
450
|
|
|
112
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
451
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
113
452
|
msgid "Community visibility"
|
|
114
453
|
msgstr "Visibilidad de la comunidad"
|
|
115
454
|
|
|
116
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
455
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
117
456
|
msgid "The community is restricted to users with access."
|
|
118
457
|
msgstr "La comunidad está restringida a usuarios con acceso."
|
|
119
458
|
|
|
120
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
459
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
121
460
|
msgid "Restricted"
|
|
122
461
|
msgstr "Restringido"
|
|
123
462
|
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
125
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
126
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
463
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
464
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
465
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
127
466
|
msgid "Preview"
|
|
128
467
|
msgstr "Previsualizar"
|
|
129
468
|
|
|
130
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
469
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
131
470
|
msgid "You are previewing a published record."
|
|
132
471
|
msgstr "Está previsualizando un registro publicado."
|
|
133
472
|
|
|
134
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
473
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
135
474
|
msgid "You are previewing changes that have not yet been published."
|
|
136
475
|
msgstr "Está usted visualizando cambios que no han sido todavía publicados."
|
|
137
476
|
|
|
138
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
477
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
139
478
|
msgid "You are previewing a new record that has not yet been published."
|
|
140
479
|
msgstr ""
|
|
141
480
|
"Está usted visualizando un nuevo registro que no ha sido todavía publicado."
|
|
142
481
|
|
|
143
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
482
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
144
483
|
msgid ""
|
|
145
484
|
"You are previewing a new record version that has not yet been published."
|
|
146
485
|
msgstr ""
|
|
147
486
|
"Está usted visualizando la versión de un nuevo registro que no ha sido "
|
|
148
487
|
"todavía publicado."
|
|
149
488
|
|
|
150
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
489
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
151
490
|
#, python-format
|
|
152
491
|
msgid ""
|
|
153
492
|
"\n"
|
|
154
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
493
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
494
|
+
" available.\n"
|
|
155
495
|
" "
|
|
156
496
|
msgstr ""
|
|
157
497
|
"\n"
|
|
158
|
-
"
|
|
159
|
-
" "
|
|
498
|
+
"Hay una %(link_start)s versión más reciente%(link_end)s del registro disponible"
|
|
160
499
|
|
|
161
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
500
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
162
501
|
msgid "Record access information"
|
|
163
502
|
msgstr "Registrar información de acceso"
|
|
164
503
|
|
|
165
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
166
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
167
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
504
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
506
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
507
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
168
508
|
msgid "Reason"
|
|
169
509
|
msgstr "Motivo"
|
|
170
510
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
511
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
172
512
|
msgid "Back-navigation"
|
|
173
513
|
msgstr "Navegación hacia atrás"
|
|
174
514
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
515
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
176
516
|
msgid "Back to edit"
|
|
177
517
|
msgstr "Volver a edición"
|
|
178
518
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
519
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
180
520
|
msgid "Manage record"
|
|
181
521
|
msgstr "Gestionar registro"
|
|
182
522
|
|
|
183
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
523
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
184
524
|
msgid "Publication date and version number"
|
|
185
525
|
msgstr "Fecha de publicación y número de versión"
|
|
186
526
|
|
|
187
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
527
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
188
528
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
189
529
|
msgid "Publication date"
|
|
190
530
|
msgstr "Fecha de publicación"
|
|
191
531
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
532
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
193
533
|
msgid "Published"
|
|
194
534
|
msgstr "Publicado"
|
|
195
535
|
|
|
196
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
536
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
537
|
+
#, python-brace-format
|
|
197
538
|
msgid "Version {version_number}"
|
|
198
539
|
msgstr "Versión {version_number}"
|
|
199
540
|
|
|
200
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
541
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
201
542
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
202
543
|
msgid "Resource type"
|
|
203
544
|
msgstr "Tipo de recurso"
|
|
204
545
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
546
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
206
547
|
msgid "Access status"
|
|
207
548
|
msgstr "Estado de acceso"
|
|
208
549
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
550
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
210
551
|
msgid "Record title and creators"
|
|
211
552
|
msgstr "Título del registro y creadores"
|
|
212
553
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
554
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
214
555
|
msgid "Creators and contributors"
|
|
215
556
|
msgstr "Creadores y colaboradores"
|
|
216
557
|
|
|
217
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
218
|
-
msgid "
|
|
219
|
-
msgstr "
|
|
558
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
559
|
+
msgid "Request access"
|
|
560
|
+
msgstr "Solicitar acceso"
|
|
220
561
|
|
|
221
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
562
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
563
|
+
msgid ""
|
|
564
|
+
"If you would like to request access to these files, please fill out the form"
|
|
565
|
+
" below."
|
|
566
|
+
msgstr ""
|
|
567
|
+
"Si desea solicitar acceso a estos archivos, complete el formulario a "
|
|
568
|
+
"continuación."
|
|
569
|
+
|
|
570
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
571
|
+
msgid ""
|
|
572
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
573
|
+
"accepted:"
|
|
574
|
+
msgstr ""
|
|
575
|
+
"Necesita cumplir con estas condiciones para que esta solicitud sea aceptada:"
|
|
576
|
+
|
|
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 "Archivos del sistema"
|
|
227
581
|
|
|
228
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
582
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
229
583
|
msgid "Additional record details"
|
|
230
584
|
msgstr "Detalles adicionales del registro"
|
|
231
585
|
|
|
232
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
233
|
-
#: 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
|
|
234
587
|
msgid "Record details"
|
|
235
588
|
msgstr "Detalles del registro"
|
|
236
589
|
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
238
|
-
msgid "Upload information"
|
|
239
|
-
msgstr "Subir información"
|
|
240
|
-
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:306
|
|
242
|
-
msgid "Created"
|
|
243
|
-
msgstr "Creado"
|
|
244
|
-
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:312
|
|
246
|
-
msgid "Modified"
|
|
247
|
-
msgstr "Modificado"
|
|
248
|
-
|
|
249
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:329
|
|
590
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
250
591
|
msgid "Jump to top of page"
|
|
251
592
|
msgstr "Ir a la parte superior de la página"
|
|
252
593
|
|
|
253
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
594
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
254
595
|
msgid "Jump up"
|
|
255
596
|
msgstr "Saltar"
|
|
256
597
|
|
|
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 "Borrador no encontrado"
|
|
602
|
+
|
|
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."
|
|
607
|
+
msgstr ""
|
|
608
|
+
"Este registro ya ha sido publicado y no se está editando actualmente, por lo"
|
|
609
|
+
" que no existe un borrador."
|
|
610
|
+
|
|
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 "Ir al registro publicado"
|
|
614
|
+
|
|
257
615
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
258
616
|
msgid "Back to details"
|
|
259
617
|
msgstr "Volver a los detalles"
|
|
@@ -262,47 +620,120 @@ msgstr "Volver a los detalles"
|
|
|
262
620
|
msgid "Preview for"
|
|
263
621
|
msgstr "Vista previa de"
|
|
264
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 "Permiso requerido"
|
|
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
|
+
"El registro estuvo previamente accesible al público, pero ahora está "
|
|
633
|
+
"restringido a usuarios con acceso."
|
|
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."
|
|
639
|
+
msgstr ""
|
|
640
|
+
"El Identificador de Objeto Digital (DOI) asociado con este registro "
|
|
641
|
+
"permanece activo para referencia."
|
|
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 "Identificador:"
|
|
647
|
+
|
|
265
648
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
266
649
|
msgid "Search results"
|
|
267
650
|
msgstr "Resultados de la búsqueda"
|
|
268
651
|
|
|
269
|
-
#: 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
|
|
270
653
|
msgid "Tombstone"
|
|
271
654
|
msgstr "Cementerio"
|
|
272
655
|
|
|
273
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
656
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
657
|
+
msgid "Reason unknown"
|
|
658
|
+
msgstr "Motivo desconocido"
|
|
659
|
+
|
|
660
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
274
661
|
msgid "Gone"
|
|
275
662
|
msgstr "Quitado"
|
|
276
663
|
|
|
277
|
-
#: 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
|
|
278
665
|
#, python-format
|
|
279
666
|
msgid ""
|
|
280
667
|
"\n"
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
" "
|
|
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."
|
|
284
670
|
msgstr ""
|
|
285
671
|
"\n"
|
|
286
|
-
"
|
|
287
|
-
" metadatos del registro se han guardado con fines archivísticos.\n"
|
|
288
|
-
" "
|
|
672
|
+
"El registro que estás intentando acceder fue eliminado de %(sitename)s. Los metadatos del registro se conservan con fines archivísticos."
|
|
289
673
|
|
|
290
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
674
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:35
|
|
291
675
|
msgid "Reason for removal:"
|
|
292
676
|
msgstr "Motivo de la eliminación:"
|
|
293
677
|
|
|
294
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
678
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
679
|
+
msgid "Removed by:"
|
|
680
|
+
msgstr "Eliminado por:"
|
|
681
|
+
|
|
682
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
683
|
+
msgid "Removal note:"
|
|
684
|
+
msgstr "Nota de eliminación:"
|
|
685
|
+
|
|
686
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
687
|
+
msgid "Date of removal:"
|
|
688
|
+
msgstr "Fecha de eliminación:"
|
|
689
|
+
|
|
690
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
691
|
+
msgid "Citation:"
|
|
692
|
+
msgstr "Cita:"
|
|
693
|
+
|
|
694
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
695
|
+
msgid "You are currently not logged in"
|
|
696
|
+
msgstr ""
|
|
298
697
|
|
|
299
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
698
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:16
|
|
699
|
+
msgid "Do you have an account?"
|
|
700
|
+
msgstr ""
|
|
701
|
+
|
|
702
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
703
|
+
msgid "Log in here"
|
|
704
|
+
msgstr ""
|
|
705
|
+
|
|
706
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:22
|
|
707
|
+
msgid "You are logged in as"
|
|
708
|
+
msgstr "Estás conectado como"
|
|
709
|
+
|
|
710
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
711
|
+
msgid "Not you?"
|
|
712
|
+
msgstr ""
|
|
713
|
+
|
|
714
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
715
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:113
|
|
716
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:145
|
|
717
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:153
|
|
718
|
+
msgid "Log out"
|
|
719
|
+
msgstr "Salir"
|
|
720
|
+
|
|
721
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:31
|
|
722
|
+
msgid "to switch account."
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
725
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html:11
|
|
726
|
+
msgid "Send message"
|
|
727
|
+
msgstr ""
|
|
728
|
+
|
|
729
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:16
|
|
730
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:73
|
|
300
731
|
msgid "Creators"
|
|
301
732
|
msgstr "Creadores"
|
|
302
733
|
|
|
303
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:
|
|
304
|
-
msgid "Contributors
|
|
305
|
-
msgstr "
|
|
734
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
735
|
+
msgid "Contributors"
|
|
736
|
+
msgstr "Colaboradores"
|
|
306
737
|
|
|
307
738
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
308
739
|
msgid "Record description"
|
|
@@ -312,57 +743,112 @@ msgstr "Descripción del registro"
|
|
|
312
743
|
msgid "Description"
|
|
313
744
|
msgstr "Descripción"
|
|
314
745
|
|
|
315
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
746
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:38
|
|
316
747
|
msgid "Additional details"
|
|
317
748
|
msgstr "Detalles adicionales"
|
|
318
749
|
|
|
319
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
750
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:55
|
|
751
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:73
|
|
320
752
|
msgid "Additional titles"
|
|
321
753
|
msgstr "Títulos adicionales"
|
|
322
754
|
|
|
323
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
755
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:98
|
|
756
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:116
|
|
324
757
|
msgid "Identifiers"
|
|
325
758
|
msgstr "Identificadores"
|
|
326
759
|
|
|
327
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
760
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:141
|
|
761
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:157
|
|
328
762
|
msgid "Related works"
|
|
329
763
|
msgstr "Trabajos relacionados"
|
|
330
764
|
|
|
331
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
765
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:180
|
|
766
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:198
|
|
332
767
|
msgid "Funding"
|
|
333
768
|
msgstr "Financiación"
|
|
334
769
|
|
|
335
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
770
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:223
|
|
771
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:241
|
|
336
772
|
msgid "Dates"
|
|
337
773
|
msgstr "Fechas"
|
|
338
774
|
|
|
339
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
340
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
775
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:311
|
|
776
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:327
|
|
341
777
|
msgid "References"
|
|
342
778
|
msgstr "Referencias"
|
|
343
779
|
|
|
344
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
345
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
346
|
-
msgid "
|
|
347
|
-
msgstr "
|
|
348
|
-
|
|
349
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
780
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:17
|
|
781
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:55
|
|
782
|
+
msgid "Views"
|
|
783
|
+
msgstr "Vistas"
|
|
784
|
+
|
|
785
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:25
|
|
786
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:75
|
|
787
|
+
msgid "Downloads"
|
|
788
|
+
msgstr "Descargas"
|
|
789
|
+
|
|
790
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:36
|
|
791
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:39
|
|
792
|
+
msgid "Show more details"
|
|
793
|
+
msgstr "Mostrar más detalles"
|
|
794
|
+
|
|
795
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:37
|
|
796
|
+
msgid "Show less details"
|
|
797
|
+
msgstr "Mostrar menos detalles"
|
|
798
|
+
|
|
799
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:48
|
|
800
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:70
|
|
801
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:90
|
|
802
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:112
|
|
803
|
+
msgid "All versions"
|
|
804
|
+
msgstr "Todas las versiones"
|
|
805
|
+
|
|
806
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:49
|
|
807
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:71
|
|
808
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:91
|
|
809
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:113
|
|
810
|
+
msgid "This version"
|
|
811
|
+
msgstr "Esta versión"
|
|
812
|
+
|
|
813
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:62
|
|
814
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:82
|
|
815
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:102
|
|
816
|
+
msgid "More info"
|
|
817
|
+
msgstr "Más información"
|
|
818
|
+
|
|
819
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:67
|
|
820
|
+
msgid "Total views"
|
|
821
|
+
msgstr "Total de vistas"
|
|
822
|
+
|
|
823
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:87
|
|
824
|
+
msgid "Total downloads"
|
|
825
|
+
msgstr "Total de descargas"
|
|
826
|
+
|
|
827
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
828
|
+
msgid "Data volume"
|
|
829
|
+
msgstr "Volumen de datos"
|
|
830
|
+
|
|
831
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:107
|
|
832
|
+
msgid "Total data volume"
|
|
833
|
+
msgstr "Total de volumen de datos"
|
|
834
|
+
|
|
835
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:119
|
|
836
|
+
msgid "More info on how stats are collected."
|
|
837
|
+
msgstr "Más información sobre como se recopilan las estadísticas"
|
|
356
838
|
|
|
357
839
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
358
840
|
msgid "Keywords"
|
|
359
841
|
msgstr "Palabras clave"
|
|
360
842
|
|
|
361
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
362
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
843
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
844
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
363
845
|
msgid "Search results for "
|
|
364
846
|
msgstr "Buscar resultados para"
|
|
365
847
|
|
|
848
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
849
|
+
msgid "Citation"
|
|
850
|
+
msgstr "Citación"
|
|
851
|
+
|
|
366
852
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
367
853
|
msgid "Details"
|
|
368
854
|
msgstr "Detalles"
|
|
@@ -372,55 +858,96 @@ msgid "Publisher"
|
|
|
372
858
|
msgstr "Editor"
|
|
373
859
|
|
|
374
860
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
861
|
+
msgid "Published in"
|
|
862
|
+
msgstr "Publicado en"
|
|
863
|
+
|
|
864
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
865
|
+
msgid "Imprint"
|
|
866
|
+
msgstr "Información de publicación"
|
|
867
|
+
|
|
868
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
869
|
+
msgid "Awarding university"
|
|
870
|
+
msgstr "Universidad otorgante"
|
|
871
|
+
|
|
872
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
873
|
+
msgid "Conference"
|
|
874
|
+
msgstr "Conferencia"
|
|
875
|
+
|
|
876
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
375
877
|
msgid "Languages"
|
|
376
878
|
msgstr "Idiomas"
|
|
377
879
|
|
|
378
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
880
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
379
881
|
msgid "Formats"
|
|
380
882
|
msgstr "Formatos"
|
|
381
883
|
|
|
382
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:
|
|
884
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
383
885
|
msgid "Sizes"
|
|
384
886
|
msgstr "Tamaños"
|
|
385
887
|
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
387
888
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
388
889
|
msgid "Export"
|
|
389
890
|
msgstr "Exportar"
|
|
390
891
|
|
|
391
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
892
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
894
|
+
msgid "External resources"
|
|
895
|
+
msgstr "Fuentes externas"
|
|
896
|
+
|
|
392
897
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
898
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
393
899
|
msgid "Keywords and subjects"
|
|
394
900
|
msgstr "Palabras clave y temas"
|
|
395
901
|
|
|
396
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
397
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
398
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
399
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
400
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
902
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
903
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
904
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
905
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
906
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
907
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
401
908
|
msgid "Opens in new tab"
|
|
402
909
|
msgstr "Se abre en una pestaña nueva"
|
|
403
910
|
|
|
404
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
911
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
912
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
913
|
+
msgid "Read more"
|
|
914
|
+
msgstr "Leer más"
|
|
915
|
+
|
|
405
916
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
406
917
|
msgid "Rights"
|
|
407
918
|
msgstr "Derechos"
|
|
408
919
|
|
|
409
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
920
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
410
921
|
msgid "Close"
|
|
411
922
|
msgstr "Cerrar"
|
|
412
923
|
|
|
413
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
924
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
414
925
|
msgid "No further description."
|
|
415
926
|
msgstr "Sin más descripción."
|
|
416
927
|
|
|
928
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
929
|
+
msgid "Geographic locations"
|
|
930
|
+
msgstr "Ubicaciones geográficas"
|
|
931
|
+
|
|
417
932
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
418
933
|
msgid "Record management"
|
|
419
934
|
msgstr "Gestión de registros"
|
|
420
935
|
|
|
421
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
422
|
-
msgid "
|
|
423
|
-
msgstr "
|
|
936
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
937
|
+
msgid "Metrics"
|
|
938
|
+
msgstr "Metricas"
|
|
939
|
+
|
|
940
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
941
|
+
msgid "Upload information"
|
|
942
|
+
msgstr "Subir información"
|
|
943
|
+
|
|
944
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
945
|
+
msgid "Technical metadata"
|
|
946
|
+
msgstr "Metadatos técnicos"
|
|
947
|
+
|
|
948
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
949
|
+
msgid "Modified"
|
|
950
|
+
msgstr "Modificado"
|
|
424
951
|
|
|
425
952
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
426
953
|
msgid "Versions"
|
|
@@ -447,28 +974,44 @@ msgstr "Ocultar afiliaciones"
|
|
|
447
974
|
msgid "Affiliations for"
|
|
448
975
|
msgstr "Afiliaciones para"
|
|
449
976
|
|
|
450
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
977
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
451
978
|
msgid "Open external link"
|
|
452
979
|
msgstr "Abrir enlace externo"
|
|
453
980
|
|
|
454
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
981
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
982
|
+
msgid "Conference website"
|
|
983
|
+
msgstr "Sitio web de la conferencia"
|
|
984
|
+
|
|
985
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
986
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
987
|
+
msgid "DOI"
|
|
988
|
+
msgstr "DOI"
|
|
989
|
+
|
|
990
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
991
|
+
msgid "Get the DOI badge!"
|
|
992
|
+
msgstr "Conseguir la tarjeta DOI"
|
|
993
|
+
|
|
994
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
995
|
+
msgid "DOI Badge"
|
|
996
|
+
msgstr "Tarjeta DOI"
|
|
997
|
+
|
|
998
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
455
999
|
msgid "File preview"
|
|
456
1000
|
msgstr "Vista previa del archivo"
|
|
457
1001
|
|
|
458
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1002
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
459
1003
|
msgid "Name"
|
|
460
1004
|
msgstr "Nombre"
|
|
461
1005
|
|
|
462
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1006
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
463
1007
|
msgid "Size"
|
|
464
1008
|
msgstr "Tamaño"
|
|
465
1009
|
|
|
466
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
msgstr "Acciones"
|
|
1010
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1011
|
+
msgid "Download all"
|
|
1012
|
+
msgstr "Descargar todos"
|
|
470
1013
|
|
|
471
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1014
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
472
1015
|
msgid ""
|
|
473
1016
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
474
1017
|
"file integrity."
|
|
@@ -476,322 +1019,371 @@ msgstr ""
|
|
|
476
1019
|
"Esta es la huella digital del archivo (suma de comprobación), que se puede "
|
|
477
1020
|
"utilizar para verificar la integridad del archivo."
|
|
478
1021
|
|
|
479
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1022
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
480
1023
|
msgid "Download"
|
|
481
1024
|
msgstr "Descargar"
|
|
482
1025
|
|
|
483
|
-
#: invenio_app_rdm/records_ui/
|
|
484
|
-
msgid "
|
|
485
|
-
msgstr "
|
|
1026
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1027
|
+
msgid "Unknown"
|
|
1028
|
+
msgstr "Desconocido"
|
|
1029
|
+
|
|
1030
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1031
|
+
msgid "See the full number"
|
|
1032
|
+
msgstr "Ver el número completo"
|
|
486
1033
|
|
|
487
|
-
#: invenio_app_rdm/records_ui/
|
|
488
|
-
msgid "
|
|
489
|
-
msgstr "
|
|
1034
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1035
|
+
msgid "Version"
|
|
1036
|
+
msgstr "Version"
|
|
490
1037
|
|
|
491
|
-
#: invenio_app_rdm/records_ui/
|
|
1038
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1039
|
+
msgid "No DOI available"
|
|
1040
|
+
msgstr ""
|
|
1041
|
+
|
|
1042
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1043
|
+
#, python-format
|
|
1044
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
1047
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1048
|
+
#, python-format
|
|
1049
|
+
msgid "Get a %(scheme_label)s now!"
|
|
1050
|
+
msgstr ""
|
|
1051
|
+
|
|
1052
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1053
|
+
#, python-format
|
|
492
1054
|
msgid ""
|
|
493
|
-
"Reserve a
|
|
494
|
-
"files prior to upload). The
|
|
495
|
-
" published."
|
|
1055
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1056
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1057
|
+
"is published."
|
|
496
1058
|
msgstr ""
|
|
497
|
-
"Reserve un {scheme_label} presionando el botón (para que pueda incluirse en "
|
|
498
|
-
"los archivos antes de cargarlos). El {scheme_label} se registra cuando se "
|
|
499
|
-
"publica su envío."
|
|
500
1059
|
|
|
501
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1060
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1061
|
+
#, python-format
|
|
502
1062
|
msgid ""
|
|
503
|
-
"A
|
|
1063
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
504
1064
|
"Example: 10.1234/foo.bar"
|
|
505
1065
|
msgstr ""
|
|
506
|
-
"Un {scheme_label} permite que su envío se cite de manera fácil y sin "
|
|
507
|
-
"ambigüedades. Ejemplo: 10.1234/foo.bar"
|
|
508
1066
|
|
|
509
|
-
#: invenio_app_rdm/
|
|
1067
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1068
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1069
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1070
|
+
msgid "All"
|
|
1071
|
+
msgstr "Todas"
|
|
1072
|
+
|
|
1073
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
510
1074
|
msgid "Back to invitations"
|
|
511
1075
|
msgstr "Volver a las invitaciones"
|
|
512
1076
|
|
|
513
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
514
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1077
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1078
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1080
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
515
1081
|
msgid "Back to requests"
|
|
516
1082
|
msgstr "Volver a las solicitudes"
|
|
517
1083
|
|
|
518
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1084
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
519
1085
|
msgid "Conversation"
|
|
520
1086
|
msgstr "Conversación"
|
|
521
1087
|
|
|
522
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1088
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
523
1089
|
msgid "Record"
|
|
524
1090
|
msgstr "Registro"
|
|
525
1091
|
|
|
526
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1092
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1093
|
+
msgid "Access request"
|
|
1094
|
+
msgstr "Solicitud de acceso"
|
|
1095
|
+
|
|
1096
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
527
1097
|
msgid "View Community"
|
|
528
1098
|
msgstr "Ver Comunidad"
|
|
529
1099
|
|
|
530
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1100
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
531
1101
|
msgid "View record"
|
|
532
1102
|
msgstr "Ver registro"
|
|
533
1103
|
|
|
534
|
-
#: invenio_app_rdm/theme/views.py:
|
|
535
|
-
msgid "
|
|
536
|
-
msgstr "
|
|
1104
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1105
|
+
msgid "Notification preferences were updated."
|
|
1106
|
+
msgstr "Las preferencias de notificación fueron actualizadas"
|
|
537
1107
|
|
|
538
1108
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
539
1109
|
msgid "About InvenioRDM"
|
|
540
1110
|
msgstr "Acerca de InvenioRDM"
|
|
541
1111
|
|
|
542
1112
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
543
|
-
|
|
544
|
-
msgid ""
|
|
545
|
-
"\n"
|
|
546
|
-
" <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
|
|
547
|
-
" "
|
|
1113
|
+
msgid "Product page"
|
|
548
1114
|
msgstr ""
|
|
549
|
-
"\n"
|
|
550
|
-
" <p><a href=\"%(invenio_rdm)s\">Página del producto</a></p>\n"
|
|
551
|
-
" "
|
|
552
1115
|
|
|
553
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
"\n"
|
|
557
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
558
|
-
" "
|
|
559
|
-
msgstr ""
|
|
560
|
-
"\n"
|
|
561
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Características</a></p>\n"
|
|
562
|
-
" "
|
|
1116
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1117
|
+
msgid "Features"
|
|
1118
|
+
msgstr "Características"
|
|
563
1119
|
|
|
564
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
565
|
-
|
|
566
|
-
msgid ""
|
|
567
|
-
"\n"
|
|
568
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
|
|
569
|
-
" "
|
|
1120
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1121
|
+
msgid "Roadmap"
|
|
570
1122
|
msgstr ""
|
|
571
|
-
"\n"
|
|
572
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Hoja de ruta</a></p>\n"
|
|
573
|
-
" "
|
|
574
1123
|
|
|
575
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
576
|
-
|
|
577
|
-
msgid ""
|
|
578
|
-
"\n"
|
|
579
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
|
|
580
|
-
" "
|
|
1124
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
1125
|
+
msgid "Demo site"
|
|
581
1126
|
msgstr ""
|
|
582
|
-
"\n"
|
|
583
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Sitio Demo</a></p>\n"
|
|
584
|
-
" "
|
|
585
1127
|
|
|
586
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1128
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
587
1129
|
msgid "Get involved"
|
|
588
1130
|
msgstr "Participar"
|
|
589
1131
|
|
|
590
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
"\n"
|
|
594
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
595
|
-
" "
|
|
596
|
-
msgstr ""
|
|
597
|
-
"\n"
|
|
598
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
599
|
-
" "
|
|
1132
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1133
|
+
msgid "GitHub"
|
|
1134
|
+
msgstr "GitHub"
|
|
600
1135
|
|
|
601
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
602
|
-
|
|
603
|
-
msgid ""
|
|
604
|
-
"\n"
|
|
605
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
606
|
-
" "
|
|
1136
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1137
|
+
msgid "Project Milestones"
|
|
607
1138
|
msgstr ""
|
|
608
|
-
"\n"
|
|
609
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Etapas del proyecto</a></p>\n"
|
|
610
|
-
" "
|
|
611
1139
|
|
|
612
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
"\n"
|
|
616
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
617
|
-
" "
|
|
618
|
-
msgstr ""
|
|
619
|
-
"\n"
|
|
620
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentación</a></p>\n"
|
|
621
|
-
" "
|
|
1140
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
1141
|
+
msgid "Documentation"
|
|
1142
|
+
msgstr "Documentación"
|
|
622
1143
|
|
|
623
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1144
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
624
1145
|
msgid "Community"
|
|
625
1146
|
msgstr "Comunidad"
|
|
626
1147
|
|
|
627
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
628
|
-
|
|
629
|
-
msgid ""
|
|
630
|
-
"\n"
|
|
631
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
632
|
-
" "
|
|
1148
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1149
|
+
msgid "Chatroom"
|
|
633
1150
|
msgstr ""
|
|
634
|
-
"\n"
|
|
635
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Sala de chat</a></p>\n"
|
|
636
|
-
" "
|
|
637
1151
|
|
|
638
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
639
|
-
|
|
640
|
-
msgid ""
|
|
641
|
-
"\n"
|
|
642
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
643
|
-
" "
|
|
1152
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
1153
|
+
msgid "Forum"
|
|
644
1154
|
msgstr ""
|
|
645
|
-
"\n"
|
|
646
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Foro</a></p>\n"
|
|
647
|
-
" "
|
|
648
1155
|
|
|
649
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
650
|
-
|
|
651
|
-
msgid ""
|
|
652
|
-
"\n"
|
|
653
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
654
|
-
" "
|
|
1156
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
1157
|
+
msgid "Events & training"
|
|
655
1158
|
msgstr ""
|
|
656
|
-
"\n"
|
|
657
|
-
" <p><a href=\"%(invenio_events)s\">Eventos y formación</a></p>\n"
|
|
658
|
-
" "
|
|
659
1159
|
|
|
660
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
661
|
-
|
|
662
|
-
msgid ""
|
|
663
|
-
"Powered by <a\n"
|
|
664
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1160
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1161
|
+
msgid "Impersonated session"
|
|
665
1162
|
msgstr ""
|
|
666
|
-
"Powered by <a\n"
|
|
667
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
668
1163
|
|
|
669
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1164
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1165
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
1166
|
+
msgstr ""
|
|
1167
|
+
|
|
1168
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1169
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1170
|
+
msgid "home"
|
|
1171
|
+
msgstr "Página principal"
|
|
1172
|
+
|
|
1173
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1175
|
+
msgid "Menu"
|
|
1176
|
+
msgstr "Menú"
|
|
1177
|
+
|
|
1178
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1180
|
+
msgid "Close menu"
|
|
1181
|
+
msgstr "Cerrar menú"
|
|
1182
|
+
|
|
1183
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1185
|
+
msgid "Inbox"
|
|
1186
|
+
msgstr "Bandeja de entrada"
|
|
1187
|
+
|
|
1188
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1189
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1190
|
+
msgid "Search"
|
|
1191
|
+
msgstr "Buscar"
|
|
1192
|
+
|
|
1193
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1194
|
+
msgid "Log in"
|
|
1195
|
+
msgstr "Entrar"
|
|
1196
|
+
|
|
1197
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1198
|
+
msgid "Sign up"
|
|
1199
|
+
msgstr "Registrarse"
|
|
1200
|
+
|
|
1201
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1202
|
+
msgid "Quick create"
|
|
1203
|
+
msgstr "Creación rápida"
|
|
1204
|
+
|
|
1205
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1206
|
+
msgid "Actions"
|
|
1207
|
+
msgstr "Acciones"
|
|
1208
|
+
|
|
1209
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1210
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1211
|
+
msgid "My account"
|
|
1212
|
+
msgstr "Mi cuenta"
|
|
1213
|
+
|
|
1214
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
670
1215
|
msgid "You've successfully installed InvenioRDM!"
|
|
671
1216
|
msgstr "¡Ha instalado correctamente InvenioRDM!"
|
|
672
1217
|
|
|
673
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1218
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
674
1219
|
msgid "What is ahead?"
|
|
675
1220
|
msgstr "¿Qué hay por delante?"
|
|
676
1221
|
|
|
677
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1222
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
678
1223
|
msgid "Configure"
|
|
679
1224
|
msgstr "Configurar"
|
|
680
1225
|
|
|
681
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
682
|
-
#, python-format
|
|
1226
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
683
1227
|
msgid ""
|
|
684
|
-
"
|
|
685
|
-
"
|
|
686
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
687
|
-
" section in the docs</a>.\n"
|
|
688
|
-
" "
|
|
1228
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1229
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
689
1230
|
msgstr ""
|
|
690
|
-
"\n"
|
|
691
|
-
" ¡Configure el modelo de datos, los tipos de recursos, los permisos y mucho más para que se adapte a sus necesidades! Para más\n"
|
|
692
|
-
" información sobre cómo hacer, visite la <a href=\"%(configuration_link)s\" target=\"_blank\">sección de\n"
|
|
693
|
-
" configuración en la documentación</a>.\n"
|
|
694
|
-
" "
|
|
695
1231
|
|
|
696
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1232
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1233
|
+
msgid "configuration section in the docs"
|
|
1234
|
+
msgstr ""
|
|
1235
|
+
|
|
1236
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
697
1237
|
msgid "Customize"
|
|
698
1238
|
msgstr "Personalizar"
|
|
699
1239
|
|
|
700
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
701
|
-
#, python-format
|
|
1240
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
702
1241
|
msgid ""
|
|
703
|
-
"
|
|
704
|
-
"
|
|
705
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
706
|
-
" "
|
|
1242
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1243
|
+
"how to do so"
|
|
707
1244
|
msgstr ""
|
|
708
|
-
"\n"
|
|
709
|
-
" Personalice el diseño y adapte el estilo para que coincida con el de su institución. Vea cómo hacerlo <a\n"
|
|
710
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">aquí</a>.\n"
|
|
711
|
-
" "
|
|
712
1245
|
|
|
713
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1246
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1247
|
+
msgid "here"
|
|
1248
|
+
msgstr "aquí"
|
|
1249
|
+
|
|
1250
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
714
1251
|
msgid "Run it!"
|
|
715
1252
|
msgstr "¡Ejecutarlo!"
|
|
716
1253
|
|
|
717
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
718
|
-
|
|
719
|
-
msgid ""
|
|
720
|
-
"\n"
|
|
721
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
|
|
722
|
-
" InvenioRDM instance locally or in containers.\n"
|
|
723
|
-
" "
|
|
1254
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1255
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
724
1256
|
msgstr ""
|
|
725
|
-
"\n"
|
|
726
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Ejecute</a> su\n"
|
|
727
|
-
" instancia InvenioRDM en modo local o en contenedores.\n"
|
|
728
|
-
" "
|
|
729
1257
|
|
|
730
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1258
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1259
|
+
msgid "Run"
|
|
1260
|
+
msgstr "Ejecutar"
|
|
1261
|
+
|
|
1262
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
731
1263
|
msgid "Docs"
|
|
732
1264
|
msgstr "Documentos"
|
|
733
1265
|
|
|
734
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1266
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
735
1267
|
msgid "Code"
|
|
736
1268
|
msgstr "Código"
|
|
737
1269
|
|
|
738
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
739
|
-
msgid "
|
|
740
|
-
msgstr "
|
|
1270
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1271
|
+
msgid "To disable this section, add"
|
|
1272
|
+
msgstr "Para desactivar esta sección, agrega"
|
|
741
1273
|
|
|
742
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
743
|
-
msgid "
|
|
744
|
-
msgstr "
|
|
1274
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1275
|
+
msgid "to your invenio.cfg file."
|
|
1276
|
+
msgstr "A su archivo invenio.cfg"
|
|
745
1277
|
|
|
746
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
msgid "Requests"
|
|
750
|
-
msgstr "Peticiones"
|
|
1278
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1279
|
+
msgid "In this community"
|
|
1280
|
+
msgstr "En esta comunidad"
|
|
751
1281
|
|
|
752
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
753
|
-
|
|
754
|
-
|
|
1282
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1283
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1284
|
+
msgid "Search records"
|
|
1285
|
+
msgstr "Buscar registros"
|
|
755
1286
|
|
|
756
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
757
|
-
|
|
758
|
-
|
|
1287
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1289
|
+
msgid "Powered by"
|
|
1290
|
+
msgstr "Powered by"
|
|
759
1291
|
|
|
760
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
761
|
-
msgid "
|
|
762
|
-
|
|
1292
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1293
|
+
msgid ""
|
|
1294
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1295
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
1296
|
+
msgstr ""
|
|
763
1297
|
|
|
764
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
765
|
-
|
|
766
|
-
msgid "
|
|
767
|
-
msgstr "
|
|
1298
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1299
|
+
#, python-format
|
|
1300
|
+
msgid "ID: %s"
|
|
1301
|
+
msgstr ""
|
|
768
1302
|
|
|
769
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
msgstr "Salir"
|
|
1303
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1304
|
+
#, python-format
|
|
1305
|
+
msgid "URI: %s"
|
|
1306
|
+
msgstr ""
|
|
774
1307
|
|
|
775
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
776
|
-
|
|
777
|
-
|
|
1308
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1309
|
+
#, python-format
|
|
1310
|
+
msgid "Name: %s"
|
|
1311
|
+
msgstr ""
|
|
778
1312
|
|
|
779
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
780
|
-
|
|
781
|
-
msgid "
|
|
782
|
-
msgstr "
|
|
1313
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1314
|
+
#, python-format
|
|
1315
|
+
msgid "Created: %s"
|
|
1316
|
+
msgstr ""
|
|
1317
|
+
|
|
1318
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1319
|
+
#, python-format
|
|
1320
|
+
msgid "Checksum: %s"
|
|
1321
|
+
msgstr ""
|
|
1322
|
+
|
|
1323
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1324
|
+
#, python-format
|
|
1325
|
+
msgid "Last check date: %s"
|
|
1326
|
+
msgstr ""
|
|
1327
|
+
|
|
1328
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1329
|
+
#, python-format
|
|
1330
|
+
msgid "Last check FAILED with result: %s"
|
|
1331
|
+
msgstr ""
|
|
1332
|
+
|
|
1333
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1334
|
+
#, python-format
|
|
1335
|
+
msgid "Record: %s/records/%s"
|
|
1336
|
+
msgstr ""
|
|
1337
|
+
|
|
1338
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1339
|
+
#, python-format
|
|
1340
|
+
msgid "Draft: %s/uploads/%s"
|
|
1341
|
+
msgstr ""
|
|
783
1342
|
|
|
784
1343
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
785
1344
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1345
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
786
1346
|
msgid "Search guide"
|
|
787
1347
|
msgstr "Guía de búsqueda"
|
|
788
1348
|
|
|
789
|
-
#: invenio_app_rdm/
|
|
790
|
-
#: invenio_app_rdm/
|
|
791
|
-
msgid "
|
|
792
|
-
msgstr "
|
|
1349
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1350
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1351
|
+
msgid "FAQ statistics"
|
|
1352
|
+
msgstr "Preguntas frecuentes sobre Estadísticas"
|
|
793
1353
|
|
|
794
|
-
#: invenio_app_rdm/
|
|
795
|
-
#: invenio_app_rdm/
|
|
796
|
-
msgid "
|
|
797
|
-
msgstr "
|
|
1354
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1355
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1356
|
+
msgid "FAQ versioning"
|
|
1357
|
+
msgstr "Preguntas frecuentes de Versionado"
|
|
1358
|
+
|
|
1359
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1360
|
+
msgid "Recent uploads"
|
|
1361
|
+
msgstr ""
|
|
1362
|
+
|
|
1363
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1364
|
+
msgid "Verified community"
|
|
1365
|
+
msgstr ""
|
|
1366
|
+
|
|
1367
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1368
|
+
msgid "Privacy policy"
|
|
1369
|
+
msgstr "PolÍtica de privacidad"
|
|
1370
|
+
|
|
1371
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1372
|
+
msgid "Terms of use"
|
|
1373
|
+
msgstr "Terminos de uso"
|
|
1374
|
+
|
|
1375
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1376
|
+
msgid "Support"
|
|
1377
|
+
msgstr "Soporte"
|
|
1378
|
+
|
|
1379
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1380
|
+
msgid "Your dashboard"
|
|
1381
|
+
msgstr "Su panel de control"
|
|
1382
|
+
|
|
1383
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1384
|
+
msgid "Anonymous user"
|
|
1385
|
+
msgstr "Usuario anonimo"
|
|
1386
|
+
|
|
1387
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1388
|
+
msgid "New community"
|
|
1389
|
+
msgstr "Nueva comunidad"
|