Overview
| Comment: | [fr] remove remaining crap |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fr |
| Files: | files | file ages | folders |
| SHA3-256: |
6ee59d86c1a6def8a7d8eedcc7710b52 |
| User & Date: | olr on 2017-11-10 16:49:40 |
| Other Links: | manifest | tags |
Context
|
2017-11-10
| ||
| 16:52 | [core] merge spellsugg: much faster suggestion engine check-in: e6e44e506c user: olr tags: trunk, core | |
| 16:49 | [fr] remove remaining crap check-in: 6ee59d86c1 user: olr tags: trunk, fr | |
| 16:03 | [fr] confusion: tant bien même check-in: 25798c54bf user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/rules.grx from [995ac1aaba] to [10eeed75ab].
| ︙ | ︙ | |||
10709 10710 10711 10712 10713 10714 10715 | !! !!!! Confusions !! !! #### CONFUSION a / à __[i]/conf(conf_pronom_verbe_à)__ | | | | 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 |
!!
!!!! Confusions
!!
!!
#### CONFUSION a / à
__[i]/conf(conf_pronom_verbe_à)__
^ *(?:je|tu|ils?|on|elles?) +({w_2}) +(a) @@w,$
<<- morph(\1, ":V", False) and \2 != "A"
-2>> à # Confusion probable : “a” est une conjugaison du verbe “avoir”. Utilisez la préposition :
__[i]/conf(conf_j_verbe_à)__
^ *j’({w_2}) +(a) @@w,$
<<- morph(\1, ":V", False) and \2 != "A"
-2>> à # Confusion probable : “a” est une conjugaison du verbe “avoir”. Utilisez la préposition :
__[i]/conf(conf_nous_vous_verbe_à)__
^ *[nv]ous +({w_2}) +(a) @@w,$
<<- morphex(\1, ":V", ":Y") and \2 != "A"
-2>> à # Confusion probable : “a” est une conjugaison du verbe “avoir”. Utilisez la préposition :
TEST: Il vient {{a}} la maison.
TEST: tu ne donnes rien {{a}} ces hommes.
TEST: Nous les donnons {{a}} ces gens.
TEST: j’arrive {{a}} la gare
|
| ︙ | ︙ | |||
11806 11807 11808 11809 11810 11811 11812 | TEST: Je me doutais bien qu’Apple pourrait marcher TEST: il ne fait aucun doute qu’Amazon le sait. TEST: quoi que nous autres hommes ayons pu faire # Bien que + subjonctif __[i]/vmode(vmode_bien_que_subjonctif)__ | | | 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 |
TEST: Je me doutais bien qu’Apple pourrait marcher
TEST: il ne fait aucun doute qu’Amazon le sait.
TEST: quoi que nous autres hommes ayons pu faire
# Bien que + subjonctif
__[i]/vmode(vmode_bien_que_subjonctif)__
bien ?que? ({w_2}) +({w_2}) @@w,$
<<- morph(\1, ":(?:Os|M)", False) and morphex(\2, ":V.*:I", ":([GSK]|If)|>(?:hériter|recevoir|donner|offrir) ") and isStart()
and not ( morph(\2, ":V0a", False) and morph(word(1), ">(?:hériter|recevoir|donner|offrir) ", False) )
-2>> =suggVerbMode(@, ":S", \1) # Après « bien que », le verbe s’emploie au subjonctif.
TEST: Il ne le savait pas, bien qu’il en {{avait}} entendu parler.
TEST: Bien que je {{prends}} mon mal en patience.
TEST: C’est un joli bien. Bien qu’il a hérité de son oncle, notez bien.
|
| ︙ | ︙ | |||
11859 11860 11861 11862 11863 11864 11865 |
TEST: Après qu’il {{ait}} allé
TEST: Après que Paul {{ait}} mangé son repas.
TEST: Après qu’il {{soit}} parti, il plut.
# Quand/lorsque + indicatif
__[i]/vmode(vmode_quand_lorsque_indicatif)__
| | | 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 |
TEST: Après qu’il {{ait}} allé
TEST: Après que Paul {{ait}} mangé son repas.
TEST: Après qu’il {{soit}} parti, il plut.
# Quand/lorsque + indicatif
__[i]/vmode(vmode_quand_lorsque_indicatif)__
(?:quand|lorsque?) ({w_2}) +({w_2}) @@w,$
<<- morph(\1, ":(?:Os|M)", False) and (morphex(\2, ":V.*:S", ":[GI]") or morph(\2, ":V0e.*:S", False))
-2>> =suggVerbMode(@, ":I", \1)
# Après « quand » ou « lorsque », le verbe ne s’emploie pas au subjonctif mais à l’indicatif.
TEST: quand elle {{rencontrât}} son créateur
TEST: lorsqu’il y {{eût}} du grabuge, nous montâmes tous sur le pont.
|
| ︙ | ︙ |