1
0
forked from GitHub/gf-core

godis tram grammars, augmented with Fin

This commit is contained in:
aarne
2006-11-08 15:08:09 +00:00
parent 5815ec730a
commit 8680d918f6
45 changed files with 2626 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
--# -path=.:../Common:alltenses
concrete TramLexiconFin of TramLexicon = CatFin **
open Prelude, ParadigmsFin, ParamX, (Lex=LexiconFin), GodisLangFin in {
lin
-- Adjectives
short_A = Lex.short_A;
-- Conjunctions
and_then_Conj = {s = ["ja sitten"]; n = Pl; lock_Conj = <>};
-- Nouns
route_N = regN "reitti";
stop_N = regN "pysäkki";
way_N = regN "tie";
-- Prepositions
from_Prep = casePrep from_Case ; ----
to_Prep = casePrep to_Case ; ----
-- Verb-1
help_V = regV "auttaa";
restart_V = regV "uudelleenaloittaa"; ---- alusta
-- Verb-2
go_from_V2 = caseV2 Lex.go_V from_Case ;
go_to_V2 = caseV2 Lex.go_V to_Case ;
find_V2 = Lex.find_V2;
findout_V2 = dirV2 (regV "selvittää");
take_V2 = dirV2 (regV "ottaa") ;
}