12,564
edits
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) No edit summary |
||
| Line 31: | Line 31: | ||
-- build split IPA row | -- build split IPA row | ||
if data.IPAs ~= {} then | mw.logObject(data) | ||
if data.IPAs ~= nil and data.IPAs ~= {} then | |||
build("<tr>") | build("<tr>") | ||
for i = 1, term_count do | for i = 1, term_count do | ||
| Line 54: | Line 55: | ||
-- build gloss row | -- build gloss row | ||
if data.glosses ~= {} then | if data.glosses ~= nil and data.glosses ~= {} then | ||
build("<tr>") | build("<tr>") | ||
for i = 1, term_count do | for i = 1, term_count do | ||
| Line 67: | Line 68: | ||
-- build split translation row | -- build split translation row | ||
if data.translations ~= {} then | if data.translations ~= nil and data.translations ~= {} then | ||
build("<tr>") | build("<tr>") | ||
for i = 1, term_count do | for i = 1, term_count do | ||