Mô đun:kmr-nouns/masc and fem
Giao diện
-- [[ku:Modul:ku-tewîn-nav/mê û nêr]]
local export = {}
decl = require('Module:kmr-nouns').decl
local function tooltip(word, abbr)
return ' (<span style="cursor:help;" title="' .. word .. '"><span style="border-bottom: 1px dotted #555555; ">' .. abbr .. '</span></span>)'
end
function export.mf(title, variant)
return
'<div class="NavFrame" style="width:65%">'
..'\n<div class="NavHead" style="">Biến cách của ' ..title.. '</div>'
..'\n<div class="NavContent">'
..'\n{| border="1" style="border-collapse:collapse; background-color:white; clear:right; width:100%; " class="inflection-table"'
..'\n|-'
..'\n! colspan="4" align="center" | Giống cái và đực xác định'
..'\n|-'
..'\n! style="background-color:#FFFFE0; text-align:left;" | Cách'
..'\n! colspan="1" style="background-color:#FFFFE0;" | Giống cái' .. tooltip('singular', 'sg')
..'\n! colspan="1" style="background-color:#FFFFE0;" | Giống đực' .. tooltip('singular', 'sg')
..'\n! colspan="1" style="background-color:#FFFFE0;" | Số nhiều'
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[nominative|nom.]]'
..'\n|' .. decl(title, 'f', variant)["def_nom_s"]
..'\n|' .. decl(title, 'm', variant)["def_nom_s"]
..'\n|' .. decl(title, 'm', variant)["def_nom_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[construct|cons.]]'
..'\n|' .. decl(title, 'f', variant)["def_cons_s"]
..'\n|' .. decl(title, 'm', variant)["def_cons_s"]
..'\n|' .. decl(title, 'm', variant)["def_cons_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[oblique|obl.]]'
..'\n|' .. decl(title, 'f', variant)["def_obl_s"]
..'\n|' .. decl(title, 'm', variant)["def_obl_s"]
..'\n|' .. decl(title, 'm', variant)["def_obl_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[oblique|obl.]] chỉ định'
..'\n|' .. decl(title, 'f', variant)["def_demons_obl_s"]
..'\n|' .. decl(title, 'm', variant)["def_demons_obl_s"]
..'\n|' .. decl(title, 'm', variant)["def_demons_obl_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[vocative|voc.]]'
..'\n|' .. decl(title, 'f', variant)["voc_s"]
..'\n|' .. decl(title, 'm', variant)["voc_s"]
..'\n|' .. decl(title, 'm', variant)["voc_p"]
..'\n|-'
..'\n! colspan="5" align="center" | Giống cái và đực bất định'
..'\n|-'
..'\n!style="background-color:#FFFFE0; text-align:left;" | Cách'
..'\n! colspan="1" style="background-color:#FFFFE0;" | Giống cái' .. tooltip('singular', 'sg')
..'\n! colspan="1" style="background-color:#FFFFE0;" | Giống đực' .. tooltip('singular', 'sg')
..'\n! colspan="1" style="background-color:#FFFFE0;" | Số nhiều'
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[nominative|nom.]]'
..'\n|' .. decl(title, 'f', variant)["indef_nom_s"]
..'\n|' .. decl(title, 'm', variant)["indef_nom_s"]
..'\n|' .. decl(title, 'm', variant)["indef_nom_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[construct|cons.]]'
..'\n|' .. decl(title, 'f', variant)["indef_cons_s"]
..'\n|' .. decl(title, 'm', variant)["indef_cons_s"]
..'\n|' .. decl(title, 'm', variant)["indef_cons_p"]
..'\n|-'
..'\n| style="background-color:#e7e8ea; text-align:left;" | [[oblique|obl.]]'
..'\n|' .. decl(title, 'f', variant)["indef_obl_s"]
..'\n|' .. decl(title, 'm', variant)["indef_obl_s"]
..'\n|' .. decl(title, 'm', variant)["indef_obl_p"]
..'\n|}</div></div>'
end
return export