Module:tln-conj: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| (10 intermediate revisions by the same user not shown) | |||
| Line 96: | Line 96: | ||
fut_3p = "ᠢᠷᠡᠨ" | fut_3p = "ᠢᠷᠡᠨ" | ||
} | } | ||
} | |||
---------------------------------------------------------------- | |||
-- IRREGULAR VERBS | |||
---------------------------------------------------------------- | |||
local irregulars = { | |||
["ᠢᠷᠡ"] = { | |||
pres_1s = "ᠸᠣ", | |||
pres_2s = "ᠸᠠᠢᠰ", | |||
pres_3s = "ᠸᠠᠢᠲ", | |||
pres_1p = "ᠸᠠᠢᠨᠤᠰ", | |||
pres_2p = "ᠸᠠᠢᠰ", | |||
pres_3p = "ᠸᠣᠨ", | |||
past_1s = "ᠣᠯᠠᠢ", | |||
past_2s = "ᠣᠯᠠᠢᠰᠲᠢ", | |||
past_3s = "ᠣᠯᠠᠢᠲ", | |||
past_1p = "ᠣᠯᠠᠢᠨᠤᠰ", | |||
past_2p = "ᠣᠯᠠᠢᠰᠲᠢᠰ", | |||
past_3p = "ᠣᠯᠡᠷᠤᠨ" | |||
} | |||
} | } | ||
| Line 142: | Line 167: | ||
["ᠴ"] = "č", | ["ᠴ"] = "č", | ||
["ᠶ"] = "y", | ["ᠶ"] = "y", | ||
["ᠳ"] = "d" | ["ᠳ"] = "d", | ||
["ᠯ"] = "l" | |||
} | } | ||
| Line 245: | Line 271: | ||
if args[slot] and args[slot] ~= "" then | if args[slot] and args[slot] ~= "" then | ||
forms[slot] = args[slot] | forms[slot] = args[slot] | ||
elseif irregulars[title] | |||
and irregulars[title][slot] then | |||
forms[slot] = irregulars[title][slot] | |||
else | else | ||
forms[slot] = combine( | forms[slot] = combine(stem, ending) | ||
end | end | ||