Index: gc_lang/fr/modules-js/conj_generator.js ================================================================== --- gc_lang/fr/modules-js/conj_generator.js +++ gc_lang/fr/modules-js/conj_generator.js @@ -12,11 +12,11 @@ conjugate: function (sVerb, sVerbTag="i_____a", bVarPpas=true) { let lConj = []; let cGroup = this.getVerbGroupChar(sVerb); for (let [nCut, sAdd, sFlexTags, sPattern] of this.getConjRules(sVerb)) { - if (!sPattern || RegExp(sPattern).test(sLemma)) { + if (!sPattern || RegExp(sPattern).test(sVerb)) { lConj.push( [sVerb.slice(0, -nCut) + sAdd, ":V" + cGroup + "_" + sVerbTag + sFlexTags] ); } } return lConj; },