10,735
edits
TheNightAvl (talk | contribs) mNo edit summary Tags: Mobile edit Mobile web edit |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 27: | Line 27: | ||
temp = mw.ustring.gsub(temp, "(úș)$", "uoș") | temp = mw.ustring.gsub(temp, "(úș)$", "uoș") | ||
temp = mw.ustring.gsub(temp, "(ýș)$", "yeș") | temp = mw.ustring.gsub(temp, "(ýș)$", "yeș") | ||
temp = mw.ustring.gsub(temp, "(oș)$", "uș") | |||
return temp | return temp | ||
Line 35: | Line 36: | ||
local stems = get_stems(args) | local stems = get_stems(args) | ||
local adj = args['adj'] | local adj = args['adj'] | ||
local adj_broken = break_adj(adj) | local adj_broken = "" | ||
local adj_broken_e = "" | |||
if adj then | |||
adj_broken = break_adj(adj) | |||
adj_broken_e = mw.ustring.gsub(adj_broken, "(uș)$", "ûș") | |||
end | |||
return | return adj_broken | ||
end | end | ||