455
456
457
458
459
460
461
|
return self.dConj[":Q"][":Q2"] if bPlur and self.dConj[":Q"][":Q2"] else self.dConj[":Q"][":Q1"]
if not bPlur:
return self.dConj[":Q"][":Q3"] if self.dConj[":Q"][":Q3"] else self.dConj[":Q"][":Q1"]
return self.dConj[":Q"][":Q4"] if self.dConj[":Q"][":Q4"] else self.dConj[":Q"][":Q1"]
except:
traceback.print_exc()
return "# erreur"
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
|
return self.dConj[":Q"][":Q2"] if bPlur and self.dConj[":Q"][":Q2"] else self.dConj[":Q"][":Q1"]
if not bPlur:
return self.dConj[":Q"][":Q3"] if self.dConj[":Q"][":Q3"] else self.dConj[":Q"][":Q1"]
return self.dConj[":Q"][":Q4"] if self.dConj[":Q"][":Q4"] else self.dConj[":Q"][":Q1"]
except:
traceback.print_exc()
return "# erreur"
def createConjTable (self, bPro=False, bNeg=False, bTpsCo=False, bInt=False, bFem=False):
dConjTable = {
"t_infi": "Infinitif",
"infi": self.infinitif(bPro, bNeg, bTpsCo, bInt, bFem),
"t_ppre": "Participe présent",
"ppre": self.participePresent(bPro, bNeg, bTpsCo, bInt, bFem),
"t_ppas": "Participes passés",
"ppas1": self.participePasse(":Q1"),
"ppas2": self.participePasse(":Q2"),
"ppas3": self.participePasse(":Q3"),
"ppas4": self.participePasse(":Q4"),
"t_imp": "Impératif",
"t_impe": "" if bInt else "Présent" if not bTpsCo else "Passé",
"impe1": self.imperatif(":2s", bPro, bNeg, bTpsCo, bFem) if not bInt else "",
"impe2": self.imperatif(":1p", bPro, bNeg, bTpsCo, bFem) if not bInt else "",
"impe3": self.imperatif(":2p", bPro, bNeg, bTpsCo, bFem) if not bInt else "",
"t_indi": "Indicatif",
"t_ipre": "Présent" if not bTpsCo else "Passé composé",
"ipre1": self.conjugue(":Ip", ":1s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipre2": self.conjugue(":Ip", ":2s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipre3": self.conjugue(":Ip", ":3s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipre4": self.conjugue(":Ip", ":1p", bPro, bNeg, bTpsCo, bInt, bFem),
"ipre5": self.conjugue(":Ip", ":2p", bPro, bNeg, bTpsCo, bInt, bFem),
"ipre6": self.conjugue(":Ip", ":3p", bPro, bNeg, bTpsCo, bInt, bFem),
"t_iimp": "Imparfait" if not bTpsCo else "Plus-que-parfait",
"iimp1": self.conjugue(":Iq", ":1s", bPro, bNeg, bTpsCo, bInt, bFem),
"iimp2": self.conjugue(":Iq", ":2s", bPro, bNeg, bTpsCo, bInt, bFem),
"iimp3": self.conjugue(":Iq", ":3s", bPro, bNeg, bTpsCo, bInt, bFem),
"iimp4": self.conjugue(":Iq", ":1p", bPro, bNeg, bTpsCo, bInt, bFem),
"iimp5": self.conjugue(":Iq", ":2p", bPro, bNeg, bTpsCo, bInt, bFem),
"iimp6": self.conjugue(":Iq", ":3p", bPro, bNeg, bTpsCo, bInt, bFem),
"t_ipsi": "Passé simple" if not bTpsCo else "Passé antérieur",
"ipsi1": self.conjugue(":Is", ":1s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipsi2": self.conjugue(":Is", ":2s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipsi3": self.conjugue(":Is", ":3s", bPro, bNeg, bTpsCo, bInt, bFem),
"ipsi4": self.conjugue(":Is", ":1p", bPro, bNeg, bTpsCo, bInt, bFem),
"ipsi5": self.conjugue(":Is", ":2p", bPro, bNeg, bTpsCo, bInt, bFem),
"ipsi6": self.conjugue(":Is", ":3p", bPro, bNeg, bTpsCo, bInt, bFem),
"t_ifut": "Futur" if not bTpsCo else "Futur antérieur",
"ifut1": self.conjugue(":If", ":1s", bPro, bNeg, bTpsCo, bInt, bFem),
"ifut2": self.conjugue(":If", ":2s", bPro, bNeg, bTpsCo, bInt, bFem),
"ifut3": self.conjugue(":If", ":3s", bPro, bNeg, bTpsCo, bInt, bFem),
"ifut4": self.conjugue(":If", ":1p", bPro, bNeg, bTpsCo, bInt, bFem),
"ifut5": self.conjugue(":If", ":2p", bPro, bNeg, bTpsCo, bInt, bFem),
"ifut6": self.conjugue(":If", ":3p", bPro, bNeg, bTpsCo, bInt, bFem),
"t_cond": "Conditionnel",
"t_conda": "Présent" if not bTpsCo else "Passé (1ʳᵉ forme)",
"conda1": self.conjugue(":K", ":1s", bPro, bNeg, bTpsCo, bInt, bFem),
"conda2": self.conjugue(":K", ":2s", bPro, bNeg, bTpsCo, bInt, bFem),
"conda3": self.conjugue(":K", ":3s", bPro, bNeg, bTpsCo, bInt, bFem),
"conda4": self.conjugue(":K", ":1p", bPro, bNeg, bTpsCo, bInt, bFem),
"conda5": self.conjugue(":K", ":2p", bPro, bNeg, bTpsCo, bInt, bFem),
"conda6": self.conjugue(":K", ":3p", bPro, bNeg, bTpsCo, bInt, bFem),
"t_condb": "" if not bTpsCo else "Passé (2ᵉ forme)",
"condb1": self.conjugue(":Sq", ":1s", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"condb2": self.conjugue(":Sq", ":2s", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"condb3": self.conjugue(":Sq", ":3s", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"condb4": self.conjugue(":Sq", ":1p", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"condb5": self.conjugue(":Sq", ":2p", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"condb6": self.conjugue(":Sq", ":3p", bPro, bNeg, bTpsCo, bInt, bFem) if bTpsCo else "",
"t_subj": "Subjonctif",
"t_spre": "" if bInt else "Présent" if not bTpsCo else "Passé",
"spre1": self.conjugue(":Sp", ":1s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"spre2": self.conjugue(":Sp", ":2s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"spre3": self.conjugue(":Sp", ":3s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"spre4": self.conjugue(":Sp", ":1p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"spre5": self.conjugue(":Sp", ":2p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"spre6": self.conjugue(":Sp", ":3p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"t_simp": "" if bInt else "Imparfait" if not bTpsCo else "Plus-que-parfait",
"simp1": self.conjugue(":Sq", ":1s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"simp2": self.conjugue(":Sq", ":2s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"simp3": self.conjugue(":Sq", ":3s", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"simp4": self.conjugue(":Sq", ":1p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"simp5": self.conjugue(":Sq", ":2p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else "",
"simp6": self.conjugue(":Sq", ":3p", bPro, bNeg, bTpsCo, bInt, bFem) if not bInt else ""
}
return dConjTable
|