Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction traduction by dans l'éditeur de texte #984

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bd49d94
init PR
RochDLY Nov 30, 2023
f9e0049
interface en-fr: try to fix errors in workingVersion.jsx and Versions…
RochDLY Nov 30, 2023
234f405
interface en-fr: test suppression de la variable {{owner}} dans la cl…
RochDLY Nov 30, 2023
05cda5a
ajout de la variable {{owner}} dans le texte associé aux versions d'u…
RochDLY Mar 8, 2024
b4107d3
test ajout des balises dans le json des traductions
RochDLY Mar 9, 2024
3dd0aa2
suppression de la balise strong dans le json des traductions
RochDLY Mar 9, 2024
f5324b8
traduction en-fr : ajout d'une clef pour le terme by dans les version…
RochDLY Mar 11, 2024
aa1494b
Update dependency davidbgk/stylo-export to v1
ggrossetie Dec 3, 2023
e5e4393
resolves #992 purge les images Docker
ggrossetie Dec 6, 2023
9d8c994
Release 3.0.7
Dec 6, 2023
c2b6953
resolves #993 récupère la dernière version des articles d'un corpus
ggrossetie Dec 14, 2023
b467b23
ajout d'une section de documentation → bibliographie cas particuliers
lakonis Dec 6, 2023
9d6b4f2
add tips "section Extra"
lakonis Dec 13, 2023
1260913
GraphQL introduction EN/FR
Jan 24, 2024
95591de
Modifs api-graphql.md
cgermain97 Feb 10, 2024
e64e1be
Apply suggestions from code review
cgermain97 Feb 22, 2024
a98e086
Update api-graphql.md avec changements de Roch
cgermain97 Feb 22, 2024
9108f6d
Update api-graphql.md avec la version fr
cgermain97 Feb 22, 2024
0494a07
Correction des codes
cgermain97 Feb 22, 2024
4301041
Correction du code fr
cgermain97 Feb 22, 2024
d43e299
init PR
RochDLY Nov 30, 2023
3c5de23
Merge branch 'master' into multilingue-correction-trad
RochDLY Mar 11, 2024
116b298
correction erreur syntaxe dans le docker-compose.yaml
RochDLY Mar 11, 2024
a564a4b
Merge branch 'master' into multilingue-correction-trad
ggrossetie Oct 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion front/src/components/Write/Versions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function Version ({ articleId, compareTo, readOnly, selectedVersion, v }) {
{!renaming && <p>
{v.owner && (
<span className={styles.author}>
by <strong>{v.owner.displayName || v.owner.username}</strong>
{t('article.by.text')}
RochDLY marked this conversation as resolved.
Show resolved Hide resolved
</span>
)}
<span className={styles.momentsAgo}>
Expand Down
2 changes: 1 addition & 1 deletion front/src/components/Write/WorkingVersion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function WorkingVersion ({ articleInfos, live, selectedVersion, m
<section>
<div className={styles.meta}>
<ul className={styles.byLine}>
<li className={styles.owners}>by {articleOwnerAndContributors.join(', ')}</li>
<li className={styles.owners}>{t('workingVersion.by.text')} {articleOwnerAndContributors.join(', ')}</li>
<li className={styles.version}>
<ArticleVersion version={live.version}/>
</li>
Expand Down
3 changes: 2 additions & 1 deletion front/src/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,6 @@
"workingVersion.stateUiProps.savedText": "Last saved",
"workingVersion.stateUiProps.savingText": "Saving",
"workingVersion.stateUiProps.saveErrorText": "Error",
"workingVersion.spanWorkingCopy.text": "working copy"
"workingVersion.spanWorkingCopy.text": "working copy",
"workingVersion.by.text": "by"
}
3 changes: 2 additions & 1 deletion front/src/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,5 +175,6 @@
"workingVersion.stateUiProps.savedText": "Dernière sauvegarde",
"workingVersion.stateUiProps.savingText": "En cours de sauvegarde",
"workingVersion.stateUiProps.saveErrorText": "Erreur",
"workingVersion.spanWorkingCopy.text": "version de travail"
"workingVersion.spanWorkingCopy.text": "version de travail",
"workingVersion.by.text": "par"
}
Loading