Overview
Comment: | Ajustement pour retrouver les informations des locutions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fr | Lexicographe |
Files: | files | file ages | folders |
SHA3-256: |
70a2417975c9a267b7f06c4729bc8428 |
User & Date: | IllusionPerdu on 2017-10-31 19:47:21 |
Other Links: | branch diff | manifest | tags |
Context
2017-10-31
| ||
20:42 | Changement mineur check-in: eda5a34bc9 user: IllusionPerdu tags: fr, Lexicographe | |
19:47 | Ajustement pour retrouver les informations des locutions check-in: 70a2417975 user: IllusionPerdu tags: fr, Lexicographe | |
2017-10-30
| ||
21:08 | [fr] lexicographe: màj du CSS check-in: b08a87e4bf user: olr tags: fr, Lexicographe | |
Changes
Modified gc_lang/fr/data/locutions.txt from [e32c77973b] to [0eb5a79076].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - - - - - - - - - - - - - - + + + + + + + + + + + + + + |
|
Modified gc_lang/fr/modules-js/lexicographe.js from [56a7e98a7a] to [30978ab7a1].
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | - + + + - - - - | [':Oi', " pronom indéfini,"], [':On', " pronom indéfini négatif,"], [':Ot', " pronom interrogatif,"], [':Or', " pronom relatif,"], [':Ow', " pronom adverbial,"], [':Os', " pronom personnel sujet,"], [':Oo', " pronom personnel objet,"], |
︙ | |||
104 105 106 107 108 109 110 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | - + + + + + + + + + + + + + + + + + + + + + + + + + + + | [';S', " : symbole (unité de mesure)"], ['/*', ""], ['/C', " {classique}"], ['/M', ""], ['/R', " {réforme}"], ['/A', ""], |
︙ | |||
314 315 316 317 318 319 320 321 322 323 324 325 326 327 | 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | + + + + + + + + + + + + + + + + + + + + + + + + | if (!sRes) { sRes = "#Erreur. Étiquette inconnue : [" + sTags + "]"; helpers.echo(sRes); return sRes; } return sRes.gl_trimRight(","); } _formatTagsLoc (sTags) { let sRes = ""; let sTagsVerb = sTags.replace(/(:LV)([a-z].?)(.*)/, '$2'); sTags = sTags.replace(/(:LV)([a-z].?)(.*)/, "V$1"); let m; while ((m = this._zTag.exec(sTags)) !== null) { sRes += _dLocTAGS.get(m[0]); if (m[0] == ':LV'){ for (let sKey of sTagsVerb.split('')) { sRes += _dLocVERB.get(sKey); }; } if (sRes.length > 100) { break; } } if (!sRes) { sRes = "#Erreur. Étiquette inconnue : [" + sTags + "]"; helpers.echo(sRes); return sRes; } return sRes.gl_trimRight(","); } _formatSuffix (s) { if (s.startsWith("t-")) { return "“t” euphonique +" + _dAD.get(s.slice(2)); } if (!s.includes("-")) { return _dAD.get(s.replace("’", "'")); |
︙ | |||
398 399 400 401 402 403 404 | 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | - + | 'sType': "LOC", 'sValue': sValue.replace('’ ','’').trim(), 'aSubToken': aTokenTempList }; if (bInfo) { let aFormatedTag = []; for (let sTagLoc of sMorphLoc.split('|') ){ |
︙ |