summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesRus.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/phrasebook/SentencesRus.gf')
-rw-r--r--examples/phrasebook/SentencesRus.gf14
1 files changed, 11 insertions, 3 deletions
diff --git a/examples/phrasebook/SentencesRus.gf b/examples/phrasebook/SentencesRus.gf
index 67e06d7f1..cdde941e1 100644
--- a/examples/phrasebook/SentencesRus.gf
+++ b/examples/phrasebook/SentencesRus.gf
@@ -1,9 +1,10 @@
concrete SentencesRus of Sentences = NumeralRus ** SentencesI - [
- NameNN, SHave, SHaveNo, SHaveNoMass, QDoHave, AHaveCurr
+ NameNN, SHave, SHaveNo, SHaveNoMass, QDoHave, AHaveCurr,
+ IMale, IFemale, YouFamMale, YouFamFemale, YouPolMale, YouPolFemale
] with
(Syntax = SyntaxRus),
(Symbolic = SymbolicRus),
- (Lexicon = LexiconRus), (Grammar = GrammarRus) ** open Prelude, SyntaxRus, (P = ParadigmsRus) in {
+ (Lexicon = LexiconRus), (Grammar = GrammarRus) ** open Prelude, SyntaxRus, ExtraRus, (P = ParadigmsRus), (R = ResRus), (M = MorphoRus) in {
lin
SHave p obj = mkS (mkCl (mkVP have_V3 obj p.name)) ;
SHaveNo p obj = mkS (mkCl (mkVP have_not_V3 (mkNP obj) p.name)) ;
@@ -12,6 +13,13 @@ concrete SentencesRus of Sentences = NumeralRus ** SentencesI - [
AHaveCurr p curr = mkCl (mkVP have_V3 (mkNP aPl_Det curr) p.name) ;
- lin NameNN = mkNP (P.mkN "NN") ;
+ lin
+ NameNN = mkNP (P.mkN "NN") ;
+ IMale = mkPerson (M.pronYa R.Masc) ;
+ IFemale = mkPerson (M.pronYa R.Fem) ;
+ YouFamMale = mkPerson (M.pronTu R.Masc) ;
+ YouFamFemale = mkPerson (M.pronTu R.Fem) ;
+ YouPolMale = mkPerson (M.pronVu R.Masc) ;
+ YouPolFemale = mkPerson (M.pronVu R.Fem) ;
} \ No newline at end of file