Overview
Comment: | [graphspell] new ad hoc suggestions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
3148bfaecef3f54648440a90fab509ff |
User & Date: | olr on 2024-06-11 08:59:04 |
Other Links: | manifest | tags |
Context
2024-06-11
| ||
09:11 | [graphspell] str_transform: màj check-in: debfd84fcd user: olr tags: trunk, graphspell | |
08:59 | [graphspell] new ad hoc suggestions check-in: 3148bfaece user: olr tags: trunk, graphspell | |
08:52 | [build] purge.py: fix Python version requirements check-in: 9863820602 user: olr tags: trunk, build | |
Changes
Modified graphspell-js/lexgraph_fr.js from [0c3007efc2] to [3622c278ab].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 64 65 66 67 68 69 70 71 72 73 74 75 76 | + + - + + + - + + | // JavaScript "use strict"; ${string} ${map} //// Default Suggestions const _dSugg = new Map ([ ["apr", "après"], ["avt", "avant"], ["bcp", "beaucoup"], ["ca", "ça"], ["cad", "c’est-à-dire"], ["càd", "c’est-à-dire"], ["cb", "combien|CB"], ["cdlt", "cordialement"], ["construirent", "construire|construisirent|construisent|construiront"], ["chai", "j’sais|je sais"], ["chais", "j’sais|je sais"], ["chq", "chaque"], ["chui", "j’suis|je suis"], ["chuis", "j’suis|je suis"], ["dc", "de|donc"], ["dj", "DJ|déjà"], |
︙ |
Modified graphspell/lexgraph_fr.py from [5564558722] to [fbde0183f4].
︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | + + - + + + - + + | import re #### Suggestions dSugg = { "apr": "après", "avt": "avant", "bcp": "beaucoup", "ca": "ça", "cad": "c’est-à-dire", "càd": "c’est-à-dire", "cb": "combien|CB", "cdlt": "cordialement", "construirent": "construire|construisirent|construisent|construiront", "chai": "j’sais|je sais", "chais": "j’sais|je sais", "chq": "chaque", "chui": "j’suis|je suis", "chuis": "j’suis|je suis", "dc": "de|donc", "dj": "DJ|déjà", |
︙ |