45,646
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local sub = | local sub = mw.ustring.sub | ||
local find = | local find = mw.ustring.find | ||
local gmatch = | local gmatch = mw.ustring.gmatch | ||
local gsub = | local gsub = mw.ustring.gsub | ||
local match = | local match = mw.ustring.match | ||
local u = mw.ustring.char | local u = mw.ustring.char | ||
local gsplit = mw.text.gsplit | local gsplit = mw.text.gsplit | ||
Line 52: | Line 52: | ||
{"ü", "au̯"}, | {"ü", "au̯"}, | ||
{"ï", "ai̯"}, | {"ï", "ai̯"}, | ||
{"[·%.]ˈ", "ˈ"}, {"·", "."}, {"([áéíóú])", " | {"[·%.]ˈ", "ˈ"}, {"·", "."}, {"([áéíóú])", function(v) return gsub(mw.ustring.toNFD(v), A, "ː") end}, | ||
} | } | ||