Index: gc_lang/fr/modules-js/gce_suggestions.js ================================================================== --- gc_lang/fr/modules-js/gce_suggestions.js +++ gc_lang/fr/modules-js/gce_suggestions.js @@ -220,11 +220,12 @@ return gc_engine.oSpellChecker.getLemma(sFlex).filter(sStem => conj.isVerb(sStem)).join("|"); } const _dQuiEst = new Map ([ - ["je", ":1s"], ["j’", ":1s"], ["tu", ":2s"], ["il", ":3s"], ["on", ":3s"], ["elle", ":3s"], ["iel", ":3s"], + ["je", ":1s"], ["j’", ":1s"], ["tu", ":2s"], + ["il", ":3s"], ["on", ":3s"], ["elle", ":3s"], ["iel", ":3s"], ["ce", ":3s"], ["ça", ":3s"], ["cela", ":3s"], ["ceci", ":3s"], ["nous", ":1p"], ["vous", ":2p"], ["ils", ":3p"], ["elles", ":3p"], ["iels", ":3p"] ]); const _dModeSugg = new Map([ ["es", "aies"], ["aies", "es"], ["est", "ait"], ["ait", "est"] ]); Index: gc_lang/fr/modules/gce_suggestions.py ================================================================== --- gc_lang/fr/modules/gce_suggestions.py +++ gc_lang/fr/modules/gce_suggestions.py @@ -169,11 +169,12 @@ def suggVerbInfi (sFlex): "returns infinitive forms of " return "|".join([ sStem for sStem in _oSpellChecker.getLemma(sFlex) if conj.isVerb(sStem) ]) -_dQuiEst = { "je": ":1s", "j’": ":1s", "tu": ":2s", "il": ":3s", "on": ":3s", "elle": ":3s", "iel": ":3s", \ +_dQuiEst = { "je": ":1s", "j’": ":1s", "tu": ":2s", \ + "il": ":3s", "on": ":3s", "elle": ":3s", "iel": ":3s", "ce": ":3s", "ça": ":3s", "cela": ":3s", "ceci": ":3s", \ "nous": ":1p", "vous": ":2p", "ils": ":3p", "elles": ":3p", "iels": ":3p" } _dModeSugg = { "es": "aies", "aies": "es", "est": "ait", "ait": "est" } def suggVerbMode (sFlex, cMode, sSuj): Index: gc_lang/fr/modules/tests_modules.py ================================================================== --- gc_lang/fr/modules/tests_modules.py +++ gc_lang/fr/modules/tests_modules.py @@ -67,10 +67,12 @@ ("email", "courriel"), ("fatiqué", "fatigué"), ("coeur", "cœur"), ("trèèèèèèèèès", "très"), ("vraaaaiiiimeeeeennnt", "vraiment"), + ("oeil", "œil"), + ("Oeil", "Œil"), ("apele", "appel"), ("Co2", "CO₂"), ("emmppâiiiller", "empailler"), ("testt", "test"), ("apelaion", "appellation"),