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 | à califourchon :LW à contrecœur :LW à cœur joie :LW à cœur ouvert :LW à corps perdu :LW à bâtons rompus :LW à perte de vue :LW à visage découvert :LW à vue d’œil :LW à l’aveuglette :LW ad hominem :LW en tout et pour tout :LW par ailleurs :LW par acquit de conscience :LW |
Modified gc_lang/fr/modules-js/lexicographe.js from [56a7e98a7a] to [30978ab7a1].
︙ | ︙ | |||
39 40 41 42 43 44 45 | [':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,"], | | > > < < < < | 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,"], [':C', " conjonction,"], [':Ĉ', " conjonction (él.),"], [':Cc', " conjonction de coordination,"], [':Cs', " conjonction de subordination,"], [':Ĉs', " conjonction de subordination (él.),"], [':Ŵ', " locution adverbiale (él.),"], [':Ñ', " locution nominale (él.),"], [':Â', " locution adjectivale (él.),"], [':Ṽ', " locution verbale (él.),"], [':Ŕ', " locution prépositive (él.),"], [':Ĵ', " locution interjective (él.),"], [':Zp', " préfixe,"], [':Zs', " suffixe,"], [':V1', " verbe (1ᵉʳ gr.),"], [':V2', " verbe (2ᵉ gr.),"], |
︙ | ︙ | |||
104 105 106 107 108 109 110 | [';S', " : symbole (unité de mesure)"], ['/*', ""], ['/C', " {classique}"], ['/M', ""], ['/R', " {réforme}"], ['/A', ""], | | > > > > > > > > > > > > > > > > > > > > > > > > > > | 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', ""], ['/X', ""] ]); const _dLocTAGS = new Map([ [':LN', "locution nominale"], [':LA', "locution adjectivale"], [':LV', "locution verbale"], [':LW', "locution adverbiale"], [':LR', "locution prépositive"], [':LO', "locution pronominale"], [':LC', "locution conjonctive"], [':LJ', "locution interjective"], [':B', " cardinal"], [':e', " épicène"], [':m', " masculin"], [':f', " féminin"], [':s', " singulier"], [':p', " pluriel"], [':i', " invariable"], ['/L', " {latin}"] ]); const _dLocVERB = new Map([ ['i', " intransitif"], ['n', " transitif indirect"], ['t', " transitif direct"], ['p', " pronominal"], ['m', " impersonnel"], ]); const _dPFX = new Map([ ['d', "(de), déterminant épicène invariable"], ['l', "(le/la), déterminant masculin/féminin singulier"], ['j', "(je), pronom personnel sujet, 1ʳᵉ pers., épicène singulier"], ['m', "(me), pronom personnel objet, 1ʳᵉ pers., épicène singulier"], |
︙ | ︙ | |||
314 315 316 317 318 319 320 321 322 323 324 325 326 327 | 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("’", "'")); | > > > > > > > > > > > > > > > > > > > > > > > > | 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 | 'sType': "LOC", 'sValue': sValue.replace('’ ','’').trim(), 'aSubToken': aTokenTempList }; if (bInfo) { let aFormatedTag = []; for (let sTagLoc of sMorphLoc.split('|') ){ | | | 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('|') ){ aFormatedTag.push( this._formatTagsLoc(sTagLoc) ); } aElem.push({ sType: oTokenLocution.sType, sValue: oTokenLocution.sValue, aLabel: aFormatedTag, aSubElem: this.generateInfoForTokenList(aTokenTempList) }); |
︙ | ︙ |