Overview
Comment: | [fr][js] suggestion des graphies similaires |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr |
Files: | files | file ages | folders |
SHA3-256: |
6ff5d2733ac240ace0ed095f651f78c4 |
User & Date: | olr on 2017-10-10 13:40:13 |
Other Links: | manifest | tags |
Context
2017-10-10
| ||
15:51 | [fr] sécurisation d’une condition check-in: 79a81f04cf user: olr tags: trunk, fr | |
14:30 | merge trunk check-in: d25e2ed843 user: olr tags: webext3 | |
13:40 | [fr][js] suggestion des graphies similaires check-in: 6ff5d2733a user: olr tags: trunk, fr | |
13:09 | [fr] pt: faire illusion check-in: 9680cc2a5f user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/modules-js/conj.js from [57af7c3c72] to [20daa8dfaa].
︙ | |||
79 80 81 82 83 84 85 | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | - + - + | // returns raw informations about sVerb if (!this._dVerb.hasOwnProperty(sVerb)) { return null; } return this._lVtyp[this._dVerb[sVerb][0]]; }, |
︙ | |||
122 123 124 125 126 127 128 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | - - - | aSugg.add(this._getConjWithTags(sInfi, tTags, ":PQ", ":Q3")); aSugg.add(this._getConjWithTags(sInfi, tTags, ":PQ", ":Q4")); aSugg.delete(""); // if there is only one past participle (epi inv), unreliable. if (aSugg.size === 1) { aSugg.clear(); } |
︙ |
Modified gc_lang/fr/modules-js/gce_suggestions.js from [0d3c06e52f] to [a844f36535].
︙ | |||
486 487 488 489 490 491 492 | 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 | - + - - + + | return ""; } function hasSimil (sWord, sPattern=null) { return phonet.hasSimil(sWord, sPattern); } |
︙ |
Modified gc_lang/fr/modules-js/phonet.js from [b4e35b2c18] to [409fa52cbe].
︙ | |||
62 63 64 65 66 67 68 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | - + | return this._lSet[this._dWord.get(sWord)]; } } return []; }, selectSimil: function (sWord, sPattern) { |
︙ |