Content deleted Content added
Testing |
Testing |
||
Line 273:
table.insert(name.familyNames, fullNameTable[2])
end
local articles = {"el", "la", "los", "las"}
table.insert(name.familyNames, table.concat(fullNameTable, " ", positions[1]))▼
for x, article in ipairs(articles)do
if(articles == #fullNameTable-1) then
▲ table.insert(name.familyNames, table.concat(fullNameTable, " ", positions[1]))
else
table.insert(name.familyNames, table.concat(fullNameTable, " ", positions[1], #fullNameTable-1))
table.insert(name.familyNames, fullNameTable[#fullNameTable])
end
end
end
else
|