1
0
forked from GitHub/gf-core

heb possessive pronoun fix

This commit is contained in:
dana.dannells
2012-06-06 05:20:14 +00:00
parent 97fcdd5fa2
commit fa33a915e2
5 changed files with 49 additions and 47 deletions

View File

@@ -14,9 +14,9 @@
mkNoun : (bait,batim,batimD : Str) -> Gender -> Noun = \bait,batim,batimD,g -> {
s = table {
Sg => table{Indef => bait ; Def => defH bait};
Pl => table{Indef => batim ; Def => defH batim} ;
Dl => table{Indef => batimD ; Def => defH batimD}
Sg => table{Indef => bait ; Def => ("h" +bait)};
Pl => table{Indef => batim ; Def => ("h" + batim)} ;
Dl => table{Indef => batimD ; Def => ("h" +batimD)}
} ;
g=g ;
};
@@ -97,11 +97,12 @@
s = table {
Sg => table {
Indef => table { Masc => tov ; Fem => tova } ;
Def => table { Masc => defH tov ; Fem => defH tova }
Def => table { Masc => ("h" + tov) ; Fem => ("h"
+ tova) }
} ;
_ => table {
Indef => table {Masc => tovim ; Fem => tovot } ;
Def => table { Masc => defH tovim ; Fem => defH tovot }
Def => table { Masc => ("h" + tovim) ; Fem => ("h" + tovot) }
}
}
};