diff --git a/src/macedonian/CatMkd.gf b/src/macedonian/CatMkd.gf index 84393c77..be434f61 100644 --- a/src/macedonian/CatMkd.gf +++ b/src/macedonian/CatMkd.gf @@ -46,6 +46,7 @@ lincat VPSlash = {present : Aspect => Number => Person => Str; lincat Cl = {present : Aspect => Str; aorist : Str; participle : {aorist : Aspect => Str; perfect : Aspect => Str}} ; +lincat RP = {s : GenNum => Str} ; lincat IP = {s : Str} ; lincat Subj = {s : Str} ; diff --git a/src/macedonian/GrammarMkd.gf b/src/macedonian/GrammarMkd.gf index 3975b064..1d39e8df 100644 --- a/src/macedonian/GrammarMkd.gf +++ b/src/macedonian/GrammarMkd.gf @@ -1,2 +1,2 @@ -concrete GrammarMkd of Grammar = VerbMkd,SentenceMkd,NounMkd,AdverbMkd,AdjectiveMkd,NumeralMkd,PhraseMkd,TextX,StructuralMkd,TenseX ** { +concrete GrammarMkd of Grammar = VerbMkd,SentenceMkd,NounMkd,AdverbMkd,AdjectiveMkd,NumeralMkd,PhraseMkd,RelativeMkd,TextX,StructuralMkd,TenseX ** { } diff --git a/src/macedonian/RelativeMkd.gf b/src/macedonian/RelativeMkd.gf new file mode 100644 index 00000000..0482ea35 --- /dev/null +++ b/src/macedonian/RelativeMkd.gf @@ -0,0 +1,9 @@ +concrete RelativeMkd of Relative = CatMkd ** open Prelude,ResMkd in { + lin IdRP = {s = table { + GSg Masc => "кој" ; + GSg Fem => "која" ; + GSg Neuter => "кое" ; + GPl => "кои" + } + } ; +}