1
0
forked from GitHub/gf-rgl

for prepositions show the case as well

This commit is contained in:
Krasimir Angelov
2025-02-09 09:15:03 +01:00
parent 1633d11e06
commit ebba8b5894

View File

@@ -59,7 +59,17 @@ lin InflectionAdv, InflectionAdV, InflectionAdA, InflectionAdN = \adv -> {
lin InflectionPrep = \prep -> {
t = "prep" ;
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= ""
} ;