Overview
| Comment: | [njs] fix labels and few mistakes |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | njs | nodejs |
| Files: | files | file ages | folders |
| SHA3-256: |
23d95509f43636be7e5c19e2b3fbd764 |
| User & Date: | olr on 2018-10-17 16:07:31 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-10-21
| ||
| 14:37 | Sync to trunk check-in: 18924f57b4 user: IllusionPerdu tags: nodejs | |
|
2018-10-17
| ||
| 16:35 | [njs] merge nodejs: build package for NodeJS check-in: 3e32004d0a user: olr tags: trunk, njs | |
| 16:07 | [njs] fix labels and few mistakes check-in: 23d95509f4 user: olr tags: njs, nodejs | |
| 14:21 | [build][fr] build NodeJS package check-in: 401f29a39d user: olr tags: fr, build, nodejs | |
Changes
Modified gc_lang/fr/nodejs/cli/bin/gramma-cli.js from [cbc4196f53] to [d5a9326889].
| ︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | - + - + - + - + - + - + - + - + |
arg: "",
description: "Affiche les informations que vous lisez ;)",
execute: ""
},
perf: {
short: "",
arg: "on/off",
|
| ︙ | |||
170 171 172 173 174 175 176 | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | - + |
for (const action of ["morph", "lemma"]) {
if (action in oRep) {
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) {
|
| ︙ | |||
194 195 196 197 198 199 200 | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | - + |
}
if ("spell" in oRep) {
for (const toAff of oRep.spell) {
if (toAff.text == "NoText") {
repText += "\nSpell: Pas de texte à vérifier.";
} else {
|
| ︙ | |||
228 229 230 231 232 233 234 | 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | - + |
}
}
}
if ("format" in oRep) {
for (const toAff of oRep.format) {
if (toAff.text == "NoText") {
|
| ︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | - + - + |
let ascii1, ascii1a, numRep1, ascii2, numRep2, replength;
ascii1 = "├";
ascii1a = "│";
numRep1 = 0;
replength = Object.keys(toAff.reponse.lGrammarErrors).length;
if (replength == 0) {
|
| ︙ | |||
311 312 313 314 315 316 317 | 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | - + - + |
}
ascii1 = "├";
ascii1a = "│";
numRep1 = 0;
replength = Object.keys(toAff.reponse.lSpellingErrors).length;
if (replength == 0) {
|
| ︙ |
Modified gc_lang/fr/nodejs/note.md from [9cf07414eb] to [55b550e7af].
| 1 2 3 4 5 6 7 8 | - + |
|
| ︙ |