Overview
Comment: | [core][fr] improve formatNumber() suggestions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr | core |
Files: | files | file ages | folders |
SHA3-256: |
15606b15a93be6f814b4857ade075323 |
User & Date: | olr on 2020-12-03 09:45:44 |
Other Links: | manifest | tags |
Context
2020-12-03
| ||
14:43 | [fr] ajustements check-in: cd832d45da user: olr tags: trunk, fr | |
09:45 | [core][fr] improve formatNumber() suggestions check-in: 15606b15a9 user: olr tags: trunk, fr, core | |
2020-12-02
| ||
15:27 | [fx] init: disable console.log() at start check-in: cc8dde9c46 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/modules-js/gce_suggestions.js from [ab1e5374d0] to [9d19e0f955].
︙ | |||
579 580 581 582 583 584 585 | 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 | - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + | function suggLesLa (sWord) { if (gc_engine.oSpellChecker.getMorph(sWord).some(s => s.includes(":p"))) { return "les|la"; } return "la"; } |
︙ |
Modified gc_lang/fr/modules/gce_suggestions.py from [48d9a59bcc] to [40d55e0743].
︙ | |||
448 449 450 451 452 453 454 | 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | - + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + | if any( ":p" in sMorph for sMorph in _oSpellChecker.getMorph(sWord) ): return "les|la" return "la" _zBinary = re.compile("^[01]+$") |
︙ |
Modified gc_lang/fr/rules.grx from [514c0b60ab] to [b17dac5a68].
︙ | |||
1108 1109 1110 1111 1112 1113 1114 | 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 | - + - + - + + | TEST: Succession : a{{;}} b. ->> " ;" TEST: C’est assez {{: }}parlez ! ->> ": " TEST: {{» }}C’est ce qu’on croit savoir. ->> "» |« " __[s]/unit(unit_nbsp_avant_unités1)__ ((\d+(?:,\d+[⁰¹²³⁴⁵⁶⁷⁸⁹]?|[⁰¹²³⁴⁵⁶⁷⁸⁹]|)) ?)([kcmµn]?(?:[slgJKVΩ]|m[²³]?|Wh?|Hz|dB)|[%‰€$£¥Åℓhj]|min|jours?|semaines|mois|ans?|euros?|heures?|px|MHz|°C|℃)(?![’']) @@0,0,$ |
︙ | |||
1303 1304 1305 1306 1307 1308 1309 | 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 | - - - + - + + - + + | !!!! Grands nombres !! !! !! __[s]/num(num_grand_nombre_soudé)__ \d\d\d\d+ <<- not before("NF[ -]?(C|E|P|Q|X|Z|EN(?:[ -]ISO|)) *$") >>> |
︙ | |||
13226 13227 13228 13229 13230 13231 13232 | 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 | - - + + - + | >éclat [de|d’] [>voie|vois|voit] le son de [la|cette|quelle|ma|ta|sa|notre|votre|leur|mes|tes|ses|nos|vos|leurs] [>voie|vois|voit] <<- /conf/ --1>> voix && Confusion. Pour évoquer un son humain, animal ou instrumental, écrivez “voix”.|https://fr.wiktionary.org/wiki/voix à [>voie|vois|voit] [basse|haute|basses|hautes] <<- /conf/ -2>> voix && Confusion. Pour évoquer un son humain, animal ou instrumental, écrivez “voix”.|https://fr.wiktionary.org/wiki/voix |
︙ | |||
17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 | 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 | + | >épreuve [de|d’] force >erreur [de|d’] [calcul|jeunesse|jugement|positionnement] >erreur d’ [appréciation|interprétation|orthographe] >escalier [de|d’] secours >escroquerie à l’ assurance >espérance [de|d’] vie >espérance [de|d’] vie en bonne santé >essence [de|d’] térébenthine >état [de|d’] [âme|conservation|esprit|fait|service|urgence] >état d’ extrême urgence >état [de|d’] l’ art >étoile [de|d’] mer >étoile à neutrons >étui à cigarettes >examen d’ entrée |
︙ |