Overview
| Comment: | [graphspell] char_player: end of words suggestions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
08ba0bf998d397d4d2ff1d37e8654de0 |
| User & Date: | olr on 2021-02-20 11:39:20 |
| Other Links: | manifest | tags |
Context
|
2021-02-20
| ||
| 16:14 | [fr] faux positifs check-in: dba901b78f user: olr tags: trunk, fr | |
| 11:39 | [graphspell] char_player: end of words suggestions check-in: 08ba0bf998 user: olr tags: trunk, graphspell | |
| 11:38 | [fr] faux positifs et ajustements check-in: 12eb1d89a3 user: olr tags: trunk, fr | |
Changes
Modified graphspell-js/char_player.js from [dab3d08473] to [1d820bba9e].
| ︙ | |||
361 362 363 364 365 366 367 | 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | - - + + |
]),
dFinal2: new Map([
["ai", ["aient", "ais", "et"]],
["AI", ["AIENT", "AIS", "ET"]],
["an", ["ant", "ent"]],
["AN", ["ANT", "ENT"]],
|
| ︙ |
Modified graphspell/char_player.py from [24cf38a4cb] to [9efc586374].
| ︙ | |||
357 358 359 360 361 362 363 | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | - - + + |
}
dFinal2 = {
"ai": ("aient", "ais", "et"),
"AI": ("AIENT", "AIS", "ET"),
"an": ("ant", "ent"),
"AN": ("ANT", "ENT"),
|