summaryrefslogtreecommitdiff
path: root/next-lib/src/french/IdiomFre.gf
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/src/french/IdiomFre.gf')
-rw-r--r--next-lib/src/french/IdiomFre.gf45
1 files changed, 45 insertions, 0 deletions
diff --git a/next-lib/src/french/IdiomFre.gf b/next-lib/src/french/IdiomFre.gf
new file mode 100644
index 000000000..bb38c8774
--- /dev/null
+++ b/next-lib/src/french/IdiomFre.gf
@@ -0,0 +1,45 @@
+concrete IdiomFre of Idiom = CatFre **
+ open (P = ParamX), PhonoFre, MorphoFre, ParadigmsFre, Prelude in {
+
+ flags optimize=all_subs ;
+
+ lin
+ ImpersCl vp = mkClause "il" True (agrP3 Masc Sg) vp ;
+ GenericCl vp = mkClause "on" True (agrP3 Masc Sg) vp ;
+
+ ExistNP np =
+ mkClause "il" True (agrP3 Masc Sg)
+ (insertClit2 "y" (insertComplement (\\_ => np.s ! Ton Acc) (predV avoir_V))) ;
+
+ ExistIP ip = {
+ s = \\t,a,p,_ =>
+ ip.s ! Nom ++
+ (mkClause "il" True (agrP3 Masc Sg)
+ (insertClit2 "y" (predV avoir_V))).s
+ ! DDir ! t ! a ! p ! Indic ---- DInv
+ } ;
+
+ CleftNP np rs = mkClause elisCe True (agrP3 Masc Sg)
+ (insertComplement (\\_ => rs.s ! Indic ! np.a)
+ (insertComplement (\\_ => np.s ! Ton rs.c) (predV copula))) ;
+
+ CleftAdv ad s = mkClause elisCe True (agrP3 Masc Sg)
+ (insertComplement (\\_ => conjThat ++ s.s ! Indic)
+ (insertComplement (\\_ => ad.s) (predV copula))) ;
+
+
+ ProgrVP vp =
+ insertComplement
+ (\\a => "en" ++ "train" ++ elisDe ++ infVP vp a)
+ (predV copula) ;
+
+ ImpPl1 vpr = let vp = useVP vpr in {s =
+ (mkImperative False P1 vp).s ! Pos ! {n = Pl ; g = Masc} --- fem
+ } ;
+
+ oper
+ elisCe = elision "c" ;
+
+}
+
+