summaryrefslogtreecommitdiff
path: root/examples/numerals/croatian.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-08-04 18:26:48 +0000
committeraarne <aarne@cs.chalmers.se>2008-08-04 18:26:48 +0000
commita9893f45724299e6cc773bbb2fa2cf315fe85206 (patch)
treeb5c6222b2422a3db7bf4dd676aa4872adf22daf4 /examples/numerals/croatian.gf
parenta401820e3718a936cc926c457d29ec145e189be5 (diff)
ported numerals to GF3 and encoded in UTF8; some problematic ones in todo
Diffstat (limited to 'examples/numerals/croatian.gf')
-rw-r--r--examples/numerals/croatian.gf77
1 files changed, 77 insertions, 0 deletions
diff --git a/examples/numerals/croatian.gf b/examples/numerals/croatian.gf
new file mode 100644
index 000000000..4a7552feb
--- /dev/null
+++ b/examples/numerals/croatian.gf
@@ -0,0 +1,77 @@
+concrete croatian of Numerals = {
+flags coding = utf8 ;
+-- include numerals.Abs.gf ;
+-- flags coding=latinasupplement ;
+
+param DForm = unit | teen | ten | hund ;
+
+-- [c^], [s^], [c']
+
+
+param ThForm = onlyone | lastone | twoorthreeorfour | fiveup ;
+
+oper LinDigit = {s : DForm => Str; o : ThForm ; t : ThForm } ;
+
+lincat Numeral = { s : Str } ;
+lincat Digit = LinDigit ;
+lincat Sub10 = {s : DForm => Str; o : ThForm ; t : ThForm } ;
+lincat Sub100 = {s : Str; t : ThForm } ;
+lincat Sub1000 = {s : Str; t : ThForm } ;
+lincat Sub1000000 = { s : Str } ;
+
+oper mkNum : Str -> Str -> Str -> Str -> ThForm -> LinDigit =
+ \dwa -> \dwanascie -> \dwadziescia -> \dwiescie -> \thform ->
+ { s = table {unit => dwa ; teen => dwanascie ; ten => dwadziescia ; hund =>
+dwiescie };
+ o = thform ; t = thform
+ };
+
+oper mkRegNum : Str -> LinDigit =
+ \sedam ->
+ { s = table { unit => sedam ; teen => sedam + "naest" ;
+ ten => sedam + "deset" ; hund => sedam ++ "stotina"
+ };
+ o = fiveup ; t = fiveup
+ };
+
+oper mkTh : Str -> ThForm => Str = \attr ->
+ table { onlyone => variants {"hiljada" ; "tisuća"} ; lastone => attr ++ "hiljada" ;
+ twoorthreeorfour => attr ++ "hiljade" ; fiveup => attr ++ "hiljada"
+ };
+
+oper ss : Str -> ThForm -> {s : Str ; t : ThForm} = \str -> \th -> {s = str; t = th} ;
+
+lin num x = {s = [] ++ x.s ++ []} ; -- Latin A Supplement environment
+
+lin n2 = mkNum "dva" "dvanaest" "dvadeset" (variants { "dve" ++ "stotine" ; "dvesta" } ) twoorthreeorfour ;
+lin n3 = mkNum "tri" "trinaest" "trideset" (variants { "tri" ++ "stotine" ; "trista" } ) twoorthreeorfour ;
+lin n4 = mkNum "četiri" "četrnaest" "četrdeset" ("četiri" ++ "stotine") twoorthreeorfour ;
+lin n5 = mkNum "pet" "petnaest" "pedeset" ("pet" ++ "stotina") fiveup ;
+lin n6 = mkNum "šest" "šesnaest" "šezdeset" ("šest" ++ "stotina") fiveup ;
+lin n7 = mkRegNum "sedam" ;
+lin n8 = mkRegNum "osam" ;
+lin n9 = mkNum "devet" "devetnaest" "devedeset" ("devet" ++ "stotina") fiveup;
+
+lin pot01 = { s = table {hund => variants {"sto" ; "stotina" }; f => "jedan" };
+ o = onlyone ; t = lastone
+ };
+lin pot0 d = {s = table {f => d.s ! f} ; o = d.o ; t = d.t} ;
+lin pot110 = ss "deset" fiveup ;
+lin pot111 = ss "jedanaest" fiveup ;
+lin pot1to19 d = {s = d.s ! teen ; t = fiveup} ;
+lin pot0as1 n = {s = n.s ! unit ; t = n.o} ;
+lin pot1 d = {s = d.s ! ten ; t = fiveup} ;
+lin pot1plus d e = {s = d.s ! ten ++ "i" ++ e.s ! unit; t = e.t} ;
+lin pot1as2 n = n ;
+lin pot2 d = {s = d.s ! hund ; t = fiveup} ;
+lin pot2plus d e = { s = d.s ! hund ++ e.s ;
+ t = table { onlyone => lastone ; f => f } ! e.t
+ } ;
+
+lin pot2as3 n = n ;
+lin pot3 n = {s = (mkTh n.s) ! n.t} ;
+lin pot3plus n m = {s = (mkTh n.s) ! n.t ++ m.s} ;
+
+
+
+}