invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/records.py +9 -7
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/administration/users/users.py +0 -5
- invenio_app_rdm/communities_ui/views/communities.py +9 -5
- invenio_app_rdm/config.py +73 -4
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/fixtures/pages.py +5 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
- invenio_app_rdm/records_ui/utils.py +93 -1
- invenio_app_rdm/records_ui/views/decorators.py +24 -14
- invenio_app_rdm/records_ui/views/deposits.py +100 -27
- invenio_app_rdm/records_ui/views/filters.py +11 -4
- invenio_app_rdm/records_ui/views/records.py +23 -13
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/views/requests.py +54 -87
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/webpack.py +3 -2
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/messages.pot +486 -303
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- tests/__init__.py +0 -8
- tests/api/__init__.py +0 -8
- tests/api/conftest.py +0 -24
- tests/api/test_protect_files_rest.py +0 -73
- tests/api/test_record_api.py +0 -175
- tests/api/test_stats_api.py +0 -26
- tests/conftest.py +0 -390
- tests/fixtures/__init__.py +0 -8
- tests/fixtures/app_data/oai_sets.yaml +0 -3
- tests/fixtures/app_data/pages/about.html +0 -1
- tests/fixtures/app_data/pages.yaml +0 -4
- tests/fixtures/conftest.py +0 -27
- tests/fixtures/test_cli.py +0 -25
- tests/fixtures/test_fixtures.py +0 -46
- tests/mock_module/__init__.py +0 -7
- tests/mock_module/templates/mock_mail.html +0 -27
- tests/mock_module/views.py +0 -32
- tests/redirector/__init__.py +0 -8
- tests/redirector/conftest.py +0 -54
- tests/redirector/test_redirector.py +0 -28
- tests/test_tasks.py +0 -209
- tests/test_utils.py +0 -67
- tests/test_version.py +0 -16
- tests/test_views.py +0 -43
- tests/ui/__init__.py +0 -8
- tests/ui/conftest.py +0 -115
- tests/ui/test_deposits.py +0 -115
- tests/ui/test_export_formats.py +0 -37
- tests/ui/test_file_download.py +0 -73
- tests/ui/test_filters.py +0 -10
- tests/ui/test_robotstxt.py +0 -35
- tests/ui/test_signposting_ui.py +0 -95
- tests/ui/test_sitemaps.py +0 -85
- tests/ui/test_stats_ui.py +0 -92
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,418 +1,958 @@
|
|
|
1
1
|
# Translations template for invenio-app-rdm.
|
|
2
|
-
# Copyright (C)
|
|
2
|
+
# Copyright (C) 2025 CERN
|
|
3
3
|
# This file is distributed under the same license as the invenio-app-rdm
|
|
4
4
|
# project.
|
|
5
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
|
5
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
|
6
6
|
#
|
|
7
7
|
# Translators:
|
|
8
|
-
#
|
|
9
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
8
|
+
# Keziah Okyere, 2025
|
|
9
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2025
|
|
10
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2025
|
|
10
11
|
#
|
|
11
12
|
#, fuzzy
|
|
12
13
|
msgid ""
|
|
13
14
|
msgstr ""
|
|
14
|
-
"Project-Id-Version: invenio-app-rdm
|
|
15
|
+
"Project-Id-Version: invenio-app-rdm 12.0.15\n"
|
|
15
16
|
"Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
|
|
16
|
-
"POT-Creation-Date:
|
|
17
|
+
"POT-Creation-Date: 2025-03-27 16:30+0000\n"
|
|
17
18
|
"PO-Revision-Date: 2020-07-07 14:12+0000\n"
|
|
18
|
-
"Last-Translator:
|
|
19
|
+
"Last-Translator: Alizee Pace <alizee.pace@gmail.com>, 2025\n"
|
|
19
20
|
"Language-Team: French (https://app.transifex.com/inveniosoftware/teams/23537/fr/)\n"
|
|
20
21
|
"MIME-Version: 1.0\n"
|
|
21
22
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
23
|
"Content-Transfer-Encoding: 8bit\n"
|
|
23
|
-
"Generated-By: Babel 2.
|
|
24
|
+
"Generated-By: Babel 2.17.0\n"
|
|
24
25
|
"Language: fr\n"
|
|
25
26
|
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
26
27
|
|
|
27
|
-
#: invenio_app_rdm/config.py:
|
|
28
|
+
#: invenio_app_rdm/config.py:219
|
|
28
29
|
msgid "The turn-key research data management repository"
|
|
29
|
-
msgstr ""
|
|
30
|
+
msgstr "Le référentiel clé en main de gestion des données de recherche"
|
|
30
31
|
|
|
31
|
-
#: invenio_app_rdm/config.py:
|
|
32
|
+
#: invenio_app_rdm/config.py:258
|
|
33
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:16
|
|
32
34
|
msgid "InvenioRDM"
|
|
33
|
-
msgstr ""
|
|
35
|
+
msgstr "InvenioRDM"
|
|
34
36
|
|
|
35
|
-
#: invenio_app_rdm/config.py:
|
|
37
|
+
#: invenio_app_rdm/config.py:353
|
|
36
38
|
msgid "Welcome to Invenio App RDM!"
|
|
37
|
-
msgstr ""
|
|
39
|
+
msgstr "Bienvenue sur Invenio App RDM!"
|
|
38
40
|
|
|
39
|
-
#: invenio_app_rdm/config.py:
|
|
41
|
+
#: invenio_app_rdm/config.py:750
|
|
40
42
|
msgid "JSON"
|
|
41
43
|
msgstr "JSON"
|
|
42
44
|
|
|
43
|
-
#: invenio_app_rdm/config.py:
|
|
45
|
+
#: invenio_app_rdm/config.py:757
|
|
46
|
+
msgid "JSON-LD"
|
|
47
|
+
msgstr "JSON-LD"
|
|
48
|
+
|
|
49
|
+
#: invenio_app_rdm/config.py:765
|
|
44
50
|
msgid "CSL"
|
|
45
|
-
msgstr ""
|
|
51
|
+
msgstr "CSL"
|
|
46
52
|
|
|
47
|
-
#: invenio_app_rdm/config.py:
|
|
53
|
+
#: invenio_app_rdm/config.py:772
|
|
48
54
|
msgid "DataCite JSON"
|
|
49
|
-
msgstr ""
|
|
55
|
+
msgstr "DataCite JSON"
|
|
50
56
|
|
|
51
|
-
#: invenio_app_rdm/config.py:
|
|
57
|
+
#: invenio_app_rdm/config.py:781
|
|
52
58
|
msgid "DataCite XML"
|
|
53
|
-
msgstr ""
|
|
59
|
+
msgstr "DataCite XML"
|
|
54
60
|
|
|
55
|
-
#: invenio_app_rdm/config.py:
|
|
61
|
+
#: invenio_app_rdm/config.py:790
|
|
56
62
|
msgid "Dublin Core XML"
|
|
57
|
-
msgstr ""
|
|
63
|
+
msgstr "Dublin Core XML"
|
|
64
|
+
|
|
65
|
+
#: invenio_app_rdm/config.py:799
|
|
66
|
+
msgid "MARCXML"
|
|
67
|
+
msgstr "MARCXML"
|
|
68
|
+
|
|
69
|
+
#: invenio_app_rdm/config.py:806
|
|
70
|
+
msgid "BibTeX"
|
|
71
|
+
msgstr "BibTeX"
|
|
72
|
+
|
|
73
|
+
#: invenio_app_rdm/config.py:813
|
|
74
|
+
msgid "GeoJSON"
|
|
75
|
+
msgstr "GeoJSON"
|
|
76
|
+
|
|
77
|
+
#: invenio_app_rdm/config.py:820
|
|
78
|
+
msgid "DCAT"
|
|
79
|
+
msgstr "DCAT"
|
|
58
80
|
|
|
59
|
-
#: invenio_app_rdm/config.py:
|
|
81
|
+
#: invenio_app_rdm/config.py:827
|
|
82
|
+
msgid "Codemeta"
|
|
83
|
+
msgstr "Codemeta"
|
|
84
|
+
|
|
85
|
+
#: invenio_app_rdm/config.py:834
|
|
86
|
+
msgid "Citation File Format"
|
|
87
|
+
msgstr "Format Fichier Citation"
|
|
88
|
+
|
|
89
|
+
#: invenio_app_rdm/config.py:996
|
|
60
90
|
msgid "APA"
|
|
61
|
-
msgstr ""
|
|
91
|
+
msgstr "APA"
|
|
62
92
|
|
|
63
|
-
#: invenio_app_rdm/config.py:
|
|
93
|
+
#: invenio_app_rdm/config.py:997
|
|
64
94
|
msgid "Harvard"
|
|
65
|
-
msgstr ""
|
|
95
|
+
msgstr "Harvard"
|
|
66
96
|
|
|
67
|
-
#: invenio_app_rdm/config.py:
|
|
97
|
+
#: invenio_app_rdm/config.py:998
|
|
68
98
|
msgid "MLA"
|
|
69
|
-
msgstr ""
|
|
99
|
+
msgstr "MLA"
|
|
70
100
|
|
|
71
|
-
#: invenio_app_rdm/config.py:
|
|
101
|
+
#: invenio_app_rdm/config.py:999
|
|
72
102
|
msgid "Vancouver"
|
|
73
|
-
msgstr ""
|
|
103
|
+
msgstr "Vancouver"
|
|
74
104
|
|
|
75
|
-
#: invenio_app_rdm/config.py:
|
|
105
|
+
#: invenio_app_rdm/config.py:1000
|
|
76
106
|
msgid "Chicago"
|
|
77
|
-
msgstr ""
|
|
107
|
+
msgstr "Chicago"
|
|
78
108
|
|
|
79
|
-
#: invenio_app_rdm/config.py:
|
|
109
|
+
#: invenio_app_rdm/config.py:1001
|
|
80
110
|
msgid "IEEE"
|
|
111
|
+
msgstr "IEEE"
|
|
112
|
+
|
|
113
|
+
#: invenio_app_rdm/ext.py:57
|
|
114
|
+
msgid "My dashboard"
|
|
115
|
+
msgstr "Mon tableau de bord"
|
|
116
|
+
|
|
117
|
+
#: invenio_app_rdm/ext.py:63
|
|
118
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:14
|
|
119
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:28
|
|
120
|
+
msgid "New upload"
|
|
121
|
+
msgstr "Nouveau téléchargement"
|
|
122
|
+
|
|
123
|
+
#: invenio_app_rdm/ext.py:77
|
|
124
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html:8
|
|
125
|
+
msgid "Uploads"
|
|
126
|
+
msgstr "Transferts"
|
|
127
|
+
|
|
128
|
+
#: invenio_app_rdm/ext.py:82
|
|
129
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html:15
|
|
130
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html:8
|
|
131
|
+
msgid "Communities"
|
|
132
|
+
msgstr "Communautés"
|
|
133
|
+
|
|
134
|
+
#: invenio_app_rdm/ext.py:87
|
|
135
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:118
|
|
136
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:117
|
|
137
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html:8
|
|
138
|
+
msgid "Requests"
|
|
139
|
+
msgstr "Réservations"
|
|
140
|
+
|
|
141
|
+
#: invenio_app_rdm/ext.py:110
|
|
142
|
+
msgid "Home"
|
|
143
|
+
msgstr "Accueil"
|
|
144
|
+
|
|
145
|
+
#: invenio_app_rdm/administration/records/records.py:26
|
|
146
|
+
#: invenio_app_rdm/administration/records/records.py:27
|
|
147
|
+
#: invenio_app_rdm/ext.py:118
|
|
148
|
+
msgid "Records"
|
|
149
|
+
msgstr "Notices"
|
|
150
|
+
|
|
151
|
+
#: invenio_app_rdm/ext.py:125
|
|
152
|
+
msgid "Submit"
|
|
153
|
+
msgstr "Soumettre"
|
|
154
|
+
|
|
155
|
+
#: invenio_app_rdm/administration/domains/domains.py:41
|
|
156
|
+
#: invenio_app_rdm/administration/domains/domains.py:42
|
|
157
|
+
msgid "Domains"
|
|
158
|
+
msgstr "Domaines"
|
|
159
|
+
|
|
160
|
+
#: invenio_app_rdm/administration/domains/domains.py:43
|
|
161
|
+
msgid "Site management"
|
|
162
|
+
msgstr "Gestion du site"
|
|
163
|
+
|
|
164
|
+
#: invenio_app_rdm/administration/domains/domains.py:47
|
|
165
|
+
#: invenio_app_rdm/administration/domains/domains.py:74
|
|
166
|
+
#: invenio_app_rdm/administration/domains/domains.py:144
|
|
167
|
+
msgid "Domain"
|
|
168
|
+
msgstr "Domaine"
|
|
169
|
+
|
|
170
|
+
#: invenio_app_rdm/administration/domains/domains.py:48
|
|
171
|
+
msgid "TLD"
|
|
172
|
+
msgstr "TLD"
|
|
173
|
+
|
|
174
|
+
#: invenio_app_rdm/administration/domains/domains.py:49
|
|
175
|
+
#: invenio_app_rdm/administration/domains/domains.py:80
|
|
176
|
+
#: invenio_app_rdm/administration/domains/domains.py:146
|
|
177
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:68
|
|
178
|
+
#: invenio_app_rdm/administration/users/users.py:24
|
|
179
|
+
#: invenio_app_rdm/administration/users/users.py:35
|
|
180
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:28
|
|
181
|
+
msgid "Status"
|
|
182
|
+
msgstr "Statut"
|
|
183
|
+
|
|
184
|
+
#: invenio_app_rdm/administration/domains/domains.py:50
|
|
185
|
+
#: invenio_app_rdm/administration/domains/domains.py:153
|
|
186
|
+
#: invenio_app_rdm/administration/users/users.py:57
|
|
187
|
+
msgid "Users"
|
|
188
|
+
msgstr "Utilisateurs"
|
|
189
|
+
|
|
190
|
+
#: invenio_app_rdm/administration/domains/domains.py:51
|
|
191
|
+
#: invenio_app_rdm/administration/domains/domains.py:154
|
|
192
|
+
#: invenio_app_rdm/administration/users/users.py:37
|
|
193
|
+
msgid "Active"
|
|
194
|
+
msgstr "Actif"
|
|
195
|
+
|
|
196
|
+
#: invenio_app_rdm/administration/domains/domains.py:52
|
|
197
|
+
#: invenio_app_rdm/administration/domains/domains.py:155
|
|
198
|
+
msgid "Inactive"
|
|
199
|
+
msgstr "Inactif"
|
|
200
|
+
|
|
201
|
+
#: invenio_app_rdm/administration/domains/domains.py:53
|
|
202
|
+
#: invenio_app_rdm/administration/domains/domains.py:156
|
|
203
|
+
msgid "Confirmed"
|
|
204
|
+
msgstr "Confirmé"
|
|
205
|
+
|
|
206
|
+
#: invenio_app_rdm/administration/domains/domains.py:54
|
|
207
|
+
#: invenio_app_rdm/administration/domains/domains.py:157
|
|
208
|
+
msgid "Verified"
|
|
209
|
+
msgstr "Vérifié"
|
|
210
|
+
|
|
211
|
+
#: invenio_app_rdm/administration/domains/domains.py:55
|
|
212
|
+
#: invenio_app_rdm/administration/domains/domains.py:158
|
|
213
|
+
msgid "Blocked"
|
|
214
|
+
msgstr "Bloqué"
|
|
215
|
+
|
|
216
|
+
#: invenio_app_rdm/administration/domains/domains.py:75
|
|
217
|
+
msgid "Domain name (all lowercase)"
|
|
218
|
+
msgstr "Nom de domaine (toutes minuscules)"
|
|
219
|
+
|
|
220
|
+
#: invenio_app_rdm/administration/domains/domains.py:82
|
|
221
|
+
msgid ""
|
|
222
|
+
"Status of the domain. One of new (domain needs review), moderated (users in "
|
|
223
|
+
"domain require moderation), verified (users in domain does not require "
|
|
224
|
+
"moderation) or blocked (users cannot register using this domain)."
|
|
225
|
+
msgstr ""
|
|
226
|
+
"Statut du domaine. L'un des nouveaux (domaine a besoin de révision), modéré "
|
|
227
|
+
"(utilisateurs dans le domaine nécessitent une modération), vérifié "
|
|
228
|
+
"(utilisateurs dans le domaine ne nécessite pas de modération) ou bloqué (les"
|
|
229
|
+
" utilisateurs ne peuvent pas s'inscrire en utilisant ce domaine)."
|
|
230
|
+
|
|
231
|
+
#: invenio_app_rdm/administration/domains/domains.py:94
|
|
232
|
+
#: invenio_app_rdm/administration/domains/domains.py:147
|
|
233
|
+
msgid "Category"
|
|
234
|
+
msgstr "Catégorie"
|
|
235
|
+
|
|
236
|
+
#: invenio_app_rdm/administration/domains/domains.py:95
|
|
237
|
+
msgid "A label to categorise the domain."
|
|
238
|
+
msgstr "Un label pour catégoriser le domaine."
|
|
239
|
+
|
|
240
|
+
#: invenio_app_rdm/administration/domains/domains.py:107
|
|
241
|
+
#: invenio_app_rdm/administration/domains/domains.py:148
|
|
242
|
+
msgid "Flagged"
|
|
243
|
+
msgstr "Drapeau"
|
|
244
|
+
|
|
245
|
+
#: invenio_app_rdm/administration/domains/domains.py:109
|
|
246
|
+
msgid "Used by automatic processes to flag the domain as requiring review."
|
|
247
|
+
msgstr ""
|
|
248
|
+
"Utilisé par les processus automatiques pour marquer le domaine comme "
|
|
249
|
+
"nécessitant une révision."
|
|
250
|
+
|
|
251
|
+
#: invenio_app_rdm/administration/domains/domains.py:114
|
|
252
|
+
#: invenio_app_rdm/administration/domains/domains.py:149
|
|
253
|
+
msgid "Source of flag"
|
|
254
|
+
msgstr "Source du drapeau"
|
|
255
|
+
|
|
256
|
+
#: invenio_app_rdm/administration/domains/domains.py:115
|
|
257
|
+
msgid "Which source flagged the domain."
|
|
258
|
+
msgstr "Quelle source a signalé le domaine."
|
|
259
|
+
|
|
260
|
+
#: invenio_app_rdm/administration/domains/domains.py:125
|
|
261
|
+
msgid "Create domain"
|
|
262
|
+
msgstr "Créer un domaine"
|
|
263
|
+
|
|
264
|
+
#: invenio_app_rdm/administration/domains/domains.py:133
|
|
265
|
+
msgid "Edit domain"
|
|
266
|
+
msgstr "Modifier le domaine"
|
|
267
|
+
|
|
268
|
+
#: invenio_app_rdm/administration/domains/domains.py:141
|
|
269
|
+
msgid "Domain details"
|
|
270
|
+
msgstr "Détails du domaine"
|
|
271
|
+
|
|
272
|
+
#: invenio_app_rdm/administration/domains/domains.py:145
|
|
273
|
+
msgid "Top-level domain"
|
|
274
|
+
msgstr "Domaine de premier niveau"
|
|
275
|
+
|
|
276
|
+
#: invenio_app_rdm/administration/domains/domains.py:150
|
|
277
|
+
#: invenio_app_rdm/administration/records/records.py:41
|
|
278
|
+
#: invenio_app_rdm/administration/records/records.py:120
|
|
279
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:172
|
|
280
|
+
#: invenio_app_rdm/administration/users/users.py:25
|
|
281
|
+
#: invenio_app_rdm/administration/users/users.py:41
|
|
282
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:10
|
|
283
|
+
msgid "Created"
|
|
284
|
+
msgstr "Créé"
|
|
285
|
+
|
|
286
|
+
#: invenio_app_rdm/administration/domains/domains.py:151
|
|
287
|
+
#: invenio_app_rdm/administration/users/users.py:26
|
|
288
|
+
#: invenio_app_rdm/administration/users/users.py:42
|
|
289
|
+
msgid "Updated"
|
|
290
|
+
msgstr "Mis à jour"
|
|
291
|
+
|
|
292
|
+
#: invenio_app_rdm/administration/domains/domains.py:152
|
|
293
|
+
msgid "Organisation"
|
|
294
|
+
msgstr "Organisation"
|
|
295
|
+
|
|
296
|
+
#: invenio_app_rdm/administration/records/records.py:28
|
|
297
|
+
#: invenio_app_rdm/administration/records/records.py:107
|
|
298
|
+
msgid "Records & files"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#: invenio_app_rdm/administration/records/records.py:39
|
|
302
|
+
#: invenio_app_rdm/administration/records/records.py:118
|
|
303
|
+
msgid "Title"
|
|
304
|
+
msgstr "Titre"
|
|
305
|
+
|
|
306
|
+
#: invenio_app_rdm/administration/records/records.py:40
|
|
307
|
+
#: invenio_app_rdm/administration/records/records.py:119
|
|
308
|
+
msgid "Owner"
|
|
309
|
+
msgstr "Propriétaire"
|
|
310
|
+
|
|
311
|
+
#: invenio_app_rdm/administration/records/records.py:42
|
|
312
|
+
#: invenio_app_rdm/administration/records/records.py:121
|
|
313
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:271
|
|
314
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:276
|
|
315
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:293
|
|
316
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:142
|
|
317
|
+
msgid "Files"
|
|
318
|
+
msgstr "Fichiers"
|
|
319
|
+
|
|
320
|
+
#: invenio_app_rdm/administration/records/records.py:43
|
|
321
|
+
#: invenio_app_rdm/administration/records/records.py:122
|
|
322
|
+
msgid "Stats"
|
|
323
|
+
msgstr "Statistiques"
|
|
324
|
+
|
|
325
|
+
#: invenio_app_rdm/administration/records/records.py:48
|
|
326
|
+
msgid "Delete record"
|
|
327
|
+
msgstr "Supprimer l'enregistrement"
|
|
328
|
+
|
|
329
|
+
#: invenio_app_rdm/administration/records/records.py:53
|
|
330
|
+
msgid "Restore record"
|
|
331
|
+
msgstr "Restaurer l'enregistrement"
|
|
332
|
+
|
|
333
|
+
#: invenio_app_rdm/administration/records/records.py:105
|
|
334
|
+
#: invenio_app_rdm/administration/records/records.py:106
|
|
335
|
+
msgid "Drafts"
|
|
81
336
|
msgstr ""
|
|
82
337
|
|
|
83
|
-
#: invenio_app_rdm/
|
|
84
|
-
msgid "
|
|
85
|
-
msgstr "
|
|
338
|
+
#: invenio_app_rdm/administration/records/records.py:127
|
|
339
|
+
msgid "Set quota"
|
|
340
|
+
msgstr "Fixer le quota"
|
|
86
341
|
|
|
87
|
-
#: invenio_app_rdm/
|
|
88
|
-
#: invenio_app_rdm/
|
|
89
|
-
#: invenio_app_rdm/
|
|
90
|
-
msgid "
|
|
91
|
-
msgstr "
|
|
342
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:29
|
|
343
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:30
|
|
344
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:31
|
|
345
|
+
msgid "Moderation"
|
|
346
|
+
msgstr ""
|
|
92
347
|
|
|
93
|
-
#: invenio_app_rdm/
|
|
94
|
-
|
|
348
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:45
|
|
349
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:168
|
|
350
|
+
#: invenio_app_rdm/administration/users/users.py:21
|
|
351
|
+
msgid "User"
|
|
352
|
+
msgstr "Utilisateur"
|
|
353
|
+
|
|
354
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:51
|
|
355
|
+
#: invenio_app_rdm/administration/users/users.py:23
|
|
356
|
+
#: invenio_app_rdm/administration/users/users.py:33
|
|
357
|
+
msgid "Email"
|
|
358
|
+
msgstr "Email"
|
|
359
|
+
|
|
360
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:57
|
|
361
|
+
msgid "Email domain"
|
|
362
|
+
msgstr "Domaine d'email"
|
|
363
|
+
|
|
364
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:63
|
|
365
|
+
msgid "Activity"
|
|
95
366
|
msgstr ""
|
|
96
367
|
|
|
97
|
-
#: invenio_app_rdm/
|
|
98
|
-
#: invenio_app_rdm/
|
|
99
|
-
msgid "
|
|
368
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:76
|
|
369
|
+
#: invenio_app_rdm/administration/users/users.py:78
|
|
370
|
+
msgid "Approve"
|
|
371
|
+
msgstr "Approuver"
|
|
372
|
+
|
|
373
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:81
|
|
374
|
+
#: invenio_app_rdm/administration/users/users.py:88
|
|
375
|
+
msgid "Block"
|
|
376
|
+
msgstr "Bloquer"
|
|
377
|
+
|
|
378
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:141
|
|
379
|
+
msgid "User moderation"
|
|
380
|
+
msgstr "Modération des utilisateurs"
|
|
381
|
+
|
|
382
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:164
|
|
383
|
+
#: invenio_app_rdm/administration/users/users.py:31
|
|
384
|
+
msgid "ID"
|
|
385
|
+
msgstr "ID"
|
|
386
|
+
|
|
387
|
+
#: invenio_app_rdm/administration/user_moderation/user_moderation.py:173
|
|
388
|
+
msgid "Open"
|
|
389
|
+
msgstr "Ouvrir"
|
|
390
|
+
|
|
391
|
+
#: invenio_app_rdm/administration/users/users.py:22
|
|
392
|
+
#: invenio_app_rdm/administration/users/users.py:32
|
|
393
|
+
msgid "Username"
|
|
394
|
+
msgstr "Nom d'utilisateur"
|
|
395
|
+
|
|
396
|
+
#: invenio_app_rdm/administration/users/users.py:34
|
|
397
|
+
msgid "Domain "
|
|
398
|
+
msgstr "Domaine"
|
|
399
|
+
|
|
400
|
+
#: invenio_app_rdm/administration/users/users.py:36
|
|
401
|
+
msgid "Visibility"
|
|
402
|
+
msgstr "Visibilité"
|
|
403
|
+
|
|
404
|
+
#: invenio_app_rdm/administration/users/users.py:38
|
|
405
|
+
msgid "Confirmed at"
|
|
406
|
+
msgstr "Confirmé à"
|
|
407
|
+
|
|
408
|
+
#: invenio_app_rdm/administration/users/users.py:39
|
|
409
|
+
msgid "Verified at"
|
|
410
|
+
msgstr "Vérifié à"
|
|
411
|
+
|
|
412
|
+
#: invenio_app_rdm/administration/users/users.py:40
|
|
413
|
+
msgid "Blocked at"
|
|
414
|
+
msgstr "Bloqué à"
|
|
415
|
+
|
|
416
|
+
#: invenio_app_rdm/administration/users/users.py:56
|
|
417
|
+
#: invenio_app_rdm/administration/users/users.py:58
|
|
418
|
+
msgid "User management"
|
|
100
419
|
msgstr ""
|
|
101
420
|
|
|
102
|
-
#: invenio_app_rdm/
|
|
421
|
+
#: invenio_app_rdm/administration/users/users.py:83
|
|
422
|
+
msgid "Restore"
|
|
423
|
+
msgstr "Restaurer"
|
|
424
|
+
|
|
425
|
+
#: invenio_app_rdm/administration/users/users.py:93
|
|
426
|
+
msgid "Suspend"
|
|
427
|
+
msgstr "Suspendre"
|
|
428
|
+
|
|
429
|
+
#: invenio_app_rdm/administration/users/users.py:129
|
|
430
|
+
msgid "User details"
|
|
431
|
+
msgstr "Détails de l'utilisateur"
|
|
432
|
+
|
|
433
|
+
#: invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html:12
|
|
434
|
+
msgid "Search "
|
|
435
|
+
msgstr "Chercher"
|
|
436
|
+
|
|
437
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:12
|
|
438
|
+
msgid "New version"
|
|
439
|
+
msgstr "Nouvelle version"
|
|
440
|
+
|
|
441
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html:16
|
|
103
442
|
msgid "Edit upload"
|
|
104
|
-
msgstr ""
|
|
443
|
+
msgstr "Modifier le téléchargement"
|
|
105
444
|
|
|
106
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
445
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:51
|
|
107
446
|
msgid "Information banner"
|
|
108
|
-
msgstr ""
|
|
447
|
+
msgstr "Bannière d'information"
|
|
109
448
|
|
|
110
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
449
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:76
|
|
111
450
|
msgid "Community visibility"
|
|
112
|
-
msgstr ""
|
|
451
|
+
msgstr "Visibilité communautaire"
|
|
113
452
|
|
|
114
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
453
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:77
|
|
115
454
|
msgid "The community is restricted to users with access."
|
|
116
|
-
msgstr ""
|
|
455
|
+
msgstr "La communauté est réservée aux utilisateurs ayant accès."
|
|
117
456
|
|
|
118
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
457
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:79
|
|
119
458
|
msgid "Restricted"
|
|
120
459
|
msgstr "Restreint"
|
|
121
460
|
|
|
122
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
123
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
124
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
461
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:96
|
|
462
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:24
|
|
463
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:121
|
|
125
464
|
msgid "Preview"
|
|
126
|
-
msgstr ""
|
|
465
|
+
msgstr "Aperçu"
|
|
127
466
|
|
|
128
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
467
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:100
|
|
129
468
|
msgid "You are previewing a published record."
|
|
130
|
-
msgstr ""
|
|
469
|
+
msgstr "Vous prévisualisez un enregistrement publié."
|
|
131
470
|
|
|
132
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
471
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:102
|
|
133
472
|
msgid "You are previewing changes that have not yet been published."
|
|
134
473
|
msgstr ""
|
|
474
|
+
"Vous prévisualisez les modifications qui n'ont pas encore été publiées."
|
|
135
475
|
|
|
136
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
476
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:104
|
|
137
477
|
msgid "You are previewing a new record that has not yet been published."
|
|
138
478
|
msgstr ""
|
|
479
|
+
"Vous prévisualisez un nouvel enregistrement qui n'a pas encore été publié."
|
|
139
480
|
|
|
140
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
481
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:106
|
|
141
482
|
msgid ""
|
|
142
483
|
"You are previewing a new record version that has not yet been published."
|
|
143
484
|
msgstr ""
|
|
485
|
+
"Vous prévisualisez une nouvelle version d'enregistrement qui n'a pas encore "
|
|
486
|
+
"été publiée."
|
|
144
487
|
|
|
145
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
488
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:121
|
|
146
489
|
#, python-format
|
|
147
490
|
msgid ""
|
|
148
491
|
"\n"
|
|
149
|
-
" There is a %(link_start)snewer version%(link_end)s of the record
|
|
492
|
+
" There is a %(link_start)snewer version%(link_end)s of the record\n"
|
|
493
|
+
" available.\n"
|
|
150
494
|
" "
|
|
151
495
|
msgstr ""
|
|
496
|
+
"\n"
|
|
497
|
+
"Une version %(link_start)s plus récente de %(link_end)s l'enregistrement est disponible."
|
|
152
498
|
|
|
153
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
499
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:145
|
|
154
500
|
msgid "Record access information"
|
|
155
|
-
msgstr ""
|
|
501
|
+
msgstr "Enregistrer l'information d'accès"
|
|
156
502
|
|
|
157
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
158
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
159
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
503
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:152
|
|
504
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:309
|
|
505
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:155
|
|
506
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:185
|
|
160
507
|
msgid "Reason"
|
|
161
|
-
msgstr ""
|
|
508
|
+
msgstr "Raison"
|
|
162
509
|
|
|
163
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
510
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:165
|
|
164
511
|
msgid "Back-navigation"
|
|
165
|
-
msgstr ""
|
|
512
|
+
msgstr "Rétro-navigation"
|
|
166
513
|
|
|
167
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
514
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:167
|
|
168
515
|
msgid "Back to edit"
|
|
169
|
-
msgstr ""
|
|
516
|
+
msgstr "Retour à modifier"
|
|
170
517
|
|
|
171
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
518
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:185
|
|
172
519
|
msgid "Manage record"
|
|
173
|
-
msgstr ""
|
|
520
|
+
msgstr "Gérer les enregistrements"
|
|
174
521
|
|
|
175
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
522
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:201
|
|
176
523
|
msgid "Publication date and version number"
|
|
177
|
-
msgstr ""
|
|
524
|
+
msgstr "Date de publication et numéro de version"
|
|
178
525
|
|
|
179
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
526
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:205
|
|
180
527
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:25
|
|
181
528
|
msgid "Publication date"
|
|
182
529
|
msgstr "Date de publication"
|
|
183
530
|
|
|
184
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
531
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:206
|
|
185
532
|
msgid "Published"
|
|
186
533
|
msgstr "Publié"
|
|
187
534
|
|
|
188
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
535
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:209
|
|
536
|
+
#, python-brace-format
|
|
189
537
|
msgid "Version {version_number}"
|
|
190
|
-
msgstr ""
|
|
538
|
+
msgstr "Version {version_number}"
|
|
191
539
|
|
|
192
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
540
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:216
|
|
193
541
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:24
|
|
194
542
|
msgid "Resource type"
|
|
195
|
-
msgstr ""
|
|
543
|
+
msgstr "Type de ressource"
|
|
196
544
|
|
|
197
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
545
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:226
|
|
198
546
|
msgid "Access status"
|
|
199
|
-
msgstr ""
|
|
547
|
+
msgstr "Statut d'accès"
|
|
200
548
|
|
|
201
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
549
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:248
|
|
202
550
|
msgid "Record title and creators"
|
|
203
|
-
msgstr ""
|
|
551
|
+
msgstr "Titre et créateurs de disques"
|
|
204
552
|
|
|
205
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
553
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:254
|
|
206
554
|
msgid "Creators and contributors"
|
|
555
|
+
msgstr "Créateurs et contributeurs"
|
|
556
|
+
|
|
557
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:315
|
|
558
|
+
msgid "Request access"
|
|
559
|
+
msgstr "Demander l'accès"
|
|
560
|
+
|
|
561
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:317
|
|
562
|
+
msgid ""
|
|
563
|
+
"If you would like to request access to these files, please fill out the form"
|
|
564
|
+
" below."
|
|
207
565
|
msgstr ""
|
|
566
|
+
"Si vous souhaitez demander l'accès à ces fichiers, veuillez remplir le "
|
|
567
|
+
"formulaire ci-dessous."
|
|
208
568
|
|
|
209
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
210
|
-
msgid "
|
|
569
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:325
|
|
570
|
+
msgid ""
|
|
571
|
+
"You need to satisfy these conditions in order for this request to be "
|
|
572
|
+
"accepted:"
|
|
211
573
|
msgstr ""
|
|
574
|
+
"Vous devez remplir ces conditions pour que cette demande soit acceptée:"
|
|
212
575
|
|
|
213
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
214
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
msgid "Files"
|
|
218
|
-
msgstr "Fichiers"
|
|
576
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:350
|
|
577
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:171
|
|
578
|
+
msgid "System files"
|
|
579
|
+
msgstr "Fichiers système"
|
|
219
580
|
|
|
220
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
581
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:363
|
|
221
582
|
msgid "Additional record details"
|
|
222
|
-
msgstr ""
|
|
583
|
+
msgstr "Détails d'enregistrement supplémentaires"
|
|
223
584
|
|
|
224
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
225
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:16
|
|
585
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:377
|
|
226
586
|
msgid "Record details"
|
|
227
|
-
msgstr ""
|
|
587
|
+
msgstr "Enregistrer les détails"
|
|
228
588
|
|
|
229
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
230
|
-
msgid "
|
|
231
|
-
msgstr ""
|
|
589
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:394
|
|
590
|
+
msgid "Jump to top of page"
|
|
591
|
+
msgstr "Aller en haut de la page"
|
|
232
592
|
|
|
233
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:
|
|
234
|
-
msgid "
|
|
235
|
-
msgstr ""
|
|
593
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html:396
|
|
594
|
+
msgid "Jump up"
|
|
595
|
+
msgstr "Sauter vers le haut"
|
|
236
596
|
|
|
237
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
238
|
-
|
|
239
|
-
|
|
597
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:10
|
|
598
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:14
|
|
599
|
+
msgid "Draft not found"
|
|
600
|
+
msgstr "Projet non trouvé"
|
|
240
601
|
|
|
241
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
242
|
-
msgid "
|
|
602
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:15
|
|
603
|
+
msgid ""
|
|
604
|
+
"This record has already been published and is not currently being edited, so"
|
|
605
|
+
" no draft exists."
|
|
243
606
|
msgstr ""
|
|
607
|
+
"Cet enregistrement a déjà été publié et n'est pas en cours d'édition, donc "
|
|
608
|
+
"aucun brouillon n'existe."
|
|
244
609
|
|
|
245
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
246
|
-
msgid "
|
|
247
|
-
msgstr ""
|
|
610
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html:16
|
|
611
|
+
msgid "Go to published record"
|
|
612
|
+
msgstr "Aller au dossier publié"
|
|
248
613
|
|
|
249
614
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html:18
|
|
250
615
|
msgid "Back to details"
|
|
251
|
-
msgstr ""
|
|
616
|
+
msgstr "Retour aux détails"
|
|
252
617
|
|
|
253
618
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html:13
|
|
254
619
|
msgid "Preview for"
|
|
620
|
+
msgstr "Aperçu pour"
|
|
621
|
+
|
|
622
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:14
|
|
623
|
+
msgid "Permission required"
|
|
624
|
+
msgstr "Autorisation requise"
|
|
625
|
+
|
|
626
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:18
|
|
627
|
+
msgid ""
|
|
628
|
+
"The record was previously accessible to the public but is now restricted to "
|
|
629
|
+
"users with access."
|
|
630
|
+
msgstr ""
|
|
631
|
+
"L'enregistrement était auparavant accessible au public, mais il est "
|
|
632
|
+
"maintenant réservé aux utilisateurs qui y ont accès."
|
|
633
|
+
|
|
634
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:20
|
|
635
|
+
msgid ""
|
|
636
|
+
"The Digital Object Identifier (DOI) associated with this record remains "
|
|
637
|
+
"active for reference."
|
|
255
638
|
msgstr ""
|
|
639
|
+
"Le Digital Object Identifier (DOI) associé à cet enregistrement reste actif "
|
|
640
|
+
"pour référence."
|
|
641
|
+
|
|
642
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html:27
|
|
643
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:55
|
|
644
|
+
msgid "Identifier:"
|
|
645
|
+
msgstr "Identificateur:"
|
|
256
646
|
|
|
257
647
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html:8
|
|
258
648
|
msgid "Search results"
|
|
259
|
-
msgstr ""
|
|
649
|
+
msgstr "Résultats de recherche"
|
|
260
650
|
|
|
261
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
651
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:10
|
|
262
652
|
msgid "Tombstone"
|
|
263
|
-
msgstr ""
|
|
653
|
+
msgstr "Tombeau"
|
|
654
|
+
|
|
655
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:11
|
|
656
|
+
msgid "Reason unknown"
|
|
657
|
+
msgstr "Raison inconnue"
|
|
264
658
|
|
|
265
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
659
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:21
|
|
266
660
|
msgid "Gone"
|
|
267
|
-
msgstr ""
|
|
661
|
+
msgstr "Parti"
|
|
268
662
|
|
|
269
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:
|
|
663
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:26
|
|
270
664
|
#, python-format
|
|
271
665
|
msgid ""
|
|
272
666
|
"\n"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
" "
|
|
667
|
+
" The record you are trying to access was removed from %(sitename)s. The\n"
|
|
668
|
+
" metadata of the record is kept for archival purposes."
|
|
276
669
|
msgstr ""
|
|
670
|
+
"\n"
|
|
671
|
+
"L'enregistrement auquel vous essayez d'accéder a été supprimé de %(sitename)s. Le\n"
|
|
672
|
+
"les métadonnées du dossier sont conservées à des fins d'archivage."
|
|
277
673
|
|
|
278
|
-
#: 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
|
|
279
675
|
msgid "Reason for removal:"
|
|
676
|
+
msgstr "Motif du retrait:"
|
|
677
|
+
|
|
678
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:38
|
|
679
|
+
msgid "Removed by:"
|
|
680
|
+
msgstr "Supprimé par:"
|
|
681
|
+
|
|
682
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:42
|
|
683
|
+
msgid "Removal note:"
|
|
684
|
+
msgstr "Note de suppression:"
|
|
685
|
+
|
|
686
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:46
|
|
687
|
+
msgid "Date of removal:"
|
|
688
|
+
msgstr "Date de retrait:"
|
|
689
|
+
|
|
690
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html:50
|
|
691
|
+
msgid "Citation:"
|
|
692
|
+
msgstr "Citation:"
|
|
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"
|
|
280
696
|
msgstr ""
|
|
281
697
|
|
|
282
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
283
|
-
|
|
284
|
-
msgid "Creators list"
|
|
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?"
|
|
285
700
|
msgstr ""
|
|
286
701
|
|
|
287
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
288
|
-
msgid "
|
|
702
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:17
|
|
703
|
+
msgid "Log in here"
|
|
289
704
|
msgstr ""
|
|
290
705
|
|
|
291
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
292
|
-
msgid "
|
|
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 "Vous êtes connecté comme"
|
|
709
|
+
|
|
710
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html:30
|
|
711
|
+
msgid "Not you?"
|
|
293
712
|
msgstr ""
|
|
294
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 "Déconnexion"
|
|
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
|
|
731
|
+
msgid "Creators"
|
|
732
|
+
msgstr "Créateurs"
|
|
733
|
+
|
|
734
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html:34
|
|
735
|
+
msgid "Contributors"
|
|
736
|
+
msgstr "Contributeurs"
|
|
737
|
+
|
|
295
738
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:14
|
|
296
739
|
msgid "Record description"
|
|
297
|
-
msgstr ""
|
|
740
|
+
msgstr "Description du document"
|
|
298
741
|
|
|
299
742
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html:15
|
|
300
743
|
msgid "Description"
|
|
301
744
|
msgstr "Description"
|
|
302
745
|
|
|
303
|
-
#: 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
|
|
304
747
|
msgid "Additional details"
|
|
305
748
|
msgstr "Détails additionnels"
|
|
306
749
|
|
|
307
|
-
#: 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
|
|
308
752
|
msgid "Additional titles"
|
|
309
|
-
msgstr ""
|
|
753
|
+
msgstr "Titres supplémentaires"
|
|
310
754
|
|
|
311
|
-
#: 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
|
|
312
757
|
msgid "Identifiers"
|
|
313
|
-
msgstr ""
|
|
758
|
+
msgstr "Identifiants"
|
|
314
759
|
|
|
315
|
-
#: 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
|
|
316
762
|
msgid "Related works"
|
|
317
|
-
msgstr ""
|
|
763
|
+
msgstr "Les travaux connexes"
|
|
318
764
|
|
|
319
|
-
#: 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
|
|
320
767
|
msgid "Funding"
|
|
321
|
-
msgstr ""
|
|
768
|
+
msgstr "Financement"
|
|
322
769
|
|
|
323
|
-
#: 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
|
|
324
772
|
msgid "Dates"
|
|
325
|
-
msgstr ""
|
|
773
|
+
msgstr "Dates"
|
|
326
774
|
|
|
327
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html:
|
|
328
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/
|
|
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
|
|
329
777
|
msgid "References"
|
|
330
778
|
msgstr "Références"
|
|
331
779
|
|
|
332
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
333
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
334
|
-
msgid "
|
|
335
|
-
msgstr ""
|
|
336
|
-
|
|
337
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
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 "Vues"
|
|
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 "Téléchargements"
|
|
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 "Afficher plus de détails"
|
|
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 "Afficher moins de détails"
|
|
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 "Toutes versions"
|
|
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 "Ces versions"
|
|
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 "Plus d'infos"
|
|
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 vues"
|
|
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 téléchargements"
|
|
826
|
+
|
|
827
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html:95
|
|
828
|
+
msgid "Data volume"
|
|
829
|
+
msgstr "Volume de données"
|
|
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 "Volume total de données"
|
|
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 ""
|
|
838
|
+
"Plus d'informations sur la façon dont les statistiques sont collectées."
|
|
344
839
|
|
|
345
840
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:15
|
|
346
841
|
msgid "Keywords"
|
|
347
842
|
msgstr "Mot clé"
|
|
348
843
|
|
|
349
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
350
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:
|
|
844
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:22
|
|
845
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html:39
|
|
351
846
|
msgid "Search results for "
|
|
352
|
-
msgstr ""
|
|
847
|
+
msgstr "Résultats de recherche pour "
|
|
848
|
+
|
|
849
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html:2
|
|
850
|
+
msgid "Citation"
|
|
851
|
+
msgstr "Citation"
|
|
353
852
|
|
|
354
853
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:17
|
|
355
854
|
msgid "Details"
|
|
356
|
-
msgstr ""
|
|
855
|
+
msgstr "Détails"
|
|
357
856
|
|
|
358
857
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:26
|
|
359
858
|
msgid "Publisher"
|
|
360
859
|
msgstr "Éditeur"
|
|
361
860
|
|
|
362
861
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:27
|
|
363
|
-
msgid "
|
|
364
|
-
msgstr ""
|
|
862
|
+
msgid "Published in"
|
|
863
|
+
msgstr "Publié dans"
|
|
365
864
|
|
|
366
865
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:28
|
|
367
|
-
msgid "
|
|
368
|
-
msgstr ""
|
|
866
|
+
msgid "Imprint"
|
|
867
|
+
msgstr "Imprint"
|
|
369
868
|
|
|
370
869
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:29
|
|
870
|
+
msgid "Awarding university"
|
|
871
|
+
msgstr "Attribution de l'université"
|
|
872
|
+
|
|
873
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:30
|
|
874
|
+
msgid "Conference"
|
|
875
|
+
msgstr "Conférence"
|
|
876
|
+
|
|
877
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:31
|
|
878
|
+
msgid "Languages"
|
|
879
|
+
msgstr "Langues"
|
|
880
|
+
|
|
881
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:32
|
|
882
|
+
msgid "Formats"
|
|
883
|
+
msgstr "Formats"
|
|
884
|
+
|
|
885
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html:33
|
|
371
886
|
msgid "Sizes"
|
|
372
|
-
msgstr ""
|
|
887
|
+
msgstr "Tailles"
|
|
373
888
|
|
|
374
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:13
|
|
375
889
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html:14
|
|
376
890
|
msgid "Export"
|
|
377
891
|
msgstr "Exporter"
|
|
378
892
|
|
|
379
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
893
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:9
|
|
894
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html:10
|
|
895
|
+
msgid "External resources"
|
|
896
|
+
msgstr "Ressources externes"
|
|
897
|
+
|
|
380
898
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:13
|
|
899
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html:14
|
|
381
900
|
msgid "Keywords and subjects"
|
|
382
|
-
msgstr ""
|
|
383
|
-
|
|
384
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
385
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
386
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
387
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
388
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
901
|
+
msgstr "Mots-clés et sujets"
|
|
902
|
+
|
|
903
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
904
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
905
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:162
|
|
906
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:191
|
|
907
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:61
|
|
908
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:43
|
|
389
909
|
msgid "Opens in new tab"
|
|
390
|
-
msgstr ""
|
|
910
|
+
msgstr "Ouvre dans un nouvel onglet"
|
|
911
|
+
|
|
912
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:14
|
|
913
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:16
|
|
914
|
+
msgid "Read more"
|
|
915
|
+
msgstr "En savoir plus"
|
|
391
916
|
|
|
392
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:22
|
|
393
917
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:23
|
|
394
918
|
msgid "Rights"
|
|
395
|
-
msgstr ""
|
|
919
|
+
msgstr "Droits"
|
|
396
920
|
|
|
397
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
921
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:54
|
|
398
922
|
msgid "Close"
|
|
399
923
|
msgstr "Fermer"
|
|
400
924
|
|
|
401
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:
|
|
925
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html:58
|
|
402
926
|
msgid "No further description."
|
|
403
|
-
msgstr ""
|
|
927
|
+
msgstr "Aucune autre description."
|
|
928
|
+
|
|
929
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html:14
|
|
930
|
+
msgid "Geographic locations"
|
|
931
|
+
msgstr "Les emplacements géographiques"
|
|
404
932
|
|
|
405
933
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html:10
|
|
406
934
|
msgid "Record management"
|
|
407
|
-
msgstr ""
|
|
935
|
+
msgstr "Gestion des enregistrements"
|
|
408
936
|
|
|
409
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/
|
|
410
|
-
msgid "
|
|
411
|
-
msgstr ""
|
|
937
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html:12
|
|
938
|
+
msgid "Metrics"
|
|
939
|
+
msgstr "Métriques"
|
|
940
|
+
|
|
941
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:5
|
|
942
|
+
msgid "Upload information"
|
|
943
|
+
msgstr "Télécharger des informations"
|
|
944
|
+
|
|
945
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:8
|
|
946
|
+
msgid "Technical metadata"
|
|
947
|
+
msgstr "Les métadonnées techniques"
|
|
948
|
+
|
|
949
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html:15
|
|
950
|
+
msgid "Modified"
|
|
951
|
+
msgstr "Modifié"
|
|
412
952
|
|
|
413
953
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html:12
|
|
414
954
|
msgid "Versions"
|
|
415
|
-
msgstr ""
|
|
955
|
+
msgstr "Versions"
|
|
416
956
|
|
|
417
957
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:17
|
|
418
958
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:22
|
|
@@ -420,314 +960,431 @@ msgstr ""
|
|
|
420
960
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:88
|
|
421
961
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:89
|
|
422
962
|
msgid "profile"
|
|
423
|
-
msgstr ""
|
|
963
|
+
msgstr "profil"
|
|
424
964
|
|
|
425
965
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:71
|
|
426
966
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:75
|
|
427
967
|
msgid "Show affiliations"
|
|
428
|
-
msgstr ""
|
|
968
|
+
msgstr "Afficher les affiliations"
|
|
429
969
|
|
|
430
970
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:72
|
|
431
971
|
msgid "Hide affiliations"
|
|
432
|
-
msgstr ""
|
|
972
|
+
msgstr "Cacher les affiliations"
|
|
433
973
|
|
|
434
974
|
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html:79
|
|
435
975
|
msgid "Affiliations for"
|
|
436
|
-
msgstr ""
|
|
976
|
+
msgstr "Affiliations pour"
|
|
437
977
|
|
|
438
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:
|
|
978
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:119
|
|
439
979
|
msgid "Open external link"
|
|
440
|
-
msgstr ""
|
|
980
|
+
msgstr "Ouvrir lien externe"
|
|
981
|
+
|
|
982
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html:297
|
|
983
|
+
msgid "Conference website"
|
|
984
|
+
msgstr "Site web de conférence"
|
|
985
|
+
|
|
986
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:9
|
|
987
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:24
|
|
988
|
+
msgid "DOI"
|
|
989
|
+
msgstr "DOI"
|
|
990
|
+
|
|
991
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:15
|
|
992
|
+
msgid "Get the DOI badge!"
|
|
993
|
+
msgstr "Obtenez le badge DOI!"
|
|
441
994
|
|
|
442
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
995
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html:21
|
|
996
|
+
msgid "DOI Badge"
|
|
997
|
+
msgstr "DOI Badge"
|
|
998
|
+
|
|
999
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:44
|
|
443
1000
|
msgid "File preview"
|
|
444
|
-
msgstr ""
|
|
1001
|
+
msgstr "Aperçu du fichier"
|
|
445
1002
|
|
|
446
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1003
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:76
|
|
447
1004
|
msgid "Name"
|
|
448
1005
|
msgstr "Nom"
|
|
449
1006
|
|
|
450
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1007
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:77
|
|
451
1008
|
msgid "Size"
|
|
452
1009
|
msgstr "Taille"
|
|
453
1010
|
|
|
454
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
msgstr "Actions"
|
|
1011
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:82
|
|
1012
|
+
msgid "Download all"
|
|
1013
|
+
msgstr "Télécharger tout"
|
|
458
1014
|
|
|
459
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1015
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:111
|
|
460
1016
|
msgid ""
|
|
461
1017
|
"This is the file fingerprint (checksum), which can be used to verify the "
|
|
462
1018
|
"file integrity."
|
|
463
1019
|
msgstr ""
|
|
1020
|
+
"Il s'agit de l'empreinte digitale du fichier (checksum), qui peut être "
|
|
1021
|
+
"utilisée pour vérifier l'intégrité du fichier."
|
|
464
1022
|
|
|
465
|
-
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:
|
|
1023
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html:125
|
|
466
1024
|
msgid "Download"
|
|
467
1025
|
msgstr "Télécharger"
|
|
468
1026
|
|
|
469
|
-
#: invenio_app_rdm/records_ui/
|
|
470
|
-
msgid "
|
|
1027
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html:55
|
|
1028
|
+
msgid "Unknown"
|
|
1029
|
+
msgstr "Inconnu"
|
|
1030
|
+
|
|
1031
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html:9
|
|
1032
|
+
msgid "See the full number"
|
|
1033
|
+
msgstr "Voir le numéro complet"
|
|
1034
|
+
|
|
1035
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:13
|
|
1036
|
+
msgid "Version"
|
|
1037
|
+
msgstr "Version"
|
|
1038
|
+
|
|
1039
|
+
#: invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html:14
|
|
1040
|
+
msgid "No DOI available"
|
|
1041
|
+
msgstr ""
|
|
1042
|
+
|
|
1043
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:71
|
|
1044
|
+
#, python-format
|
|
1045
|
+
msgid "Discard the reserved %(scheme_label)s."
|
|
471
1046
|
msgstr ""
|
|
472
1047
|
|
|
473
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
474
|
-
|
|
1048
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:74
|
|
1049
|
+
#, python-format
|
|
1050
|
+
msgid "Get a %(scheme_label)s now!"
|
|
475
1051
|
msgstr ""
|
|
476
1052
|
|
|
477
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1053
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:77
|
|
1054
|
+
#, python-format
|
|
478
1055
|
msgid ""
|
|
479
|
-
"Reserve a
|
|
480
|
-
"files prior to upload). The
|
|
481
|
-
" published."
|
|
1056
|
+
"Reserve a %(scheme_label)s by pressing the button (so it can be included in "
|
|
1057
|
+
"files prior to upload). The %(scheme_label)s is registered when your upload "
|
|
1058
|
+
"is published."
|
|
482
1059
|
msgstr ""
|
|
483
1060
|
|
|
484
|
-
#: invenio_app_rdm/records_ui/views/deposits.py:
|
|
1061
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:83
|
|
1062
|
+
#, python-format
|
|
485
1063
|
msgid ""
|
|
486
|
-
"A
|
|
1064
|
+
"A %(scheme_label)s allows your upload to be easily and unambiguously cited. "
|
|
487
1065
|
"Example: 10.1234/foo.bar"
|
|
488
1066
|
msgstr ""
|
|
489
1067
|
|
|
490
|
-
#: invenio_app_rdm/
|
|
1068
|
+
#: invenio_app_rdm/records_ui/views/deposits.py:197
|
|
1069
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:11
|
|
1070
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:19
|
|
1071
|
+
msgid "All"
|
|
1072
|
+
msgstr "Tout"
|
|
1073
|
+
|
|
1074
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html:21
|
|
491
1075
|
msgid "Back to invitations"
|
|
492
|
-
msgstr ""
|
|
1076
|
+
msgstr "Retour aux invitations"
|
|
493
1077
|
|
|
494
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:
|
|
495
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1078
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html:19
|
|
1079
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:31
|
|
1080
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:34
|
|
1081
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html:28
|
|
496
1082
|
msgid "Back to requests"
|
|
497
|
-
msgstr ""
|
|
1083
|
+
msgstr "Retour aux demandes"
|
|
498
1084
|
|
|
499
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1085
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:52
|
|
500
1086
|
msgid "Conversation"
|
|
501
|
-
msgstr ""
|
|
1087
|
+
msgstr "Conversation"
|
|
502
1088
|
|
|
503
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:
|
|
1089
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html:64
|
|
504
1090
|
msgid "Record"
|
|
505
1091
|
msgstr "Notice"
|
|
506
1092
|
|
|
507
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
1093
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html:13
|
|
1094
|
+
msgid "Access request"
|
|
1095
|
+
msgstr "Demande d'accès"
|
|
1096
|
+
|
|
1097
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:25
|
|
508
1098
|
msgid "View Community"
|
|
509
|
-
msgstr ""
|
|
1099
|
+
msgstr "Voir Communauté"
|
|
510
1100
|
|
|
511
|
-
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:
|
|
1101
|
+
#: invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html:63
|
|
512
1102
|
msgid "View record"
|
|
513
|
-
msgstr ""
|
|
1103
|
+
msgstr "Voir record"
|
|
514
1104
|
|
|
515
|
-
#: invenio_app_rdm/theme/views.py:
|
|
516
|
-
msgid "
|
|
517
|
-
msgstr ""
|
|
1105
|
+
#: invenio_app_rdm/theme/views.py:132
|
|
1106
|
+
msgid "Notification preferences were updated."
|
|
1107
|
+
msgstr "Les préférences de notification ont été mises à jour."
|
|
518
1108
|
|
|
519
1109
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:18
|
|
520
1110
|
msgid "About InvenioRDM"
|
|
521
|
-
msgstr ""
|
|
1111
|
+
msgstr "À propos InvenioRDM"
|
|
522
1112
|
|
|
523
1113
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:19
|
|
524
|
-
|
|
525
|
-
msgid ""
|
|
526
|
-
"\n"
|
|
527
|
-
" <p><a href=\"%(invenio_rdm)s\">Product page</a></p>\n"
|
|
528
|
-
" "
|
|
1114
|
+
msgid "Product page"
|
|
529
1115
|
msgstr ""
|
|
530
1116
|
|
|
531
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
532
|
-
|
|
533
|
-
msgid ""
|
|
534
|
-
"\n"
|
|
535
|
-
" <p><a href=\"%(invenio_rdm_features)s\">Features</a></p>\n"
|
|
536
|
-
" "
|
|
1117
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:20
|
|
1118
|
+
msgid "Features"
|
|
537
1119
|
msgstr ""
|
|
538
1120
|
|
|
539
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
540
|
-
|
|
541
|
-
msgid ""
|
|
542
|
-
"\n"
|
|
543
|
-
" <p><a href=\"%(invenio_rdm_roadmap)s\">Roadmap</a></p>\n"
|
|
544
|
-
" "
|
|
1121
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:21
|
|
1122
|
+
msgid "Roadmap"
|
|
545
1123
|
msgstr ""
|
|
546
1124
|
|
|
547
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
548
|
-
|
|
549
|
-
msgid ""
|
|
550
|
-
"\n"
|
|
551
|
-
" <p><a href=\"%(invenio_rdm_demo_site)s\">Demo site</a></p>\n"
|
|
552
|
-
" "
|
|
1125
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:22
|
|
1126
|
+
msgid "Demo site"
|
|
553
1127
|
msgstr ""
|
|
554
1128
|
|
|
555
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1129
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:25
|
|
556
1130
|
msgid "Get involved"
|
|
557
|
-
msgstr ""
|
|
1131
|
+
msgstr "Impliquez-vous"
|
|
558
1132
|
|
|
559
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
"\n"
|
|
563
|
-
" <p><a href=\"%(invenio_rdm_gh)s\">GitHub</a></p>\n"
|
|
564
|
-
" "
|
|
565
|
-
msgstr ""
|
|
1133
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:26
|
|
1134
|
+
msgid "GitHub"
|
|
1135
|
+
msgstr "GitHub"
|
|
566
1136
|
|
|
567
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
568
|
-
|
|
569
|
-
msgid ""
|
|
570
|
-
"\n"
|
|
571
|
-
" <p><a href=\"%(invenio_rdm_milestones)s\">Project Milestones</a></p>\n"
|
|
572
|
-
" "
|
|
1137
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:27
|
|
1138
|
+
msgid "Project Milestones"
|
|
573
1139
|
msgstr ""
|
|
574
1140
|
|
|
575
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
576
|
-
|
|
577
|
-
msgid ""
|
|
578
|
-
"\n"
|
|
579
|
-
" <p><a href=\"%(invenio_rdm_docs_site)s\">Documentation</a></p>\n"
|
|
580
|
-
" "
|
|
1141
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:28
|
|
1142
|
+
msgid "Documentation"
|
|
581
1143
|
msgstr ""
|
|
582
1144
|
|
|
583
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
1145
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:31
|
|
584
1146
|
msgid "Community"
|
|
585
1147
|
msgstr "Communauté"
|
|
586
1148
|
|
|
587
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
588
|
-
|
|
589
|
-
msgid ""
|
|
590
|
-
"\n"
|
|
591
|
-
" <p><a href=\"%(invenio_rdm_chatroom)s\">Chatroom</a></p>\n"
|
|
592
|
-
" "
|
|
1149
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:32
|
|
1150
|
+
msgid "Chatroom"
|
|
593
1151
|
msgstr ""
|
|
594
1152
|
|
|
595
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
596
|
-
|
|
597
|
-
msgid ""
|
|
598
|
-
"\n"
|
|
599
|
-
" <p><a href=\"%(invenio_rdm_talk)s\">Forum</a></p>\n"
|
|
600
|
-
" "
|
|
1153
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:33
|
|
1154
|
+
msgid "Forum"
|
|
601
1155
|
msgstr ""
|
|
602
1156
|
|
|
603
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:
|
|
604
|
-
|
|
605
|
-
msgid ""
|
|
606
|
-
"\n"
|
|
607
|
-
" <p><a href=\"%(invenio_events)s\">Events & training</a></p>\n"
|
|
608
|
-
" "
|
|
1157
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html:34
|
|
1158
|
+
msgid "Events & training"
|
|
609
1159
|
msgstr ""
|
|
610
1160
|
|
|
611
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
612
|
-
|
|
613
|
-
msgid ""
|
|
614
|
-
"Powered by <a\n"
|
|
615
|
-
" href=\"%(invenio_rdm)s\">InvenioRDM</a>"
|
|
1161
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:19
|
|
1162
|
+
msgid "Impersonated session"
|
|
616
1163
|
msgstr ""
|
|
617
1164
|
|
|
618
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
619
|
-
msgid "You
|
|
1165
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:21
|
|
1166
|
+
msgid "You must logout after you finish with you inquiry!"
|
|
620
1167
|
msgstr ""
|
|
621
1168
|
|
|
622
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1169
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:38
|
|
1170
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:37
|
|
1171
|
+
msgid "home"
|
|
1172
|
+
msgstr "maison"
|
|
1173
|
+
|
|
1174
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:51
|
|
1175
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:50
|
|
1176
|
+
msgid "Menu"
|
|
1177
|
+
msgstr "Menu"
|
|
1178
|
+
|
|
1179
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:68
|
|
1180
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:67
|
|
1181
|
+
msgid "Close menu"
|
|
1182
|
+
msgstr "Fermer le menu"
|
|
1183
|
+
|
|
1184
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html:120
|
|
1185
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html:120
|
|
1186
|
+
msgid "Inbox"
|
|
1187
|
+
msgstr "Boîte"
|
|
1188
|
+
|
|
1189
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:36
|
|
1190
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html:37
|
|
1191
|
+
msgid "Search"
|
|
1192
|
+
msgstr "Recherche"
|
|
1193
|
+
|
|
1194
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:18
|
|
1195
|
+
msgid "Log in"
|
|
1196
|
+
msgstr "Connexion"
|
|
1197
|
+
|
|
1198
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:22
|
|
1199
|
+
msgid "Sign up"
|
|
1200
|
+
msgstr "Inscription"
|
|
1201
|
+
|
|
1202
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:39
|
|
1203
|
+
msgid "Quick create"
|
|
1204
|
+
msgstr "Créer rapidement"
|
|
1205
|
+
|
|
1206
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:56
|
|
1207
|
+
msgid "Actions"
|
|
1208
|
+
msgstr "Actions"
|
|
1209
|
+
|
|
1210
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:77
|
|
1211
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html:120
|
|
1212
|
+
msgid "My account"
|
|
1213
|
+
msgstr "Mon compte"
|
|
1214
|
+
|
|
1215
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:12
|
|
1216
|
+
msgid "You've successfully installed InvenioRDM!"
|
|
1217
|
+
msgstr "Vous avez installé InvenioRDM avec succès!"
|
|
1218
|
+
|
|
1219
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:14
|
|
623
1220
|
msgid "What is ahead?"
|
|
624
|
-
msgstr ""
|
|
1221
|
+
msgstr "Qu'est-ce qui est à venir?"
|
|
625
1222
|
|
|
626
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1223
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:24
|
|
627
1224
|
msgid "Configure"
|
|
628
|
-
msgstr ""
|
|
1225
|
+
msgstr "Configurer"
|
|
629
1226
|
|
|
630
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
631
|
-
#, python-format
|
|
1227
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:27
|
|
632
1228
|
msgid ""
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
" information on how to do it visit the <a href=\"%(configuration_link)s\" target=\"_blank\">configuration\n"
|
|
636
|
-
" section in the docs</a>.\n"
|
|
637
|
-
" "
|
|
1229
|
+
"Configure the datamodel, resource types, permissions and much more to make "
|
|
1230
|
+
"it suit your needs! For more information on how to do it visit the"
|
|
638
1231
|
msgstr ""
|
|
639
1232
|
|
|
640
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
641
|
-
msgid "
|
|
1233
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:29
|
|
1234
|
+
msgid "configuration section in the docs"
|
|
642
1235
|
msgstr ""
|
|
643
1236
|
|
|
644
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
645
|
-
|
|
1237
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:41
|
|
1238
|
+
msgid "Customize"
|
|
1239
|
+
msgstr "Personnaliser"
|
|
1240
|
+
|
|
1241
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:44
|
|
646
1242
|
msgid ""
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
" href=\"%(configuration_link)s\" target=\"_blank\">here</a>.\n"
|
|
650
|
-
" "
|
|
1243
|
+
"Customize the layout and adapt the styling to match your institution's. See "
|
|
1244
|
+
"how to do so"
|
|
651
1245
|
msgstr ""
|
|
652
1246
|
|
|
653
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1247
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:46
|
|
1248
|
+
msgid "here"
|
|
1249
|
+
msgstr "ici"
|
|
1250
|
+
|
|
1251
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:57
|
|
654
1252
|
msgid "Run it!"
|
|
655
|
-
msgstr ""
|
|
1253
|
+
msgstr "Exécutez-le!"
|
|
656
1254
|
|
|
657
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
658
|
-
|
|
659
|
-
msgid ""
|
|
660
|
-
"\n"
|
|
661
|
-
" <a href=\"%(deployment_link)s\" target=\"_blank\">Run</a> your\n"
|
|
662
|
-
" InvenioRDM instance locally or in containers.\n"
|
|
663
|
-
" "
|
|
1255
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:59
|
|
1256
|
+
msgid "Run your InvenioRDM instance locally or in containers."
|
|
664
1257
|
msgstr ""
|
|
665
1258
|
|
|
666
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1259
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:61
|
|
1260
|
+
msgid "Run"
|
|
1261
|
+
msgstr "Lancer"
|
|
1262
|
+
|
|
1263
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:75
|
|
667
1264
|
msgid "Docs"
|
|
668
|
-
msgstr ""
|
|
1265
|
+
msgstr "Docs"
|
|
669
1266
|
|
|
670
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
1267
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:84
|
|
671
1268
|
msgid "Code"
|
|
672
1269
|
msgstr "Code"
|
|
673
1270
|
|
|
674
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
675
|
-
msgid "
|
|
676
|
-
msgstr "
|
|
1271
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:91
|
|
1272
|
+
msgid "To disable this section, add"
|
|
1273
|
+
msgstr "Pour désactiver cette section, ajoutez"
|
|
677
1274
|
|
|
678
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
679
|
-
msgid "
|
|
1275
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html:93
|
|
1276
|
+
msgid "to your invenio.cfg file."
|
|
1277
|
+
msgstr "vers votre fichier invenio.cfg."
|
|
1278
|
+
|
|
1279
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:6
|
|
1280
|
+
msgid "In this community"
|
|
1281
|
+
msgstr "Dans cette communauté"
|
|
1282
|
+
|
|
1283
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:30
|
|
1284
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html:31
|
|
1285
|
+
msgid "Search records"
|
|
1286
|
+
msgstr "Recherche des enregistrements"
|
|
1287
|
+
|
|
1288
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html:15
|
|
1289
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:15
|
|
1290
|
+
msgid "Powered by"
|
|
1291
|
+
msgstr "Powered by"
|
|
1292
|
+
|
|
1293
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:13
|
|
1294
|
+
msgid ""
|
|
1295
|
+
"The following files were flagged as 'unhealthy'. This means that the "
|
|
1296
|
+
"checksum check failed or timed out. Please take any action if needed."
|
|
680
1297
|
msgstr ""
|
|
681
1298
|
|
|
682
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
msgstr "Réservations"
|
|
1299
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:16
|
|
1300
|
+
#, python-format
|
|
1301
|
+
msgid "ID: %s"
|
|
1302
|
+
msgstr ""
|
|
687
1303
|
|
|
688
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
689
|
-
|
|
1304
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:17
|
|
1305
|
+
#, python-format
|
|
1306
|
+
msgid "URI: %s"
|
|
690
1307
|
msgstr ""
|
|
691
1308
|
|
|
692
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
693
|
-
|
|
694
|
-
|
|
1309
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:19
|
|
1310
|
+
#, python-format
|
|
1311
|
+
msgid "Name: %s"
|
|
1312
|
+
msgstr ""
|
|
695
1313
|
|
|
696
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
697
|
-
|
|
698
|
-
|
|
1314
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:21
|
|
1315
|
+
#, python-format
|
|
1316
|
+
msgid "Created: %s"
|
|
1317
|
+
msgstr ""
|
|
699
1318
|
|
|
700
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
701
|
-
|
|
702
|
-
msgid "
|
|
1319
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:22
|
|
1320
|
+
#, python-format
|
|
1321
|
+
msgid "Checksum: %s"
|
|
703
1322
|
msgstr ""
|
|
704
1323
|
|
|
705
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
msgstr "Déconnexion"
|
|
1324
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:23
|
|
1325
|
+
#, python-format
|
|
1326
|
+
msgid "Last check date: %s"
|
|
1327
|
+
msgstr ""
|
|
710
1328
|
|
|
711
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
712
|
-
|
|
1329
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:24
|
|
1330
|
+
#, python-format
|
|
1331
|
+
msgid "Last check FAILED with result: %s"
|
|
713
1332
|
msgstr ""
|
|
714
1333
|
|
|
715
|
-
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/
|
|
716
|
-
|
|
717
|
-
msgid "
|
|
718
|
-
msgstr "
|
|
1334
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:26
|
|
1335
|
+
#, python-format
|
|
1336
|
+
msgid "Record: %s/records/%s"
|
|
1337
|
+
msgstr ""
|
|
1338
|
+
|
|
1339
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html:29
|
|
1340
|
+
#, python-format
|
|
1341
|
+
msgid "Draft: %s/uploads/%s"
|
|
1342
|
+
msgstr ""
|
|
719
1343
|
|
|
720
1344
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html:9
|
|
721
1345
|
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html:8
|
|
1346
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html:8
|
|
722
1347
|
msgid "Search guide"
|
|
723
|
-
msgstr ""
|
|
1348
|
+
msgstr "Guide de recherche"
|
|
724
1349
|
|
|
725
|
-
#: invenio_app_rdm/
|
|
726
|
-
#: invenio_app_rdm/
|
|
727
|
-
msgid "
|
|
728
|
-
msgstr "
|
|
1350
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html:8
|
|
1351
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html:8
|
|
1352
|
+
msgid "FAQ statistics"
|
|
1353
|
+
msgstr "FAQ statistiques"
|
|
729
1354
|
|
|
730
|
-
#: invenio_app_rdm/
|
|
731
|
-
#: invenio_app_rdm/
|
|
732
|
-
msgid "
|
|
1355
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html:8
|
|
1356
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html:8
|
|
1357
|
+
msgid "FAQ versioning"
|
|
1358
|
+
msgstr "FAQ version"
|
|
1359
|
+
|
|
1360
|
+
#: invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html:10
|
|
1361
|
+
msgid "Recent uploads"
|
|
733
1362
|
msgstr ""
|
|
1363
|
+
|
|
1364
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:22
|
|
1365
|
+
msgid "Verified community"
|
|
1366
|
+
msgstr ""
|
|
1367
|
+
|
|
1368
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:29
|
|
1369
|
+
msgid "Privacy policy"
|
|
1370
|
+
msgstr "Politique de confidentialité"
|
|
1371
|
+
|
|
1372
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:30
|
|
1373
|
+
msgid "Terms of use"
|
|
1374
|
+
msgstr "Conditions d'utilisation"
|
|
1375
|
+
|
|
1376
|
+
#: invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html:31
|
|
1377
|
+
msgid "Support"
|
|
1378
|
+
msgstr "Soutien"
|
|
1379
|
+
|
|
1380
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1381
|
+
msgid "Your dashboard"
|
|
1382
|
+
msgstr "Votre tableau de bord"
|
|
1383
|
+
|
|
1384
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:18
|
|
1385
|
+
msgid "Anonymous user"
|
|
1386
|
+
msgstr "Utilisateur anonyme"
|
|
1387
|
+
|
|
1388
|
+
#: invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html:35
|
|
1389
|
+
msgid "New community"
|
|
1390
|
+
msgstr "Nouvelle communauté"
|