Overview
Comment: | [core][fr] improve suggSimil: filter names derivating from verbs, code clarification [fr] update suggestions tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr | core |
Files: | files | file ages | folders |
SHA3-256: |
2281684b2deb9309b1f4b8dcc796d723 |
User & Date: | olr on 2021-01-25 18:27:03 |
Other Links: | manifest | tags |
Context
2021-01-26
| ||
14:44 | [core][fr] avoid and check suggestions duplicates check-in: 624e793673 user: olr tags: trunk, fr, core | |
2021-01-25
| ||
18:27 | [core][fr] improve suggSimil: filter names derivating from verbs, code clarification [fr] update suggestions tests check-in: 2281684b2d user: olr tags: trunk, fr, core | |
15:12 | [fr] suggestions: verbe-nous -> interrogatif + impératif check-in: 623e5fc83d user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/modules-js/conj.js from [9439cc3700] to [03aa2c6aa7].
︙ | |||
85 86 87 88 89 90 91 | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - - - - + + + + + + - - - - + + + - - - - - - + + - - - - - - - - - - - - - + - - - - - - - - - - - - - - - + + - - - - - + + + + + + - | // returns raw informations about sVerb if (!this._dVerb.hasOwnProperty(sVerb)) { return null; } return this._lVtyp[this._dVerb[sVerb][0]]; }, |
︙ | |||
634 635 636 637 638 639 640 | 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | - + | exports._dImpeProNegEn = conj._dImpeProNegEn; exports._dGroup = conj._dGroup; exports._dTenseIdx = conj._dTenseIdx; exports.isVerb = conj.isVerb; exports.getConj = conj.getConj; exports.hasConj = conj.hasConj; exports.getVtyp = conj.getVtyp; |
Modified gc_lang/fr/modules-js/gce_suggestions.js from [e69e781426] to [c7763dfdd8].
︙ | |||
603 604 605 606 607 608 609 | 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 | - + - + + + + - - + + + + + + + + + + | } function hasSimil (sWord, sPattern=null) { return phonet.hasSimil(sWord, sPattern); } function suggSimil (sWord, sPattern=null, bSubst=false, bVC=false) { |
︙ |
Modified gc_lang/fr/modules/conj.py from [9d698bfb2e] to [542bdbf844].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + | def getVtyp (sVerb): "returns raw informations about sVerb" if sVerb not in _dVerb: return None return _lVtyp[_dVerb[sVerb][0]] |
︙ |
Modified gc_lang/fr/modules/gce_suggestions.py from [9319456bd1] to [4f758a8cb1].
︙ | |||
460 461 462 463 464 465 466 | 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | - + - + + + + + + + + - - + + | def hasSimil (sWord, sPattern=None): "return True if there is words phonetically similar to <sWord> (according to <sPattern> if required)" return phonet.hasSimil(sWord, sPattern) def suggSimil (sWord, sPattern=None, bSubst=False, bVC=False): |
︙ |
Modified gc_lang/fr/rules.grx from [008b0113f0] to [01736fd21b].
︙ | |||
7350 7351 7352 7353 7354 7355 7356 | 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 | - - + + | TEST: {{Ont}} ne sait jamais quoi faire ->> On TEST: si {{ont}} donne à ces gens, ça n’en finit plus. ->> on TEST: {{Ont}} viens ! ->> On TEST: {{Ont}} ne sait pas comment faire. ->> On TEST: ce livre qu’{{ont}} t’apporte ->> on TEST: ouais, c’est ça, {{ont}} t’assure que c’est vrai ->> on TEST: {{Ont}} lui avait donné du temps ->> On |
︙ | |||
8051 8052 8053 8054 8055 8056 8057 | 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 | - + | TEST: un {{maintient}} difficile. ->> maintien TEST: cette {{plaît}} est infectée. ->> plaie TEST: ledit {{soutient}} ne vaut rien ->> soutien TEST: {{ce}} {{rappelle}} n’en finit pas. ->> se|||rappel TEST: mon {{rackette}} n’a pas porté les fruits espérés. ->> racket TEST: mon {{impacte}} ->> impact TEST: ton {{recèle}} avait été dévoilé ->> recel |
︙ | |||
8139 8140 8141 8142 8143 8144 8145 | 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 | - + - - - + + + - + | à un @:V¬:[GNAWMB] <<- /conf/ not value(<1, "|un|") -3>> =suggSimil(\3, ":[NA].*:[me]:[si]", True) && Incohérence : après “\1 \2”, on devrait trouver un substantif masculin. à une @:V¬:[GNAWMB] <<- /conf/ not value(<1, "|une|") -3>> =suggSimil(\3, ":[NA].*:[fe]:[si]", True) && Incohérence : après “\1 \2”, on devrait trouver un substantif féminin. TEST: à le {{poussait}} ->> pousser |
︙ | |||
8204 8205 8206 8207 8208 8209 8210 | 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 | - + - + - + - + | -3>> =suggSimil(\3, ":[NA].*:[me]:[si]", True) && Incohérence avec “\1\2” : “\3” est une forme verbale. d’ une @:[123][sp]¬:[GNA] <<- /conf/ not \3.istitle() and not value(<1, "|plus|moins|") -3>> =suggSimil(\3, ":[NA].*:[fe]:[si]", True) && Incohérence avec “\1\2” : “\3” est une forme verbale. TEST: d’un {{œillait}} ->> œillet |
︙ | |||
8386 8387 8388 8389 8390 8391 8392 | 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 | - + | TEST: et avec ça elle aussi {{avancés}}. ->> avancée|avançait TEST: et avec ça seulement elle aussi {{mangées}}. ->> mangée|mangeait __conf_en_tant_que_subst__ en tant [que|qu’] @:V¬:[NAG] |
︙ | |||
11627 11628 11629 11630 11631 11632 11633 | 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 | - + | TEST: tu {{ma}} prise par surprise ->> m’as TEST: il {{ma}} tuée ->> m’a TEST: cette femme ne {{ma}} prise que deux fois ->> m’a TEST: {{on}} {{ma}} dézinguée ->> ont|||m’a TEST: ça {{ma}} {{foutu}} en l’air ->> m’a|||foutue TEST: cet homme {{ma}} succédé à ce poste ->> m’a |
︙ |