2,788
edits
No edit summary |
No edit summary |
||
Line 357: | Line 357: | ||
elseif language_from then | elseif language_from then | ||
table.insert(categories, language_to.name .. " terms derived from " .. language_from.name) | table.insert(categories, language_to.name .. " terms derived from " .. language_from.name) | ||
if is_infix( | if is_infix(i_term) or is_prefix(i_term) or is_suffix(i_term) or is_circumfix(i_term) then n_affixes = n_affixes + 1 end | ||
elseif is_infix( | elseif is_infix(i_term) then | ||
table.insert(categories, language_to.name .. " terms infixed with " .. cite_term) | table.insert(categories, language_to.name .. " terms infixed with " .. cite_term) | ||
n_affixes = n_affixes + 1 | n_affixes = n_affixes + 1 | ||
elseif is_prefix( | elseif is_prefix(i_term) then | ||
table.insert(categories, language_to.name .. " terms prefixed with " .. cite_term) | table.insert(categories, language_to.name .. " terms prefixed with " .. cite_term) | ||
n_affixes = n_affixes + 1 | n_affixes = n_affixes + 1 | ||
elseif is_suffix( | elseif is_suffix(i_term) then | ||
table.insert(categories, language_to.name .. " terms suffixed with " .. cite_term) | table.insert(categories, language_to.name .. " terms suffixed with " .. cite_term) | ||
n_affixes = n_affixes + 1 | n_affixes = n_affixes + 1 | ||
elseif is_circumfix( | elseif is_circumfix(i_term) then | ||
table.insert(categories, language_to.name .. " terms circumfixed with " .. cite_term) | table.insert(categories, language_to.name .. " terms circumfixed with " .. cite_term) | ||
n_affixes = n_affixes + 1 | n_affixes = n_affixes + 1 |