invenio-app-rdm 13.0.0b4.dev1__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/records.py +9 -7
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/administration/users/users.py +0 -5
- invenio_app_rdm/communities_ui/views/communities.py +9 -5
- invenio_app_rdm/config.py +73 -4
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/fixtures/pages.py +5 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
- invenio_app_rdm/records_ui/utils.py +93 -1
- invenio_app_rdm/records_ui/views/decorators.py +24 -14
- invenio_app_rdm/records_ui/views/deposits.py +100 -27
- invenio_app_rdm/records_ui/views/filters.py +11 -4
- invenio_app_rdm/records_ui/views/records.py +23 -13
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +5 -5
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/views/requests.py +54 -87
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +55 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +52 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +81 -28
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +702 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/webpack.py +3 -2
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/messages.pot +486 -303
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- tests/__init__.py +0 -8
- tests/api/__init__.py +0 -8
- tests/api/conftest.py +0 -24
- tests/api/test_protect_files_rest.py +0 -73
- tests/api/test_record_api.py +0 -175
- tests/api/test_stats_api.py +0 -26
- tests/conftest.py +0 -390
- tests/fixtures/__init__.py +0 -8
- tests/fixtures/app_data/oai_sets.yaml +0 -3
- tests/fixtures/app_data/pages/about.html +0 -1
- tests/fixtures/app_data/pages.yaml +0 -4
- tests/fixtures/conftest.py +0 -27
- tests/fixtures/test_cli.py +0 -25
- tests/fixtures/test_fixtures.py +0 -46
- tests/mock_module/__init__.py +0 -7
- tests/mock_module/templates/mock_mail.html +0 -27
- tests/mock_module/views.py +0 -32
- tests/redirector/__init__.py +0 -8
- tests/redirector/conftest.py +0 -54
- tests/redirector/test_redirector.py +0 -28
- tests/test_tasks.py +0 -209
- tests/test_utils.py +0 -67
- tests/test_version.py +0 -16
- tests/test_views.py +0 -43
- tests/ui/__init__.py +0 -8
- tests/ui/conftest.py +0 -115
- tests/ui/test_deposits.py +0 -115
- tests/ui/test_export_formats.py +0 -37
- tests/ui/test_file_download.py +0 -73
- tests/ui/test_filters.py +0 -10
- tests/ui/test_robotstxt.py +0 -35
- tests/ui/test_signposting_ui.py +0 -95
- tests/ui/test_sitemaps.py +0 -85
- tests/ui/test_stats_ui.py +0 -92
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
#
|
|
2
2
|
# Translators:
|
|
3
|
-
# Tibor Simko <tibor.simko@cern.ch>,
|
|
4
|
-
# Alizee Pace <alizee.pace@gmail.com>,
|
|
3
|
+
# Tibor Simko <tibor.simko@cern.ch>, 2024
|
|
4
|
+
# Alizee Pace <alizee.pace@gmail.com>, 2025
|
|
5
|
+
# Keziah Okyere, 2025
|
|
5
6
|
#
|
|
6
7
|
msgid ""
|
|
7
8
|
msgstr ""
|
|
8
9
|
"Project-Id-Version: i18next-conv\n"
|
|
9
|
-
"POT-Creation-Date:
|
|
10
|
+
"POT-Creation-Date: 2025-03-27T16:30:16.192Z\n"
|
|
10
11
|
"PO-Revision-Date: 2021-07-14 16:07+0000\n"
|
|
11
|
-
"Last-Translator:
|
|
12
|
+
"Last-Translator: Keziah Okyere, 2025\n"
|
|
12
13
|
"Language-Team: French (https://app.transifex.com/inveniosoftware/teams/23537/fr/)\n"
|
|
13
14
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
15
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -17,261 +18,943 @@ msgstr ""
|
|
|
17
18
|
"mime-version: 1.0\n"
|
|
18
19
|
|
|
19
20
|
msgid "Basic information"
|
|
21
|
+
msgstr "Informations de base"
|
|
22
|
+
|
|
23
|
+
msgid "Impersonate user"
|
|
24
|
+
msgstr "Utilisateur d'usurpation d'identité"
|
|
25
|
+
|
|
26
|
+
msgid "Impersonate"
|
|
27
|
+
msgstr "Imiter"
|
|
28
|
+
|
|
29
|
+
msgid "You must accept this."
|
|
30
|
+
msgstr "Vous devez accepter cela."
|
|
31
|
+
|
|
32
|
+
msgid "Success"
|
|
33
|
+
msgstr "Succès"
|
|
34
|
+
|
|
35
|
+
msgid ""
|
|
36
|
+
"User impersonated succesfully! You will be redirected in frontpage soon."
|
|
20
37
|
msgstr ""
|
|
38
|
+
"L'utilisateur imité avec succès! Vous serez bientôt redirigé en première "
|
|
39
|
+
"page."
|
|
21
40
|
|
|
22
|
-
msgid "
|
|
41
|
+
msgid "Unable to impersonate user."
|
|
42
|
+
msgstr "Impossible de se faire passer pour un utilisateur."
|
|
43
|
+
|
|
44
|
+
msgid ""
|
|
45
|
+
"Please read carefully and confirm the following statements before you "
|
|
46
|
+
"proceed."
|
|
23
47
|
msgstr ""
|
|
48
|
+
"Veuillez lire attentivement et confirmer les déclarations suivantes avant de"
|
|
49
|
+
" continuer."
|
|
24
50
|
|
|
25
|
-
msgid "
|
|
51
|
+
msgid "You are about to impersonate user <bold>{{email}}(id: {{id}})</bold>."
|
|
52
|
+
msgstr ""
|
|
53
|
+
" Vous êtes sur le point de vous faire passer pour un utilisateur "
|
|
54
|
+
"<bold>{{email}}(id: {{id}})."
|
|
55
|
+
|
|
56
|
+
msgid "You <bold>MUST</bold> logout after completing your inquiry."
|
|
26
57
|
msgstr ""
|
|
58
|
+
"Vous <bold>DEVEZ</bold> vous déconnecter après avoir terminé votre demande."
|
|
59
|
+
|
|
60
|
+
msgid "Close"
|
|
61
|
+
msgstr "Fermer"
|
|
62
|
+
|
|
63
|
+
msgid "Set Quota"
|
|
64
|
+
msgstr "Définir Quota"
|
|
65
|
+
|
|
66
|
+
msgid "Set quota in bytes"
|
|
67
|
+
msgstr "Définir le quota en octets"
|
|
68
|
+
|
|
69
|
+
msgid "Note"
|
|
70
|
+
msgstr "Note"
|
|
71
|
+
|
|
72
|
+
msgid ""
|
|
73
|
+
"This is the default quota that will be applied to any NEW records created by"
|
|
74
|
+
" this user – it will NOT update quota of existing records."
|
|
75
|
+
msgstr ""
|
|
76
|
+
"Il s'agit du quota par défaut qui sera appliqué à tous les enregistrements "
|
|
77
|
+
"NEW créés par cet utilisateur – il ne mettra PAS à jour le quota des "
|
|
78
|
+
"enregistrements existants."
|
|
79
|
+
|
|
80
|
+
msgid "Quota of {{id}} was set to {{quota}} {{unit}}"
|
|
81
|
+
msgstr "Quota de {{id}} a été fixé à {{quota}} {{unit}}"
|
|
82
|
+
|
|
83
|
+
msgid "Unable to set quota."
|
|
84
|
+
msgstr "Impossible de définir un quota."
|
|
85
|
+
|
|
86
|
+
msgid "Quota size ({{unit}})"
|
|
87
|
+
msgstr "Taille du quota ({{unit}})"
|
|
88
|
+
|
|
89
|
+
msgid "Enter quota size..."
|
|
90
|
+
msgstr "Entrez la taille du quota..."
|
|
91
|
+
|
|
92
|
+
msgid "Max file size ({{unit}})"
|
|
93
|
+
msgstr "Taille maximale du fichier ({{unit}})"
|
|
94
|
+
|
|
95
|
+
msgid "Enter max file size..."
|
|
96
|
+
msgstr "Entrez la taille maximale du fichier..."
|
|
97
|
+
|
|
98
|
+
msgid "Ticket 1234"
|
|
99
|
+
msgstr "Billet 1234"
|
|
100
|
+
|
|
101
|
+
msgid "Set quota"
|
|
102
|
+
msgstr "Fixer le quota"
|
|
103
|
+
|
|
104
|
+
msgid "Domain"
|
|
105
|
+
msgstr "Domaine"
|
|
106
|
+
|
|
107
|
+
msgid "Flagged"
|
|
108
|
+
msgstr "Drapeau"
|
|
109
|
+
|
|
110
|
+
msgid "Organization"
|
|
111
|
+
msgstr "Organisation"
|
|
112
|
+
|
|
113
|
+
msgid "Company"
|
|
114
|
+
msgstr "Entreprise"
|
|
115
|
+
|
|
116
|
+
msgid "Mail provider"
|
|
117
|
+
msgstr "Fournisseur de messagerie"
|
|
118
|
+
|
|
119
|
+
msgid "Spammer"
|
|
120
|
+
msgstr "Spammer"
|
|
121
|
+
|
|
122
|
+
msgid "TLD"
|
|
123
|
+
msgstr "TLD"
|
|
124
|
+
|
|
125
|
+
msgid "Status"
|
|
126
|
+
msgstr "Statut"
|
|
127
|
+
|
|
128
|
+
msgid "New"
|
|
129
|
+
msgstr "Nouveau"
|
|
130
|
+
|
|
131
|
+
msgid "Moderated"
|
|
132
|
+
msgstr "Modéré"
|
|
133
|
+
|
|
134
|
+
msgid "Verified"
|
|
135
|
+
msgstr "Vérifié"
|
|
136
|
+
|
|
137
|
+
msgid "Blocked"
|
|
138
|
+
msgstr "Bloqué"
|
|
139
|
+
|
|
140
|
+
msgid "Users"
|
|
141
|
+
msgstr "Utilisateurs"
|
|
142
|
+
|
|
143
|
+
msgid "Active"
|
|
144
|
+
msgstr "Actif"
|
|
145
|
+
|
|
146
|
+
msgid "Inactive"
|
|
147
|
+
msgstr "Inactif"
|
|
148
|
+
|
|
149
|
+
msgid "Confirmed"
|
|
150
|
+
msgstr "Confirmé"
|
|
151
|
+
|
|
152
|
+
msgid "Links"
|
|
153
|
+
msgstr "Liens"
|
|
154
|
+
|
|
155
|
+
msgid "Set quota for record {{recordId}}"
|
|
156
|
+
msgstr "Définir le quota pour l'enregistrement {{recordId}}"
|
|
157
|
+
|
|
158
|
+
msgid "Delete record"
|
|
159
|
+
msgstr "Supprimer l'enregistrement"
|
|
160
|
+
|
|
161
|
+
msgid "Restore record"
|
|
162
|
+
msgstr "Restaurer l'enregistrement"
|
|
163
|
+
|
|
164
|
+
msgid "Unavailability statement"
|
|
165
|
+
msgstr "Déclaration d'indisponibilité"
|
|
166
|
+
|
|
167
|
+
msgid "Record {{id}} was restored."
|
|
168
|
+
msgstr "Le record {{id}} a été restauré."
|
|
169
|
+
|
|
170
|
+
msgid "Unable to restore."
|
|
171
|
+
msgstr "Impossible de restaurer."
|
|
172
|
+
|
|
173
|
+
msgid "Are you sure you want to restore #{{id}}"
|
|
174
|
+
msgstr "Êtes-vous sûr de vouloir restaurer #{{id}}"
|
|
175
|
+
|
|
176
|
+
msgid "Published"
|
|
177
|
+
msgstr "Publié"
|
|
178
|
+
|
|
179
|
+
msgid "Deleted"
|
|
180
|
+
msgstr "Supprimé"
|
|
181
|
+
|
|
182
|
+
msgid "Scheduled for purge"
|
|
183
|
+
msgstr "Prévu pour purge"
|
|
184
|
+
|
|
185
|
+
msgid "Empty draft title"
|
|
186
|
+
msgstr "Titre provisoire vide"
|
|
187
|
+
|
|
188
|
+
msgid "version"
|
|
189
|
+
msgstr "version"
|
|
190
|
+
|
|
191
|
+
msgid "Owner"
|
|
192
|
+
msgstr "Propriétaire"
|
|
193
|
+
|
|
194
|
+
msgid "Created"
|
|
195
|
+
msgstr "Créé"
|
|
27
196
|
|
|
28
197
|
msgid "Files"
|
|
29
198
|
msgstr "Fichiers"
|
|
30
199
|
|
|
31
|
-
msgid "
|
|
200
|
+
msgid "Stats"
|
|
201
|
+
msgstr "Statistiques"
|
|
202
|
+
|
|
203
|
+
msgid "Record {{id}} was deleted."
|
|
204
|
+
msgstr "Le dossier {{id}} a été supprimé."
|
|
205
|
+
|
|
206
|
+
msgid "Unable to delete"
|
|
207
|
+
msgstr "Impossible de supprimer"
|
|
208
|
+
|
|
209
|
+
msgid "Public"
|
|
210
|
+
msgstr "Public"
|
|
211
|
+
|
|
212
|
+
msgid "Hidden"
|
|
213
|
+
msgstr "Caché"
|
|
214
|
+
|
|
215
|
+
msgid ""
|
|
216
|
+
"The tombstone is set to hidden but your record is public. Best practice is "
|
|
217
|
+
"to provide a public tombstone when deactivating public records."
|
|
32
218
|
msgstr ""
|
|
219
|
+
"La pierre tombale est cachée mais votre dossier est public. La meilleure "
|
|
220
|
+
"pratique consiste à fournir une pierre tombale publique lors de la "
|
|
221
|
+
"désactivation des documents publics."
|
|
33
222
|
|
|
34
|
-
msgid "
|
|
223
|
+
msgid ""
|
|
224
|
+
"RISK INFORMATION LEAKAGE: The tombstone is set to public but your record is "
|
|
225
|
+
"restricted. Please make sure no restricted information is shared in the "
|
|
226
|
+
"tombstone below."
|
|
35
227
|
msgstr ""
|
|
228
|
+
"FUITE D'INFORMATIONS SUR LES RISQUES: La pierre tombale est rendue publique,"
|
|
229
|
+
" mais votre dossier est restreint. Veuillez vous assurer qu'aucune "
|
|
230
|
+
"information restreinte n'est partagée dans la pierre tombale ci-dessous."
|
|
36
231
|
|
|
37
|
-
msgid "
|
|
232
|
+
msgid "Bibliographic citation"
|
|
233
|
+
msgstr "Bibliographie citation"
|
|
234
|
+
|
|
235
|
+
msgid ""
|
|
236
|
+
"Input citation text. Blank field will be filled with APA citation by "
|
|
237
|
+
"default."
|
|
38
238
|
msgstr ""
|
|
239
|
+
"Texte de citation. Le champ vide sera rempli avec la citation APA par "
|
|
240
|
+
"défaut."
|
|
241
|
+
|
|
242
|
+
msgid "Public note"
|
|
243
|
+
msgstr "Note publique"
|
|
244
|
+
|
|
245
|
+
msgid "User {{name}} was approved."
|
|
246
|
+
msgstr "L'utilisateur {{name}} a été approuvé."
|
|
247
|
+
|
|
248
|
+
msgid "User {{name}} is blocked."
|
|
249
|
+
msgstr "L'utilisateur {{name}} est bloqué."
|
|
250
|
+
|
|
251
|
+
msgid "Error"
|
|
252
|
+
msgstr "Erreur"
|
|
253
|
+
|
|
254
|
+
msgid "User"
|
|
255
|
+
msgstr "Utilisateur"
|
|
256
|
+
|
|
257
|
+
msgid "Email"
|
|
258
|
+
msgstr "Email"
|
|
259
|
+
|
|
260
|
+
msgid "Email domain"
|
|
261
|
+
msgstr "Domaine d'email"
|
|
262
|
+
|
|
263
|
+
msgid "Actions"
|
|
264
|
+
msgstr "Actions"
|
|
265
|
+
|
|
266
|
+
msgid "Records"
|
|
267
|
+
msgstr "Notices"
|
|
268
|
+
|
|
269
|
+
msgid "Username"
|
|
270
|
+
msgstr "Nom d'utilisateur"
|
|
271
|
+
|
|
272
|
+
msgid "GitHub"
|
|
273
|
+
msgstr "GitHub"
|
|
274
|
+
|
|
275
|
+
msgid "Updated"
|
|
276
|
+
msgstr "Mis à jour"
|
|
277
|
+
|
|
278
|
+
msgid "Restore"
|
|
279
|
+
msgstr "Restaurer"
|
|
280
|
+
|
|
281
|
+
msgid "Restored"
|
|
282
|
+
msgstr "Restauré"
|
|
283
|
+
|
|
284
|
+
msgid "Block"
|
|
285
|
+
msgstr "Bloquer"
|
|
286
|
+
|
|
287
|
+
msgid "Suspend"
|
|
288
|
+
msgstr "Suspendre"
|
|
289
|
+
|
|
290
|
+
msgid "Suspended"
|
|
291
|
+
msgstr "Suspendu"
|
|
292
|
+
|
|
293
|
+
msgid "Approve"
|
|
294
|
+
msgstr "Approuver"
|
|
295
|
+
|
|
296
|
+
msgid "Approved"
|
|
297
|
+
msgstr "Approuvé"
|
|
298
|
+
|
|
299
|
+
msgid "Activate"
|
|
300
|
+
msgstr "Activer"
|
|
301
|
+
|
|
302
|
+
msgid "Activated"
|
|
303
|
+
msgstr "Activé"
|
|
304
|
+
|
|
305
|
+
msgid "Set default quota for {{email}}"
|
|
306
|
+
msgstr "Définir le quota par défaut pour {{email}}"
|
|
307
|
+
|
|
308
|
+
msgid "Filter results"
|
|
309
|
+
msgstr "Filtrer les résultats"
|
|
310
|
+
|
|
311
|
+
msgid "Search records in community..."
|
|
312
|
+
msgstr "Rechercher des enregistrements dans la communauté..."
|
|
313
|
+
|
|
314
|
+
msgid "Sort by"
|
|
315
|
+
msgstr "Trier par"
|
|
316
|
+
|
|
317
|
+
msgid " results found"
|
|
318
|
+
msgid_plural " results found"
|
|
319
|
+
msgstr[0] " résultats trouvés"
|
|
320
|
+
msgstr[1] " résultats trouvés"
|
|
321
|
+
msgstr[2] " résultats trouvés"
|
|
322
|
+
|
|
323
|
+
msgid "Search records..."
|
|
324
|
+
msgstr "Recherche des enregistrements..."
|
|
325
|
+
|
|
326
|
+
msgid "Search"
|
|
327
|
+
msgstr "Recherche"
|
|
328
|
+
|
|
329
|
+
msgid "Views"
|
|
330
|
+
msgstr "Vues"
|
|
331
|
+
|
|
332
|
+
msgid "Downloads"
|
|
333
|
+
msgstr "Téléchargements"
|
|
334
|
+
|
|
335
|
+
msgid "Copy to clipboard"
|
|
336
|
+
msgstr "Copier dans le presse-papiers"
|
|
337
|
+
|
|
338
|
+
msgid "Copied!"
|
|
339
|
+
msgstr "Copié!"
|
|
340
|
+
|
|
341
|
+
msgid "Part of "
|
|
342
|
+
msgstr "Une partie de"
|
|
343
|
+
|
|
344
|
+
msgid "No creation date found."
|
|
345
|
+
msgstr "Aucune date de création trouvée."
|
|
346
|
+
|
|
347
|
+
msgid "No description"
|
|
348
|
+
msgstr "Aucune description"
|
|
349
|
+
|
|
350
|
+
msgid "No publication date found."
|
|
351
|
+
msgstr "Aucune date de publication trouvée."
|
|
352
|
+
|
|
353
|
+
msgid "No resource type"
|
|
354
|
+
msgstr "Aucun type de ressource"
|
|
355
|
+
|
|
356
|
+
msgid "No title"
|
|
357
|
+
msgstr "Sans titre"
|
|
358
|
+
|
|
359
|
+
msgid "Uploaded on {{uploadDate}}"
|
|
360
|
+
msgstr "Téléchargé sur {{uploadDate}}"
|
|
361
|
+
|
|
362
|
+
msgid "Published in: {{publishInfo}}"
|
|
363
|
+
msgstr "Publié dans: {{publishInfo}}"
|
|
364
|
+
|
|
365
|
+
msgid "{{count}} more versions exist for this record"
|
|
366
|
+
msgid_plural "{{count}} more versions exist for this record"
|
|
367
|
+
msgstr[0] "{{count}} plus de versions existent pour cet enregistrement"
|
|
368
|
+
msgstr[1] "{{count}} plus de versions existent pour cet enregistrement"
|
|
369
|
+
msgstr[2] "{{count}} plus de versions existent pour cet enregistrement"
|
|
370
|
+
|
|
371
|
+
msgid "Person"
|
|
372
|
+
msgstr "Personne"
|
|
373
|
+
|
|
374
|
+
msgid "The record has no files."
|
|
375
|
+
msgstr "Le dossier n'a pas de fichiers."
|
|
376
|
+
|
|
377
|
+
msgid "Creators"
|
|
378
|
+
msgstr "Créateurs"
|
|
379
|
+
|
|
380
|
+
msgid "Recommended information"
|
|
381
|
+
msgstr "Informations recommandées"
|
|
39
382
|
|
|
40
383
|
msgid "Add contributor"
|
|
41
|
-
msgstr ""
|
|
384
|
+
msgstr "Ajouter un contributeur"
|
|
42
385
|
|
|
43
386
|
msgid "Contributors"
|
|
387
|
+
msgstr "Contributeurs"
|
|
388
|
+
|
|
389
|
+
msgid "Edit contributor"
|
|
44
390
|
msgstr ""
|
|
45
391
|
|
|
392
|
+
msgid "Funding"
|
|
393
|
+
msgstr "Financement"
|
|
394
|
+
|
|
395
|
+
msgid "Awards/Grants"
|
|
396
|
+
msgstr "Prix/Grants"
|
|
397
|
+
|
|
46
398
|
msgid "Alternate identifiers"
|
|
47
|
-
msgstr ""
|
|
399
|
+
msgstr "Autres identifiants"
|
|
48
400
|
|
|
49
401
|
msgid "Related works"
|
|
50
|
-
msgstr ""
|
|
402
|
+
msgstr "Les travaux connexes"
|
|
403
|
+
|
|
404
|
+
msgid "References"
|
|
405
|
+
msgstr "Références"
|
|
51
406
|
|
|
52
407
|
msgid "Visibility"
|
|
408
|
+
msgstr "Visibilité"
|
|
409
|
+
|
|
410
|
+
msgid "More"
|
|
411
|
+
msgstr "Plus"
|
|
412
|
+
|
|
413
|
+
msgid "Unable to request the access."
|
|
414
|
+
msgstr "Impossible de demander l'accès."
|
|
415
|
+
|
|
416
|
+
msgid "Your email address"
|
|
53
417
|
msgstr ""
|
|
54
418
|
|
|
419
|
+
msgid "Email address"
|
|
420
|
+
msgstr "Adresse email"
|
|
421
|
+
|
|
422
|
+
msgid "Your full name"
|
|
423
|
+
msgstr "Votre nom complet"
|
|
424
|
+
|
|
425
|
+
msgid "Full name"
|
|
426
|
+
msgstr "Nom complet"
|
|
427
|
+
|
|
428
|
+
msgid "Request message"
|
|
429
|
+
msgstr "Message de demande"
|
|
430
|
+
|
|
431
|
+
msgid ""
|
|
432
|
+
"I agree to that my full name and email address is shared with the owners of "
|
|
433
|
+
"the record"
|
|
434
|
+
msgstr ""
|
|
435
|
+
"J'accepte que mon nom complet et mon adresse e-mail soient partagés avec les"
|
|
436
|
+
" propriétaires de l'enregistrement"
|
|
437
|
+
|
|
438
|
+
msgid "Request access"
|
|
439
|
+
msgstr "Demander l'accès"
|
|
440
|
+
|
|
441
|
+
msgid "Email confirmation needed"
|
|
442
|
+
msgstr ""
|
|
443
|
+
|
|
444
|
+
msgid "We have sent you an email to verify your address."
|
|
445
|
+
msgstr ""
|
|
446
|
+
|
|
447
|
+
msgid ""
|
|
448
|
+
"\n"
|
|
449
|
+
" Please check the email and follow the instructions to complete the access request.\n"
|
|
450
|
+
" "
|
|
451
|
+
msgstr ""
|
|
452
|
+
|
|
453
|
+
msgid "An error occurred while fetching communities."
|
|
454
|
+
msgstr "Une erreur s'est produite lors de la récupération des communautés."
|
|
455
|
+
|
|
456
|
+
msgid "Communities"
|
|
457
|
+
msgstr "Communautés"
|
|
458
|
+
|
|
459
|
+
msgid "View all {{count}} communities"
|
|
460
|
+
msgid_plural "View all {{count}} communities"
|
|
461
|
+
msgstr[0] "Voir toutes les communautés {{count}}"
|
|
462
|
+
msgstr[1] "Voir toutes les communautés {{count}}"
|
|
463
|
+
msgstr[2] "Voir toutes les communautés {{count}}"
|
|
464
|
+
|
|
465
|
+
msgid "Submit to community"
|
|
466
|
+
msgstr "Soumettre à la communauté"
|
|
467
|
+
|
|
468
|
+
msgid "Pending submissions"
|
|
469
|
+
msgstr "En attente de soumissions"
|
|
470
|
+
|
|
471
|
+
msgid "Manage communities"
|
|
472
|
+
msgstr "Gérer les communautés"
|
|
473
|
+
|
|
474
|
+
msgid "Community management menu dropdown"
|
|
475
|
+
msgstr "Menu déroulant gestion communautaire"
|
|
476
|
+
|
|
55
477
|
msgid "Edit"
|
|
56
478
|
msgstr "Éditer"
|
|
57
479
|
|
|
58
|
-
msgid "
|
|
480
|
+
msgid "Export selection"
|
|
481
|
+
msgstr "Exporter la sélection"
|
|
482
|
+
|
|
483
|
+
msgid "Download file"
|
|
484
|
+
msgstr "Télécharger le fichier"
|
|
485
|
+
|
|
486
|
+
msgid "Export"
|
|
487
|
+
msgstr "Exporter"
|
|
488
|
+
|
|
489
|
+
msgid "Manage"
|
|
490
|
+
msgstr "Gérer"
|
|
491
|
+
|
|
492
|
+
msgid "Manage record"
|
|
493
|
+
msgstr "Gérer les enregistrements"
|
|
494
|
+
|
|
495
|
+
msgid "Manage user"
|
|
496
|
+
msgstr "Gérer l'utilisateur"
|
|
497
|
+
|
|
498
|
+
msgid "Remove branding"
|
|
499
|
+
msgstr "Supprimer l'image de marque"
|
|
500
|
+
|
|
501
|
+
msgid "{{communityTitle}} is a default branding for this record"
|
|
502
|
+
msgstr "{{communityTitle}} est une marque par défaut pour cet enregistrement"
|
|
503
|
+
|
|
504
|
+
msgid ""
|
|
505
|
+
"Remove this community from appearing on top of the record details page."
|
|
59
506
|
msgstr ""
|
|
507
|
+
"Supprimez cette communauté d'apparaître en haut de la page des détails de "
|
|
508
|
+
"l'enregistrement."
|
|
509
|
+
|
|
510
|
+
msgid "Set branding"
|
|
511
|
+
msgstr "Définir la marque"
|
|
60
512
|
|
|
61
|
-
msgid "
|
|
513
|
+
msgid "Set {{communityTitle}} as a default branding for this record"
|
|
62
514
|
msgstr ""
|
|
515
|
+
"Définir {{communityTitle}} comme marque par défaut pour cet enregistrement"
|
|
63
516
|
|
|
64
|
-
msgid "
|
|
517
|
+
msgid "Set this community to appear on the top of the record details page."
|
|
65
518
|
msgstr ""
|
|
519
|
+
"Définissez cette communauté pour qu'elle apparaisse en haut de la page des "
|
|
520
|
+
"détails de l'enregistrement."
|
|
521
|
+
|
|
522
|
+
msgid "Pending communities"
|
|
523
|
+
msgstr "Les communautés en attente"
|
|
524
|
+
|
|
525
|
+
msgid "Search for pending submissions to communities..."
|
|
526
|
+
msgstr "Rechercher les soumissions en attente aux communautés..."
|
|
527
|
+
|
|
528
|
+
msgid "An error occurred while generating the citation."
|
|
529
|
+
msgstr "Une erreur s'est produite lors de la génération de la citation."
|
|
530
|
+
|
|
531
|
+
msgid "Style"
|
|
532
|
+
msgstr "Style"
|
|
533
|
+
|
|
534
|
+
msgid "This record is not included in any communities yet."
|
|
535
|
+
msgstr "Ce dossier n'est pas encore inclus dans les communautés."
|
|
536
|
+
|
|
537
|
+
msgid "Search for community..."
|
|
538
|
+
msgstr "Recherche de communauté..."
|
|
539
|
+
|
|
540
|
+
msgid "Record submitted"
|
|
541
|
+
msgstr "Dossier soumis"
|
|
542
|
+
|
|
543
|
+
msgid "Review requested"
|
|
544
|
+
msgstr "Examen demandé"
|
|
545
|
+
|
|
546
|
+
msgid "Search in all communities"
|
|
547
|
+
msgstr "Rechercher dans toutes les communautés"
|
|
548
|
+
|
|
549
|
+
msgid "Search in my communities"
|
|
550
|
+
msgstr "Rechercher dans mes communautés"
|
|
66
551
|
|
|
67
|
-
msgid "
|
|
68
|
-
msgstr "
|
|
552
|
+
msgid "Select a community"
|
|
553
|
+
msgstr "Sélectionnez une communauté"
|
|
554
|
+
|
|
555
|
+
msgid "Version {{- version}}"
|
|
556
|
+
msgstr "Version {{-version}}"
|
|
69
557
|
|
|
70
558
|
msgid "Preview"
|
|
71
|
-
msgstr ""
|
|
559
|
+
msgstr "Aperçu"
|
|
72
560
|
|
|
73
561
|
msgid "Only published versions are displayed."
|
|
74
|
-
msgstr ""
|
|
562
|
+
msgstr "Seules les versions publiées sont affichées."
|
|
75
563
|
|
|
76
|
-
msgid "
|
|
77
|
-
msgstr ""
|
|
564
|
+
msgid "An error occurred while fetching the versions."
|
|
565
|
+
msgstr "Une erreur s'est produite lors de la récupération des versions."
|
|
78
566
|
|
|
79
|
-
msgid "
|
|
80
|
-
|
|
567
|
+
msgid "View all {{count}} versions"
|
|
568
|
+
msgid_plural "View all {{count}} versions"
|
|
569
|
+
msgstr[0] "Voir toutes les versions {{count}}"
|
|
570
|
+
msgstr[1] "Voir toutes les versions {{count}}"
|
|
571
|
+
msgstr[2] "Voir toutes les versions {{count}}"
|
|
81
572
|
|
|
82
|
-
msgid "
|
|
573
|
+
msgid ""
|
|
574
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI "
|
|
575
|
+
"<3></3>. This DOI represents all versions, and will always resolve to the "
|
|
576
|
+
"latest one. <5>Read more</5>.</0>"
|
|
83
577
|
msgstr ""
|
|
578
|
+
"<0><0>Citer toutes les versions?</0> Vous pouvez citer toutes les versions "
|
|
579
|
+
"en utilisant le DOI <3></3>. Ce DOI représente toutes les versions, et se "
|
|
580
|
+
"résoudra toujours à la dernière. <5>En savoir plus</5>.</0>"
|
|
84
581
|
|
|
85
|
-
msgid "
|
|
582
|
+
msgid ""
|
|
583
|
+
"<0><0>Cite all versions?</0> You can cite all versions by using the DOI . "
|
|
584
|
+
"The DOI is registered when the first version is published. <4>Read "
|
|
585
|
+
"more</4>.</0>"
|
|
86
586
|
msgstr ""
|
|
587
|
+
"<0><0>Citer toutes les versions?</0> Vous pouvez citer toutes les versions "
|
|
588
|
+
"en utilisant le DOI. Le DOI est enregistré lors de la première version. "
|
|
589
|
+
"<4>En savoir plus</4>.</0>"
|
|
590
|
+
|
|
591
|
+
msgid "Remove"
|
|
592
|
+
msgstr "Supprimer"
|
|
87
593
|
|
|
88
|
-
msgid "
|
|
594
|
+
msgid "Remove {{communityTitle}} from this record"
|
|
595
|
+
msgstr "Supprimer {{communityTitle}} de cet enregistrement"
|
|
596
|
+
|
|
597
|
+
msgid "Remove community"
|
|
598
|
+
msgstr "Supprimer la communauté"
|
|
599
|
+
|
|
600
|
+
msgid "Are you sure you want to remove the record from the community?"
|
|
601
|
+
msgstr "Êtes-vous sûr de vouloir supprimer l'enregistrement de la communauté?"
|
|
602
|
+
|
|
603
|
+
msgid "I understand the consequences:"
|
|
604
|
+
msgstr "Je comprends les conséquences:"
|
|
605
|
+
|
|
606
|
+
msgid ""
|
|
607
|
+
"The record can only be re-included in the community by going through a new "
|
|
608
|
+
"review by the community curators."
|
|
89
609
|
msgstr ""
|
|
610
|
+
"Le dossier ne peut être ré-inclus dans la communauté qu'en passant par un "
|
|
611
|
+
"nouvel examen par les conservateurs de la communauté."
|
|
90
612
|
|
|
91
|
-
msgid "
|
|
613
|
+
msgid "Something went wrong"
|
|
614
|
+
msgstr "Quelque chose s'est mal passé"
|
|
615
|
+
|
|
616
|
+
msgid "Cancel removal"
|
|
617
|
+
msgstr "Annuler la suppression"
|
|
618
|
+
|
|
619
|
+
msgid "Cancel"
|
|
620
|
+
msgstr "Annuler"
|
|
621
|
+
|
|
622
|
+
msgid "Confirm removal"
|
|
623
|
+
msgstr "Confirmer la suppression"
|
|
624
|
+
|
|
625
|
+
msgid ""
|
|
626
|
+
"Members of the community <1>\"<1>{{communityTitle}}</1>\"</1> will <4>lose "
|
|
627
|
+
"their access</4> to the record."
|
|
92
628
|
msgstr ""
|
|
629
|
+
"Membres de la communauté<1>\"<1>{{communityTitle}}</1>\"</1>volonté<4>perdre"
|
|
630
|
+
" leur accès</4>au dossier."
|
|
631
|
+
|
|
632
|
+
msgid "Select permissions"
|
|
633
|
+
msgstr "Sélectionnez les autorisations"
|
|
634
|
+
|
|
635
|
+
msgid "Short name for your link (optional)."
|
|
636
|
+
msgstr "Nom abrégé de votre lien (facultatif)."
|
|
637
|
+
|
|
638
|
+
msgid "Expiration date format: YYYY-MM-DD"
|
|
639
|
+
msgstr "Format de date d'expiration: AAAA-MM-JJ"
|
|
640
|
+
|
|
641
|
+
msgid "Expiration date: YYYY-MM-DD or never if blank (optional)."
|
|
642
|
+
msgstr "Date d'expiration: AAAA-MM-JJ ou jamais si vide (facultatif)."
|
|
643
|
+
|
|
644
|
+
msgid "Create a new link"
|
|
645
|
+
msgstr "Créer un nouveau lien"
|
|
93
646
|
|
|
94
|
-
msgid "
|
|
647
|
+
msgid "Link title"
|
|
648
|
+
msgstr "Titre du lien"
|
|
649
|
+
|
|
650
|
+
msgid "Expires at"
|
|
95
651
|
msgstr ""
|
|
96
652
|
|
|
653
|
+
msgid "Never"
|
|
654
|
+
msgstr "Jamais"
|
|
655
|
+
|
|
656
|
+
msgid "Access"
|
|
657
|
+
msgstr "Accès"
|
|
658
|
+
|
|
659
|
+
msgid "Delete"
|
|
660
|
+
msgstr "Supprimer"
|
|
661
|
+
|
|
97
662
|
msgid "Copy link"
|
|
98
|
-
msgstr ""
|
|
663
|
+
msgstr "Copier le lien"
|
|
99
664
|
|
|
100
|
-
msgid "
|
|
665
|
+
msgid "Can view"
|
|
666
|
+
msgstr "Peut voir"
|
|
667
|
+
|
|
668
|
+
msgid "Can view restricted files of all versions of this record."
|
|
101
669
|
msgstr ""
|
|
670
|
+
"Peut afficher les fichiers restreints de toutes les versions de cet "
|
|
671
|
+
"enregistrement."
|
|
672
|
+
|
|
673
|
+
msgid "Can preview drafts"
|
|
674
|
+
msgstr "Peut prévisualiser les brouillons"
|
|
102
675
|
|
|
103
|
-
msgid "
|
|
676
|
+
msgid "Can view drafts and restricted files of all versions of this record."
|
|
104
677
|
msgstr ""
|
|
678
|
+
"Peut afficher les brouillons et les fichiers restreints de toutes les "
|
|
679
|
+
"versions de cet enregistrement."
|
|
680
|
+
|
|
681
|
+
msgid "Can edit"
|
|
682
|
+
msgstr "Peut éditer"
|
|
105
683
|
|
|
106
684
|
msgid ""
|
|
107
|
-
"
|
|
685
|
+
"Can edit drafts and view restricted files of all versions of this record."
|
|
108
686
|
msgstr ""
|
|
687
|
+
"Peut modifier les brouillons et afficher les fichiers restreints de toutes "
|
|
688
|
+
"les versions de cet enregistrement."
|
|
109
689
|
|
|
110
690
|
msgid ""
|
|
111
|
-
"
|
|
112
|
-
"
|
|
691
|
+
"Can view (view access link can be created only after the record is "
|
|
692
|
+
"published)"
|
|
113
693
|
msgstr ""
|
|
694
|
+
"Peut afficher (voir le lien d'accès ne peut être créé qu'après la "
|
|
695
|
+
"publication de l'enregistrement)"
|
|
114
696
|
|
|
115
|
-
msgid "
|
|
116
|
-
msgstr ""
|
|
697
|
+
msgid "Expires"
|
|
698
|
+
msgstr "Expire"
|
|
117
699
|
|
|
118
|
-
msgid "
|
|
119
|
-
msgstr "
|
|
700
|
+
msgid "This record has no links generated yet."
|
|
701
|
+
msgstr "Cet enregistrement n'a pas encore de liens générés."
|
|
120
702
|
|
|
121
|
-
msgid "
|
|
122
|
-
msgstr ""
|
|
703
|
+
msgid "Unable to change the access request settings."
|
|
704
|
+
msgstr "Impossible de modifier les paramètres de la demande d'accès."
|
|
123
705
|
|
|
124
|
-
msgid "
|
|
706
|
+
msgid "Allow authenticated users to request access to restricted files."
|
|
125
707
|
msgstr ""
|
|
708
|
+
"Autoriser les utilisateurs authentifiés à demander l'accès aux fichiers "
|
|
709
|
+
"restreints."
|
|
126
710
|
|
|
127
|
-
msgid "
|
|
711
|
+
msgid "Allow non-authenticated users to request access to restricted files."
|
|
128
712
|
msgstr ""
|
|
713
|
+
"Autoriser les utilisateurs non authentifiés à demander l'accès aux fichiers "
|
|
714
|
+
"restreints."
|
|
129
715
|
|
|
130
|
-
msgid "
|
|
131
|
-
msgstr "
|
|
716
|
+
msgid "Accept conditions"
|
|
717
|
+
msgstr "Accepter les conditions"
|
|
132
718
|
|
|
133
|
-
msgid "
|
|
134
|
-
msgstr "
|
|
719
|
+
msgid "Advanced options"
|
|
720
|
+
msgstr "Options avancées"
|
|
135
721
|
|
|
136
|
-
msgid "
|
|
137
|
-
msgstr ""
|
|
722
|
+
msgid "Save"
|
|
723
|
+
msgstr "Enregistrer"
|
|
138
724
|
|
|
139
|
-
msgid "
|
|
140
|
-
msgstr "
|
|
725
|
+
msgid "No user has access to this record yet."
|
|
726
|
+
msgstr "Aucun utilisateur n'a encore accès à cet enregistrement."
|
|
141
727
|
|
|
142
|
-
msgid "
|
|
143
|
-
msgstr "
|
|
728
|
+
msgid "People with access"
|
|
729
|
+
msgstr "Personnes ayant accès"
|
|
144
730
|
|
|
145
|
-
msgid "
|
|
146
|
-
msgstr ""
|
|
731
|
+
msgid "No group has access to this record yet."
|
|
732
|
+
msgstr "Aucun groupe n'a encore accès à cet enregistrement."
|
|
147
733
|
|
|
148
|
-
msgid "
|
|
149
|
-
msgstr ""
|
|
734
|
+
msgid "Groups with access"
|
|
735
|
+
msgstr "Groupes avec accès"
|
|
150
736
|
|
|
151
|
-
msgid "
|
|
152
|
-
msgstr ""
|
|
737
|
+
msgid "You"
|
|
738
|
+
msgstr "Vous"
|
|
153
739
|
|
|
154
|
-
msgid "
|
|
155
|
-
msgstr ""
|
|
740
|
+
msgid "Add people"
|
|
741
|
+
msgstr "Ajouter des personnes"
|
|
156
742
|
|
|
157
|
-
msgid "No
|
|
158
|
-
msgstr ""
|
|
743
|
+
msgid "No selected users"
|
|
744
|
+
msgstr "Aucun utilisateur sélectionné"
|
|
159
745
|
|
|
160
|
-
msgid "
|
|
746
|
+
msgid ""
|
|
747
|
+
"Search for users to grant access (only users with a public profile can be "
|
|
748
|
+
"invited)"
|
|
161
749
|
msgstr ""
|
|
750
|
+
"Recherche d'utilisateurs pour accorder l'accès (seuls les utilisateurs ayant"
|
|
751
|
+
" un profil public peuvent être invités)"
|
|
162
752
|
|
|
163
|
-
msgid "
|
|
164
|
-
msgstr "
|
|
753
|
+
msgid "Search by email, full name or username"
|
|
754
|
+
msgstr "Recherche par email, nom complet ou nom d'utilisateur"
|
|
165
755
|
|
|
166
|
-
msgid "
|
|
167
|
-
msgstr ""
|
|
756
|
+
msgid "users"
|
|
757
|
+
msgstr "utilisateurs"
|
|
168
758
|
|
|
169
|
-
msgid "
|
|
170
|
-
msgstr ""
|
|
759
|
+
msgid "Add groups"
|
|
760
|
+
msgstr "Ajouter des groupes"
|
|
171
761
|
|
|
172
|
-
msgid "
|
|
173
|
-
msgstr ""
|
|
762
|
+
msgid "Group"
|
|
763
|
+
msgstr "Groupe"
|
|
174
764
|
|
|
175
|
-
msgid "
|
|
176
|
-
msgstr ""
|
|
765
|
+
msgid "No selected groups"
|
|
766
|
+
msgstr "Aucun groupe sélectionné"
|
|
177
767
|
|
|
178
|
-
msgid "
|
|
179
|
-
msgstr ""
|
|
768
|
+
msgid "Search for groups"
|
|
769
|
+
msgstr "Recherche de groupes"
|
|
180
770
|
|
|
181
|
-
msgid "
|
|
182
|
-
msgstr ""
|
|
771
|
+
msgid "groups"
|
|
772
|
+
msgstr "groupes"
|
|
183
773
|
|
|
184
|
-
msgid "
|
|
185
|
-
msgstr ""
|
|
774
|
+
msgid "Add"
|
|
775
|
+
msgstr "Ajouter"
|
|
186
776
|
|
|
187
|
-
msgid "
|
|
188
|
-
msgstr ""
|
|
777
|
+
msgid "Notify people"
|
|
778
|
+
msgstr "Prévenez les gens"
|
|
189
779
|
|
|
190
|
-
msgid "
|
|
191
|
-
msgstr ""
|
|
780
|
+
msgid "Notification message"
|
|
781
|
+
msgstr "Message de notification"
|
|
192
782
|
|
|
193
|
-
msgid "
|
|
783
|
+
msgid "You are about to add"
|
|
784
|
+
msgstr "Vous êtes sur le point d'ajouter"
|
|
785
|
+
|
|
786
|
+
msgid "Access already granted"
|
|
787
|
+
msgstr "Accès déjà accordé"
|
|
788
|
+
|
|
789
|
+
msgid "Can manage"
|
|
790
|
+
msgstr "Peut gérer"
|
|
791
|
+
|
|
792
|
+
msgid ""
|
|
793
|
+
"Can manage access, edit drafts and view restricted files of all versions of "
|
|
794
|
+
"this record."
|
|
194
795
|
msgstr ""
|
|
796
|
+
"Peut gérer l'accès, modifier les brouillons et afficher les fichiers "
|
|
797
|
+
"restreints de toutes les versions de cet enregistrement."
|
|
798
|
+
|
|
799
|
+
msgid "You don't have permissions to share this record."
|
|
800
|
+
msgstr "Vous n'avez pas les autorisations pour partager cet enregistrement."
|
|
801
|
+
|
|
802
|
+
msgid "Share"
|
|
803
|
+
msgstr "Partager"
|
|
804
|
+
|
|
805
|
+
msgid "People"
|
|
806
|
+
msgstr "Personnes"
|
|
807
|
+
|
|
808
|
+
msgid "Groups"
|
|
809
|
+
msgstr "Groupes"
|
|
810
|
+
|
|
811
|
+
msgid "Settings"
|
|
812
|
+
msgstr "Paramètres"
|
|
195
813
|
|
|
196
|
-
msgid "
|
|
814
|
+
msgid "Share access"
|
|
815
|
+
msgstr "Partager l'accès"
|
|
816
|
+
|
|
817
|
+
msgid "Link expiration"
|
|
818
|
+
msgstr "Expiration du lien"
|
|
819
|
+
|
|
820
|
+
msgid "In 1 month"
|
|
821
|
+
msgstr "En 1 mois"
|
|
822
|
+
|
|
823
|
+
msgid "In 2 months"
|
|
824
|
+
msgstr "En 2 mois"
|
|
825
|
+
|
|
826
|
+
msgid "In 6 months"
|
|
827
|
+
msgstr "En 6 mois"
|
|
828
|
+
|
|
829
|
+
msgid "In 1 year"
|
|
830
|
+
msgstr "En 1 an"
|
|
831
|
+
|
|
832
|
+
msgid "Invalid date format."
|
|
833
|
+
msgstr "Format date invalide."
|
|
834
|
+
|
|
835
|
+
msgid "Access link expiration date cannot be in the past."
|
|
836
|
+
msgstr "La date d'expiration du lien d'accès ne peut pas être dans le passé."
|
|
837
|
+
|
|
838
|
+
msgid "Access request"
|
|
839
|
+
msgstr "Demande d'accès"
|
|
840
|
+
|
|
841
|
+
msgid "Unable to change the expiration request settings."
|
|
842
|
+
msgstr "Impossible de modifier les paramètres de la demande d'expiration."
|
|
843
|
+
|
|
844
|
+
msgid "Expiration date: "
|
|
845
|
+
msgstr "Date d'expiration:"
|
|
846
|
+
|
|
847
|
+
msgid ""
|
|
848
|
+
"Format: YYYY-MM-DD. Granted access will expire on the given date. Leave "
|
|
849
|
+
"empty to set no expiration limit."
|
|
197
850
|
msgstr ""
|
|
851
|
+
"Format: AAAA-MM-JJ. L'accès accordé expirera à la date indiquée. Laissez "
|
|
852
|
+
"vide pour ne définir aucune limite d'expiration."
|
|
853
|
+
|
|
854
|
+
msgid "Link expiration date:"
|
|
855
|
+
msgstr "Date d'expiration du lien:"
|
|
856
|
+
|
|
857
|
+
msgid "We couldn't find any matches for {{- search}}"
|
|
858
|
+
msgstr "Nous n'avons trouvé aucune correspondance pour {{-search}}"
|
|
198
859
|
|
|
199
860
|
msgid "Start over"
|
|
200
|
-
msgstr ""
|
|
861
|
+
msgstr "Commencer"
|
|
201
862
|
|
|
202
863
|
msgid "ProTip"
|
|
203
|
-
msgstr ""
|
|
864
|
+
msgstr "ProTip"
|
|
204
865
|
|
|
205
|
-
msgid "
|
|
206
|
-
msgstr ""
|
|
866
|
+
msgid "Search guide"
|
|
867
|
+
msgstr "Guide de recherche"
|
|
207
868
|
|
|
208
|
-
msgid "
|
|
869
|
+
msgid ""
|
|
870
|
+
"<0>For more tips, check out our <2>search guide</2> for defining advanced "
|
|
871
|
+
"search queries.</0>"
|
|
209
872
|
msgstr ""
|
|
873
|
+
"<0>Pour plus de conseils, consultez notre<2>guide de recherche</2>pour "
|
|
874
|
+
"définir des requêtes de recherche avancées.</0>"
|
|
210
875
|
|
|
211
|
-
msgid "
|
|
212
|
-
msgstr "
|
|
876
|
+
msgid "Search in my communities..."
|
|
877
|
+
msgstr "Rechercher dans mes communautés..."
|
|
213
878
|
|
|
214
|
-
msgid "
|
|
215
|
-
msgstr ""
|
|
879
|
+
msgid "View"
|
|
880
|
+
msgstr "Affichage"
|
|
881
|
+
|
|
882
|
+
msgid "Published in: {{publishedIn}}"
|
|
883
|
+
msgstr "Publié dans: {{publishedIn}}"
|
|
216
884
|
|
|
217
885
|
msgid "In review"
|
|
218
|
-
msgstr ""
|
|
886
|
+
msgstr "En revue"
|
|
219
887
|
|
|
220
888
|
msgid "Declined"
|
|
221
|
-
msgstr ""
|
|
889
|
+
msgstr "Décliné"
|
|
222
890
|
|
|
223
891
|
msgid "Expired"
|
|
224
|
-
msgstr ""
|
|
892
|
+
msgstr "Expiré"
|
|
225
893
|
|
|
226
894
|
msgid "Draft"
|
|
227
|
-
msgstr ""
|
|
895
|
+
msgstr "Projet"
|
|
228
896
|
|
|
229
897
|
msgid "New version draft"
|
|
230
|
-
msgstr ""
|
|
898
|
+
msgstr "Nouvelle version"
|
|
231
899
|
|
|
232
|
-
msgid "
|
|
233
|
-
msgstr ""
|
|
900
|
+
msgid "open"
|
|
901
|
+
msgstr "ouvert"
|
|
234
902
|
|
|
235
|
-
msgid "
|
|
236
|
-
msgstr ""
|
|
903
|
+
msgid "Open"
|
|
904
|
+
msgstr "Ouvrir"
|
|
237
905
|
|
|
238
|
-
msgid ""
|
|
239
|
-
|
|
240
|
-
"record & files."
|
|
241
|
-
msgstr ""
|
|
906
|
+
msgid "unlock"
|
|
907
|
+
msgstr "déverrouiller"
|
|
242
908
|
|
|
243
|
-
msgid "
|
|
244
|
-
msgstr ""
|
|
909
|
+
msgid "Get started!"
|
|
910
|
+
msgstr "Commencez!"
|
|
245
911
|
|
|
246
|
-
msgid "
|
|
247
|
-
msgstr ""
|
|
912
|
+
msgid "Make your first upload!"
|
|
913
|
+
msgstr "Faites votre premier téléchargement!"
|
|
248
914
|
|
|
249
|
-
msgid "
|
|
250
|
-
msgstr ""
|
|
915
|
+
msgid "New upload"
|
|
916
|
+
msgstr "Nouveau téléchargement"
|
|
251
917
|
|
|
252
|
-
msgid "
|
|
253
|
-
msgstr "
|
|
918
|
+
msgid "Search in my uploads..."
|
|
919
|
+
msgstr "Rechercher dans mes téléchargements..."
|
|
254
920
|
|
|
255
|
-
msgid "
|
|
256
|
-
msgstr "
|
|
921
|
+
msgid "ORCID profile"
|
|
922
|
+
msgstr "ORCID profil"
|
|
257
923
|
|
|
258
|
-
msgid "
|
|
924
|
+
msgid "ORCID logo"
|
|
259
925
|
msgstr ""
|
|
260
926
|
|
|
261
|
-
msgid "
|
|
262
|
-
msgstr ""
|
|
927
|
+
msgid "ROR profile"
|
|
928
|
+
msgstr "Profil de ROR"
|
|
263
929
|
|
|
264
|
-
msgid "
|
|
930
|
+
msgid "ROR logo"
|
|
265
931
|
msgstr ""
|
|
266
932
|
|
|
267
|
-
msgid "
|
|
268
|
-
msgstr "
|
|
933
|
+
msgid "GND profile"
|
|
934
|
+
msgstr "GND profil"
|
|
269
935
|
|
|
270
|
-
msgid "
|
|
936
|
+
msgid "GND logo"
|
|
271
937
|
msgstr ""
|
|
272
938
|
|
|
273
|
-
msgid "
|
|
939
|
+
msgid "No name"
|
|
274
940
|
msgstr ""
|
|
275
941
|
|
|
276
|
-
msgid "
|
|
942
|
+
msgid "and {{count}} other"
|
|
943
|
+
msgid_plural "and {{count}} other"
|
|
944
|
+
msgstr[0] ""
|
|
945
|
+
msgstr[1] ""
|
|
946
|
+
msgstr[2] ""
|
|
947
|
+
|
|
948
|
+
msgid "and {{count}} others"
|
|
949
|
+
msgid_plural "and {{count}} others"
|
|
950
|
+
msgstr[0] ""
|
|
951
|
+
msgstr[1] ""
|
|
952
|
+
msgstr[2] ""
|
|
953
|
+
|
|
954
|
+
msgctxt ""
|
|
955
|
+
"date:[2017-01-01 TO *]</0> will give you all the publications from 2017 "
|
|
956
|
+
"until today.</0>"
|
|
957
|
+
msgid "<0><0>metadata.publication"
|
|
277
958
|
msgstr ""
|
|
959
|
+
"metadata.publication_date:[2017-01-01 À *] vous donnera toutes les "
|
|
960
|
+
"publications de 2017 à aujourd'hui."
|