summaryrefslogtreecommitdiff
path: root/next-lib/src/interlingua/PhraseIna.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2009-03-13 16:05:13 +0000
committeraarne <aarne@cs.chalmers.se>2009-03-13 16:05:13 +0000
commit9b636333297ef49caece5ddb523e4bef7b8aea83 (patch)
treee06ad1f15622e671b42d86af23224c4465400456 /next-lib/src/interlingua/PhraseIna.gf
parente66b27aa5b6939694af4a1aa02b1f6e49dc7f636 (diff)
interlingua updated for new resource
Diffstat (limited to 'next-lib/src/interlingua/PhraseIna.gf')
-rw-r--r--next-lib/src/interlingua/PhraseIna.gf24
1 files changed, 24 insertions, 0 deletions
diff --git a/next-lib/src/interlingua/PhraseIna.gf b/next-lib/src/interlingua/PhraseIna.gf
new file mode 100644
index 000000000..f5fa8d77a
--- /dev/null
+++ b/next-lib/src/interlingua/PhraseIna.gf
@@ -0,0 +1,24 @@
+concrete PhraseIna of Phrase = CatIna ** open Prelude, ResIna in {
+
+ lin
+ PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+ UttS s = s ;
+ UttQS qs = {s = qs.s ! OQuest};
+ UttImpSg pol imp = {s = pol.s ++ imp.s ! pol.p ! Sg} ;
+ UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! Pl} ;
+ UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! Pl} ;
+
+ UttIP ip = {s = ip.s ! Nom} ; -- ??? Dat, Abl also...
+ UttIAdv iadv = iadv ;
+ UttNP np = {s = np.s ! Nom} ;
+ UttVP vp = {s = infVP vp} ;
+ UttAdv adv = adv ;
+
+ NoPConj = {s = []} ;
+ PConjConj conj = ss conj.s2 ;
+
+ NoVoc = {s = []} ;
+ VocNP np = {s = "," ++ np.s ! Nom} ;
+
+}