summaryrefslogtreecommitdiff
path: root/examples/godis-tram/Tram/TramLexiconFin.gf
blob: 556706fe84f80156853b183297da1c8cabf6c182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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") ;

}