add plural for numeral "one" and Fem/Neut versions of UttImpSg in ExtraBul

This commit is contained in:
krasimir
2008-02-20 15:13:31 +00:00
parent 512e71d65c
commit 166dafacd1
2 changed files with 16 additions and 0 deletions

View File

@@ -20,4 +20,15 @@ concrete ExtraBul of ExtraBulAbs = CatBul **
youPol8fem_Pron = mkNP "âčĺ" "âŕń" "âŕř" "âŕřč˙" "âŕřč˙ň" "âŕřŕ" "âŕřŕňŕ" "âŕřĺ" "âŕřĺňî" "âŕřč" "âŕřčňĺ" (GSg Fem) P2 ;
youPol8neut_Pron = mkNP "âčĺ" "âŕń" "âŕř" "âŕřč˙" "âŕřč˙ň" "âŕřŕ" "âŕřŕňŕ" "âŕřĺ" "âŕřĺňî" "âŕřč" "âŕřčňĺ" (GSg Neut) P2 ;
onePl_Num = {s = table {
DMascIndef | DMascPersonalIndef | DFemIndef | DNeutIndef => "ĺäíč" ;
DMascDef | DMascDefNom | DMascPersonalDef | DMascPersonalDefNom | DFemDef | DNeutDef => "ĺäíčňĺ"
} ;
n = Pl;
empty = False
} ;
UttImpSg8fem pol imp = {s = pol.s ++ imp.s ! pol.p ! GSg Fem} ;
UttImpSg8neut pol imp = {s = pol.s ++ imp.s ! pol.p ! GSg Fem} ;
}

View File

@@ -20,4 +20,9 @@ fun
youPol8fem_Pron : Pron ;
youPol8neut_Pron : Pron ;
onePl_Num : Num ;
UttImpSg8fem : Pol -> Imp -> Utt;
UttImpSg8neut : Pol -> Imp -> Utt;
}