Skip to content

Commit

Permalink
fix: missing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentauger committed Dec 5, 2024
1 parent cab8769 commit 49592eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion resources/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@
"cant-download": "You are not authorized to download this file.",
"publication-previous-version": "This is a previous version of the publication",
"unauthenticated-orcid-id": "Unauthenticated ORCID iD",
"authors": "Authors"
"authors": "Authors",
"upload-a-new-version-of-the-publication": "Upload a new version of the publication",
"upload-the-publication": "Upload the publication"
},
"create-author-dialog": {
"title": "Create a new author"
Expand Down
4 changes: 3 additions & 1 deletion resources/src/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@
"cant-download": "Vous n'êtes pas autorisé à télécharger ce fichier.",
"publication-previous-version": "Ceci est une version précédente de la publication",
"unauthenticated-orcid-id": "ORCID iD Non authentifié",
"authors": "Auteurs"
"authors": "Auteurs",
"upload-a-new-version-of-the-publication": "Télécharger une nouvelle version de la publication",
"upload-the-publication": "Téléchargez la publication"
},
"create-author-dialog": {
"title": "Créer un nouvel auteur"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ watch(publicationFile, () => {
use-chips
:label="
publicationResourceList?.data
? 'Upload a new version of the publication'
: 'Upload the publication'
? t('common.upload-a-new-version-of-the-publication')
: t('common.upload-the-publication')
"
:hint="t('mrf.upload-hint', { max: maxFileSizeMB })"
accept="application/pdf"
Expand Down

0 comments on commit 49592eb

Please sign in to comment.