mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
--# -path=.:resource/french:resource/romance:resource/abstract:resource/../prelude
|
|
|
|
concrete AnimalsFre of Animals =
|
|
open
|
|
--- ResourceFre,
|
|
RulesFre, StructuralFre, VerbphraseFre,
|
|
ParadigmsFre, VerbsFre in {
|
|
lincat
|
|
Phrase = Phr ;
|
|
Animal = N ;
|
|
Action = V2 ;
|
|
lin
|
|
Who act obj = QuestPhrase (UseQCl (PosTP TPresent ASimul)
|
|
(IntVP who8one_IP (ComplV2 act (DefNumNP NoNum (UseN obj))))) ;
|
|
Whom subj act = QuestPhrase (UseQCl (PosTP TPresent ASimul)
|
|
(IntSlash who8one_IP (SlashV2 (DefOneNP (UseN subj)) act))) ;
|
|
Answer subj act obj = IndicPhrase (UseCl (PosTP TPresent ASimul)
|
|
(PredVP (DefOneNP (UseN subj)) (ComplV2 act (DefNumNP NoNum (UseN obj))))) ;
|
|
Dog = regN "chien" masculine ;
|
|
Cat = regN "chat" masculine ;
|
|
Mouse = regN "souris" feminine ;
|
|
Lion = regN "lion" masculine ;
|
|
Zebra = regN "zèbre" masculine ;
|
|
Chase = dirV2 (regV "chasser") ;
|
|
Eat = dirV2 (regV "manger") ;
|
|
Like = dirV2 (regV "aimer") ;
|
|
}
|