Overview
| Comment: | [fr] suggestions pour pronoms 3s oubliés |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fr |
| Files: | files | file ages | folders |
| SHA3-256: |
8448710ef45939a3f7074dcf5b39faa4 |
| User & Date: | olr on 2025-09-11 08:58:03 |
| Other Links: | manifest | tags |
Context
|
2025-09-11
| ||
| 08:59 | [fr] mise à jour du dictionnaire check-in: e7c847b869 user: olr tags: trunk, fr | |
| 08:58 | [fr] suggestions pour pronoms 3s oubliés check-in: 8448710ef4 user: olr tags: trunk, fr | |
| 08:53 | [fr] faux positifs et ajustements check-in: 681ec7df5e user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/modules-js/gce_suggestions.js from [151736e5ff] to [892d5de9c2].
| ︙ | |||
218 219 220 221 222 223 224 | 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | - + + |
function suggVerbInfi (sFlex) {
return gc_engine.oSpellChecker.getLemma(sFlex).filter(sStem => conj.isVerb(sStem)).join("|");
}
const _dQuiEst = new Map ([
|
| ︙ |
Modified gc_lang/fr/modules/gce_suggestions.py from [9dada763ac] to [5a4efccbe8].
| ︙ | |||
167 168 169 170 171 172 173 | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | - + + |
def suggVerbInfi (sFlex):
"returns infinitive forms of <sFlex>"
return "|".join([ sStem for sStem in _oSpellChecker.getLemma(sFlex) if conj.isVerb(sStem) ])
|
| ︙ |
Modified gc_lang/fr/modules/tests_modules.py from [aa5034cf77] to [4ad642ab21].
| ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | + + |
("ditirembique", "dithyrambique"),
("jai", "j’ai"),
("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"),
("exsepttion", "exception"),
("sintaxik", "syntaxique"),
|
| ︙ |