summaryrefslogtreecommitdiff
path: root/examples/attempto/LexAttemptoIta.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2009-03-10 17:31:18 +0000
committeraarne <aarne@cs.chalmers.se>2009-03-10 17:31:18 +0000
commit84a1d54e827531993b3e91d571456be54378cb44 (patch)
tree3c8f05ad85db322accb2aef835509eef35b445fc /examples/attempto/LexAttemptoIta.gf
parent85d9c76b5c8b52563316023864e7397b89548eeb (diff)
preliminary Italian in Attempto
Diffstat (limited to 'examples/attempto/LexAttemptoIta.gf')
-rw-r--r--examples/attempto/LexAttemptoIta.gf28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/attempto/LexAttemptoIta.gf b/examples/attempto/LexAttemptoIta.gf
new file mode 100644
index 000000000..04d79cfdb
--- /dev/null
+++ b/examples/attempto/LexAttemptoIta.gf
@@ -0,0 +1,28 @@
+instance LexAttemptoIta of LexAttempto =
+ open ExtraIta, SyntaxIta, ParadigmsIta, ConstructX,
+ MakeStructuralIta
+ in {
+
+oper
+ possible_A = mkA "possibile" ;
+ necessary_A = mkA "necessario" ;
+ own_A = mkA "proprio" ;
+ have_VV = SyntaxIta.must_VV ;
+ provably_Adv = mkAdv "dimostrabilmente" ;
+ provable_A = mkA "dimostrabile" ;
+ false_A = mkA "falso" ;
+ such_A = mkA "tale" ;
+
+ genitiveNP np cn = mkNP (mkNP the_Art cn) (SyntaxIta.mkAdv possess_Prep np) ;
+
+ each_Det = every_Det ; ----
+
+ that_Subj = mkSubj "che" ;
+
+ comma_and_Conj = mkConj [] ", e" plural ;
+ comma_or_Conj = mkConj [] ", o" singular ;
+ slash_Conj = mkConj [] "/" singular ;
+
+ whose_IDet = mkIDet (mkIQuant "de chi") ; ----
+
+}