VPS and conjunction in Romance, by means of repeated unstressed pronouns (in Fre) or prodrop (other languages)

This commit is contained in:
aarne
2012-05-27 20:50:59 +00:00
parent ccf7ba8510
commit fa4ccf176a
8 changed files with 51 additions and 1 deletions

View File

@@ -225,4 +225,15 @@ instance DiffFre of DiffRomance = open CommonRomance, PhonoFre, Prelude in {
datClit = "y" ;
genClit = "en" ;
subjPron = \a -> case a of {
{n = Sg ; p = P1} => "je" ;
{n = Sg ; p = P2} => "tu" ;
{n = Pl ; p = P1} => "nous" ;
{n = Pl ; p = P2} => "vous" ;
{n = Sg ; p = P3 ; g = Masc} => "il" ;
{n = Sg ; p = P3 ; g = Fem} => "elle" ;
{n = Pl ; p = P3 ; g = Masc} => "ils" ;
{n = Pl ; p = P3 ; g = Fem} => "elles"
} ;
}