Index: gc_lang/fr/nodejs/cli/bin/gramma-cli.js ================================================================== --- gc_lang/fr/nodejs/cli/bin/gramma-cli.js +++ gc_lang/fr/nodejs/cli/bin/gramma-cli.js @@ -40,23 +40,23 @@ execute: "" }, perf: { short: "", arg: "on/off", - description: "Permet d’afficher le temps d’exécution des commandes.", + description: "Affiche le temps d’exécution des commandes.", execute: "" }, json: { short: "", arg: "on/off", - description: "Réponse en format format json.", + description: "Réponse au format JSON.", execute: "" }, exit: { short: "", arg: "", - description: "Client interactif: Permet de le quitter.", + description: "Client interactif: Quitter.", execute: "" }, text: { short: "", arg: "texte", @@ -64,23 +64,23 @@ execute: "" }, format: { short: "", arg: "texte", - description: "Permet de mettre en forme le texte.", + description: "Corrige la typographie du texte.", execute: "formatText" }, check: { short: "", arg: "texte", - description: "Vérifie la grammaire et l’orthographe d'un texte.", + description: "Vérifie la grammaire et l’orthographe du texte.", execute: "verifParagraph" }, lexique: { short: "", arg: "texte", - description: "Affiche le lexique du texte.", + description: "Affiche les données lexicales de chaque mot du texte.", execute: "lexique" }, spell: { short: "", arg: "mot", @@ -94,17 +94,17 @@ execute: "suggest" }, morph: { short: "", arg: "mot", - description: "Affiche les informations pour un mot.", + description: "Affiche les données grammaticales (et éventuellement autres) du mot.", execute: "morph" }, lemma: { short: "", arg: "mot", - description: "Donne le lemme d’un mot.", + description: "Donne le(s) lemme(s) d’un mot.", execute: "lemma" }, gceoption: { short: "", arg: "+/-name", @@ -172,11 +172,11 @@ for (const toAff of oRep[action]) { if (toAff.text == "NoText") { repText += "\n" + toTitle(action) + ": Pas de texte à vérifier."; } else { if (toAff.reponse.length == 0) { - repText += "\nAuncun " + toTitle(action) + " existant pour: «" + toAff.text + "»"; + repText += "\nAucun " + toTitle(action) + " existant pour: «" + toAff.text + "»"; } else { let ascii = "├"; let numRep = 0; repText += "\n" + toTitle(action) + " possible de: «" + toAff.text + "»"; for (let reponse of toAff.reponse) { @@ -196,11 +196,11 @@ if ("spell" in oRep) { for (const toAff of oRep.spell) { if (toAff.text == "NoText") { repText += "\nSpell: Pas de texte à vérifier."; } else { - repText += "\nLe mot «" + toAff.text + "» " + (toAff.reponse ? "existe" : "innexistant"); + repText += "\nLe mot «" + toAff.text + "» " + (toAff.reponse ? "existe" : "inexistant"); repText += affPerf(toAff.time); } } } @@ -230,11 +230,11 @@ } if ("format" in oRep) { for (const toAff of oRep.format) { if (toAff.text == "NoText") { - repText += "\nPas de texte à formatter."; + repText += "\nPas de texte à formater."; } else { repText += "\nMise en forme:\n" + toAff.reponse; repText += affPerf(toAff.time); } } @@ -286,13 +286,13 @@ ascii1 = "├"; ascii1a = "│"; numRep1 = 0; replength = Object.keys(toAff.reponse.lGrammarErrors).length; if (replength == 0) { - repText += "\nPas de faute de grammaire"; + repText += "\nPas d’erreurs grammaticales trouvées"; } else { - repText += "\nFaute(s) de grammaire"; + repText += "\nErreur(s) grammaticale(s)"; for (let gramma of toAff.reponse.lGrammarErrors) { numRep1++; if (numRep1 == replength) { ascii1 = "└"; ascii1a = " "; @@ -313,13 +313,13 @@ ascii1 = "├"; ascii1a = "│"; numRep1 = 0; replength = Object.keys(toAff.reponse.lSpellingErrors).length; if (replength == 0) { - repText += "\nPas de faute d'orthographe"; + repText += "\nPas d’erreurs orthographiques trouvées"; } else { - repText += "\nFaute(s) d'orthographe"; + repText += "\nErreur(s) orthographique(s)"; for (let ortho of toAff.reponse.lSpellingErrors) { numRep1++; if (numRep1 == replength) { ascii1 = "└"; ascii1a = " "; Index: gc_lang/fr/nodejs/note.md ================================================================== --- gc_lang/fr/nodejs/note.md +++ gc_lang/fr/nodejs/note.md @@ -1,6 +1,6 @@ -# Note pour le dévellepement pour NodeJS +# Note pour le développement pour NodeJS ## Commande pour définir l’utilisation d’un paquetage local ``` cd core