forked from GitHub/gf-rgl
for prepositions show the case as well
This commit is contained in:
@@ -59,7 +59,17 @@ lin InflectionAdv, InflectionAdV, InflectionAdA, InflectionAdN = \adv -> {
|
|||||||
lin InflectionPrep = \prep -> {
|
lin InflectionPrep = \prep -> {
|
||||||
t = "prep" ;
|
t = "prep" ;
|
||||||
s1= heading1 "Preposition" ;
|
s1= heading1 "Preposition" ;
|
||||||
s2= paragraph (prep.s) ;
|
s2= paragraph (prep.s ++
|
||||||
|
case prep.rc of {
|
||||||
|
Nom => "nominative" ;
|
||||||
|
Acc => "accusative" ;
|
||||||
|
Dat => "dative" ;
|
||||||
|
Gen => "genitive" ;
|
||||||
|
Abl => "ablative" ;
|
||||||
|
Inst=> "instrumental" ;
|
||||||
|
Com => "commitative" ;
|
||||||
|
Dir => "directional"
|
||||||
|
}) ;
|
||||||
s3= ""
|
s3= ""
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user