summaryrefslogtreecommitdiff
path: root/next-lib/src/romanian/ParadigmsRon.gf
diff options
context:
space:
mode:
authorra.monique <ra.monique@gmail.com>2009-02-25 12:54:00 +0000
committerra.monique <ra.monique@gmail.com>2009-02-25 12:54:00 +0000
commit7091a83d5632f6d6c2f9ae578fd7d60ca52d03c5 (patch)
treee803456cabb2769508d19d0274278232aeec59fd /next-lib/src/romanian/ParadigmsRon.gf
parent8b844f7279d3ac280393cb6f3a50622548ed3940 (diff)
Romanian: mkV moved to ParadigmsRon
Diffstat (limited to 'next-lib/src/romanian/ParadigmsRon.gf')
-rw-r--r--next-lib/src/romanian/ParadigmsRon.gf25
1 files changed, 24 insertions, 1 deletions
diff --git a/next-lib/src/romanian/ParadigmsRon.gf b/next-lib/src/romanian/ParadigmsRon.gf
index 57735c093..b3b493ca8 100644
--- a/next-lib/src/romanian/ParadigmsRon.gf
+++ b/next-lib/src/romanian/ParadigmsRon.gf
@@ -11,7 +11,8 @@ resource ParadigmsRon =
(Predef=Predef),
Prelude,
MorphoRon,
- CatRon in {
+ CatRon,
+ BeschRon in {
flags optimize=all ;
@@ -308,6 +309,28 @@ prefA a = {s = a.s ; isPre = True ; lock_A = <>} ;
mkAdA x = ss x ** {lock_AdA = <>} ;
+--Verbs :
+
+oper regV : Str -> Verbe = \s ->
+case s of
+{ x + ("chea"|"ghea") => mkV61 s ;
+ x + "ea" => mkV69 s ;
+ x + "ca" => mkV8 s ;
+ x + "ga" => mkV9 s ;
+ x + "eia" => mkV11 s;
+ x + "ia" => mkV10 s;
+ x + "a" => mkV6 s ;
+ x + "e" => mkV79 s ;
+ x + "ui" => mkV121 s ;
+ x + "ii" => mkV120 s ;
+ x + "i" => mkV119 s ;
+ x + "î" => mkV141 s
+};
+
+oper mkV : Str -> V = \s -> mkNV (regV s) ;
+
+
+
mkV2S : V -> Prep -> V2S ;
-- mkVV : V -> VV ;
mkV2V : V -> Prep -> Prep -> V2V ;