1
0
forked from GitHub/gf-core

"Committed_by_peb"

This commit is contained in:
peb
2005-04-19 10:57:18 +00:00
parent d9c2c1e994
commit 046161b732
6 changed files with 41 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ np_p : N -> NP;
vp_t : V -> NP -> VP;
d_a, d_m : D;
n_c, n_f : N;
v_e : V;
v_e, v_h : V;
}

View File

@@ -21,6 +21,7 @@ d_m = { s = "many"; n = Pl };
n_c = { s = table { Sg => "lion"; Pl => "lions" } };
n_f = { s = table { _ => "fish" } };
v_e = { s = table { Sg => "eats" ; Pl => "eat" } };
v_h = { s = table { Sg => "hunts" ; Pl => "hunt" } };
}

View File

@@ -12,6 +12,7 @@ d_m = { s = "many" };
n_c = { s = variants { "lion" ; "lions" } };
n_f = { s = "fish" };
v_e = { s = variants { "eats" ; "eat" } };
v_h = { s = variants { "hunts" ; "hunt" } };
}

View File

@@ -21,6 +21,7 @@ d_m = { s = table { _ => "maanga" }; n = Pl };
n_c = { s = table { _ => "lejon" }; g = Neu };
n_f = { s = table { Sg => "fisk"; Pl => "fiskar" }; g = Utr };
v_e = { s = "aeter" };
v_h = { s = "jagar" };
}