10,735
edits
TheNightAvl (talk | contribs) mNo edit summary Tag: Manual revert |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 9: | Line 9: | ||
if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end | if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end | ||
local l = m_data.labels[inflection] | local l = m_data.labels[inflection] | ||
if i > 1 | if i > 1 then | ||
table.insert(out, " ") | table.insert(out, inflection == "/" and "" or " ") | ||
end | end | ||
if l then | if l then | ||
Line 23: | Line 23: | ||
end | end | ||
if inflections[i+1] and inflection ~= "/" then | if inflections[i+1] and inflection ~= "/" then | ||
table.insert(out, " ") | table.insert(out, inflection == "/" and "" or " ") | ||
end | end | ||
end | end |