From ebba8b58945b6c6ef6fb8a18ff946c1ca126016f Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Sun, 9 Feb 2025 09:15:03 +0100 Subject: [PATCH] for prepositions show the case as well --- src/mongolian/DocumentationMon.gf | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/mongolian/DocumentationMon.gf b/src/mongolian/DocumentationMon.gf index 50c644cc2..7301d5036 100644 --- a/src/mongolian/DocumentationMon.gf +++ b/src/mongolian/DocumentationMon.gf @@ -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= "" } ;