Differences From Artifact [5b98fc996d]:
- File gc_lang/fr/modules-js/conj.js — part of check-in [d804292a86] at 2018-01-29 09:54:13 on branch trunk — [fx] lexicon editor: conjugate a verb according to another verb (user: olr, size: 22192) [annotate] [blame] [check-ins using]
To Artifact [4a1c359666]:
- File gc_lang/fr/modules-js/conj.js — part of check-in [d6f8f5c533] at 2018-01-29 19:53:43 on branch trunk — [fx] update: lexicon editor, use verb pattern, + participes passés (user: olr, size: 22233) [annotate] [blame] [check-ins using]
| ︙ | |||
191 192 193 194 195 196 197 198 199 200 201 202 203 204 | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | + |
this.sVerb = sVerb;
this.sVerbAux = "";
this._sRawInfo = conj.getVtyp(sVerbPattern);
this.sInfo = this._readableInfo(this._sRawInfo);
this._tTags = conj._getTags(sVerbPattern);
this._tTagsAux = conj._getTags(this.sVerbAux);
this.bProWithEn = (this._sRawInfo[5] === "e");
this.cGroup = this._sRawInfo[0];
this.dConj = new Map ([
[":Y", new Map ([
["label", "Infinitif"],
[":", sVerb]
])],
[":P", new Map ([
["label", "Participe présent"],
|
| ︙ |