Overview
Comment: | [fr][bug] lexicographe: ne pas ajouter l’infinitif si pas nécessaire |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fr | Lexicographe |
Files: | files | file ages | folders |
SHA3-256: |
266d287c505501bda1cafb009d1206b9 |
User & Date: | olr on 2017-11-01 10:29:28 |
Other Links: | branch diff | manifest | tags |
Context
2017-11-01
| ||
10:35 | [fr] lexicographe: useless code (WTF?) check-in: 4cfb006e3a user: olr tags: fr, Lexicographe | |
10:29 | [fr][bug] lexicographe: ne pas ajouter l’infinitif si pas nécessaire check-in: 266d287c50 user: olr tags: fr, Lexicographe | |
10:04 | [fr] locutions: màj des fichiers json/py check-in: 896e89f0d9 user: olr tags: fr, Lexicographe | |
Changes
Modified gc_lang/fr/modules-js/lexicographe.js from [c64e56ddcf] to [8ad217b431].
︙ | ︙ | |||
330 331 332 333 334 335 336 | let m; while ((m = this._zTag.exec(sTags)) !== null) { sRes += _dTAGS.get(m[0]); if (sRes.length > 100) { break; } } | | | 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | let m; while ((m = this._zTag.exec(sTags)) !== null) { sRes += _dTAGS.get(m[0]); if (sRes.length > 100) { break; } } if (sRes.startsWith(" verbe") && !sRes.includes("infinitif")) { sRes += " [" + sTags.slice(1, sTags.indexOf(" ")) + "]"; } if (!sRes) { sRes = "#Erreur. Étiquette inconnue : [" + sTags + "]"; helpers.echo(sRes); return sRes; } |
︙ | ︙ |