mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-15 18:10:12 -06:00
28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
concrete StructuralSlo of Structural = CatSlo **
|
|
open ParadigmsSlo, ResSlo, Prelude in {
|
|
|
|
lin
|
|
and_Conj = mkConj "a" ;
|
|
by8agent_Prep = mkPrep "od" Gen ; ---- TODO this means "from", there might be no good translation
|
|
few_Det = invarNumeral "málo" ; -----
|
|
for_Prep = mkPrep "pro" accusative ;
|
|
from_Prep = mkPrep (pre {"s"|"z" => "zo" ; _ => "z"}) Gen ; ---- consonant clusters
|
|
have_V2 = mkV2 haveVerbForms ;
|
|
in_Prep = mkPrep (pre {"v"|"m" => "vo" ; _ => "v"}) Loc ; ----
|
|
many_Det = regNumeral "mnoho" "mnohých" "mnohým" "mnohými" ; -- CEG 6.8 ----
|
|
or_Conj = mkConj "alebo" ;
|
|
somePl_Det = {s = \\g,c => (demPronFormsAdjective (mkDemPronForms "nektor") "").s ! g ! Pl ! c ; size = Num5} ;
|
|
something_NP = {s,clit,prep = \\c => "nie" + coForms ! c ; a = Ag Neutr Sg P3 ; hasClit = False} ; -- CEG 5.6.3
|
|
possess_Prep = mkPrep "" Gen ;
|
|
that_Quant = demPronFormsAdjective (mkDemPronForms "tamt") "" ;
|
|
this_Quant = demPronFormsAdjective (mkDemPronForms "t") "to" ;
|
|
to_Prep = mkPrep "do" Gen ;
|
|
with_Prep = mkPrep (pre {"s"|"z" => "so" ; _ => "s"}) Ins ; ----
|
|
|
|
i_Pron = personalPron (Ag (Masc Anim) Sg P1) ;
|
|
youSg_Pron = personalPron (Ag (Masc Anim) Sg P2) ;
|
|
he_Pron = personalPron (Ag (Masc Anim) Sg P3) ;
|
|
she_Pron = personalPron (Ag Fem Sg P3) ;
|
|
|
|
}
|