Overview
| Comment: | [graphspell][fr] lexicographer: update tags [fr] new tag |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fr | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
e4ab0c2fc77dc0b74bd5dde553dc5882 |
| User & Date: | olr on 2020-11-20 16:45:12 |
| Other Links: | manifest | tags |
Context
|
2020-11-20
| ||
| 17:11 | [graphspell] fix lexicographer check-in: 6587085132 user: olr tags: trunk, graphspell | |
| 16:45 | [graphspell][fr] lexicographer: update tags [fr] new tag check-in: e4ab0c2fc7 user: olr tags: trunk, fr, graphspell | |
| 16:43 | [fr] ajustements check-in: 8dc93623de user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/dictionnaire/lexique/french.tagset.txt from [631e52cf3d] to [4d3038e0ee].
| ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + |
// DIVERS
Adverbe :W (élém: ÉW)
Adverbe de négation :X
Interjection :J (élém: ÉJ)
Nombre cardinal :B
Nombre romain :Br
Titre :T
Préfixe :Zp
Suffixe :Zs
Mot erroné :F
// VERBES
|
| ︙ |
Modified graphspell-js/lexgraph_fr.js from [6e4c016a64] to [ef2dd6f7df].
| ︙ | |||
153 154 155 156 157 158 159 160 161 162 163 164 165 166 | 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | + |
[':A', [" adjectif,", "Adjectif"]],
[':M1', [" prénom,", "Prénom"]],
[':M2', [" patronyme,", "Patronyme, matronyme, nom de famille…"]],
[':MP', [" nom propre,", "Nom propre"]],
[':W', [" adverbe,", "Adverbe"]],
[':J', [" interjection,", "Interjection"]],
[':B', [" nombre,", "Nombre"]],
[':Br', [" nombre romain,", "Nombre romain"]],
[':T', [" titre,", "Titre de civilité"]],
[':e', [" épicène", "épicène"]],
[':m', [" masculin", "masculin"]],
[':f', [" féminin", "féminin"]],
[':s', [" singulier", "singulier"]],
[':p', [" pluriel", "pluriel"]],
|
| ︙ |
Modified graphspell/lexgraph_fr.py from [adef14aad0] to [1302f14e27].
| ︙ | |||
160 161 162 163 164 165 166 167 168 169 170 171 172 173 | 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | + |
':A': (" adjectif,", "Adjectif"),
':M1': (" prénom,", "Prénom"),
':M2': (" patronyme,", "Patronyme, matronyme, nom de famille…"),
':MP': (" nom propre,", "Nom propre"),
':W': (" adverbe,", "Adverbe"),
':J': (" interjection,", "Interjection"),
':B': (" nombre,", "Nombre"),
':Br': (" nombre romain,", "Nombre romain"),
':T': (" titre,", "Titre de civilité"),
':e': (" épicène", "épicène"),
':m': (" masculin", "masculin"),
':f': (" féminin", "féminin"),
':s': (" singulier", "singulier"),
':p': (" pluriel", "pluriel"),
|
| ︙ |