mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-28 09:28:54 -06:00
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 -> {
|
||||
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= ""
|
||||
} ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user