Grammalecte  Check-in [08ba0bf998]

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: 08ba0bf998d397d4d2ff1d37e8654de05cda8aac247ab3a322d8309c57827a66
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
368
369


370
371
372
373
374
375
376
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"]],
        ["en", ["ent", "ant"]],
        ["EN", ["ENT", "ANT"]],
        ["en", ["ent", "ant", "ène", "enne"]],
        ["EN", ["ENT", "ANT", "ÈNE", "ENNE"]],
        ["ei", ["ait", "ais"]],
        ["EI", ["AIT", "AIS"]],
        ["on", ["ons", "ont"]],
        ["ON", ["ONS", "ONT"]],
        ["oi", ["ois", "oit", "oix"]],
        ["OI", ["OIS", "OIT", "OIX"]],
    ])

Modified graphspell/char_player.py from [24cf38a4cb] to [9efc586374].

357
358
359
360
361
362
363
364
365


366
367
368
369
370
371
372
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"),
    "en": ("ent", "ant"),
    "EN": ("ENT", "ANT"),
    "en": ("ent", "ant", "ène", "enne"),
    "EN": ("ENT", "ANT", "ÈNE", "ENNE"),
    "ei": ("ait", "ais"),
    "EI": ("AIT", "AIS"),
    "on": ("ons", "ont"),
    "ON": ("ONS", "ONT"),
    "oi": ("ois", "oit", "oix"),
    "OI": ("OIS", "OIT", "OIX"),
}