Overview
Comment: | [fr] Ajout des "conj." oubliés pour l’utilisation de la fonction getConj |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fr | webext2_fix |
Files: | files | file ages | folders |
SHA3-256: |
b869868cd317c3b8a7b6d9f34fd99fbc |
User & Date: | IllusionPerdu on 2017-08-06 01:47:49 |
Original Comment: | [FIX JS] Ajout des "conj." oublier pour l'utilisation de la fonction getConj |
Other Links: | branch diff | manifest | tags |
Context
2017-08-06
| ||
01:52 | [core][js] remplacement de "echo" par "helpers.echo" vu que le helpers est déjà dans les requires check-in: 8aac817ecd user: IllusionPerdu tags: core, webext2_fix | |
01:47 | [fr] Ajout des "conj." oubliés pour l’utilisation de la fonction getConj check-in: b869868cd3 user: IllusionPerdu tags: fr, webext2_fix | |
01:43 | [core][fr][js] Remplacement des “compréhensions de tableau” par du code supporté par un plus grand nombre d’interpréteurs JS : permet de fonctionner sur Chrome et NodeJS check-in: 51348d75f8 user: IllusionPerdu tags: core, webext2_fix | |
Changes
Modified gc_lang/fr/modules-js/conj.js from [4d0235196d] to [ed04ee6c92].
︙ | ︙ | |||
334 335 336 337 338 339 340 | participePresent (bPro, bNeg, bTpsCo, bInt, bFem) { if (!this.dConj.get(":PQ").get(":P")) { return ""; } let sPartPre; if (bTpsCo) { | | | 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | participePresent (bPro, bNeg, bTpsCo, bInt, bFem) { if (!this.dConj.get(":PQ").get(":P")) { return ""; } let sPartPre; if (bTpsCo) { sPartPre = (!bPro) ? conj._getConjWithTags(this.sVerbAux, this._tTagsAux, ":PQ", ":P") : conj.getConj("être", ":PQ", ":P"); } else { sPartPre = this.dConj.get(":PQ").get(":P"); } if (sPartPre === "") { return ""; } let bEli = conj._zStartVoy.test(sPartPre); |
︙ | ︙ | |||
370 371 372 373 374 375 376 | return ""; } let sConj; if (!bTpsCo && bInt && sWho == ":1s" && this.dConj.get(sTemps).gl_get(":1ś", false)) { sWho = ":1ś"; } if (bTpsCo) { | | | 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | return ""; } let sConj; if (!bTpsCo && bInt && sWho == ":1s" && this.dConj.get(sTemps).gl_get(":1ś", false)) { sWho = ":1ś"; } if (bTpsCo) { sConj = (!bPro) ? conj._getConjWithTags(this.sVerbAux, this._tTagsAux, sTemps, sWho) : conj.getConj("être", sTemps, sWho); } else { sConj = this.dConj.get(sTemps).get(sWho); } if (sConj === "") { return ""; } let bEli = conj._zStartVoy.test(sConj); |
︙ | ︙ | |||
431 432 433 434 435 436 437 | imperatif (sWho, bPro, bNeg, bTpsCo, bFem) { if (!this.dConj.get(":E").get(sWho)) { return ""; } let sImpe; if (bTpsCo) { | | | 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | imperatif (sWho, bPro, bNeg, bTpsCo, bFem) { if (!this.dConj.get(":E").get(sWho)) { return ""; } let sImpe; if (bTpsCo) { sImpe = (!bPro) ? conj._getConjWithTags(this.sVerbAux, this._tTagsAux, ":E", sWho) : conj.getConj("être", ":E", sWho); } else { sImpe = this.dConj.get(":E").get(sWho); } if (sImpe === "") { return ""; } let bEli = conj._zStartVoy.test(sImpe); |
︙ | ︙ |