Module:Wt/sco/IPA/templates
Appearance
Documentation for this module may be created at Module:Wt/sco/IPA/templates/doc
local export = {}
local m_IPA = require("Module:Wt/sco/IPA")
local U = mw.ustring.char
local syllabic = U(0x0329)
local function track(IPA, langObject, langCode, symbols, category)
if langObject and langObject:getCode() == langCode then
if type(symbols) == "string" then
if mw.ustring.find(IPA, symbols) then
require("Module:Wt/sco/debug").track("IPA/" .. category)
end
elseif type(symbols) == "table" then
for _, symbol in pairs(symbols) do
if mw.ustring.find(IPA, symbol) then
require("Module:Wt/sco/debug").track("IPA/" .. category)
end
end
end
end
end
-- Used for [[Template:IPA]].
function export.IPA(frame)
local params = {
[1] = {list = true, allow_holes = true},
["n"] = {list = true, allow_holes = true},
["qual"] = {list = true, allow_holes = true},
["lang"] = {required = false, default = ""},
}
local err = nil
local args = require("Module:Wt/sco/parameters").process(frame.getParent and frame:getParent().args or frame, params)
local lang = mw.title.getCurrentTitle().nsText == "Template" and "en" or args["lang"]
lang = require("Module:Wt/sco/languages").getByCode(lang)
if not lang then
if args["lang"] == "" then
err = "No language code specified.[[Category:Language code missing/IPA]]"
else
err = "The language code '" .. args["lang"] .. "' is not valid.[[Category:Language code invalid/IPA]]"
end
end
-- Temporary test to see which Finnish entries use {{IPA}} rather than {{fi-IPA}}
if lang and (lang:getCode() == "ca" or lang:getCode() == "fi") then
require("Module:Wt/sco/debug").track("IPA/" .. lang:getCode())
end
local items = {}
for i = 1, math.max(args[1].maxindex, args["n"].maxindex) do
local pron = args[1][i]
local note = args["n"][i]
local qual = args["qual"][i]
-- [[Special:WhatLinksHere/Template:tracking/IPA/ambig]]
track(pron, lang, "en", "iə", "ambig")
-- [[Special:WhatLinksHere/Template:tracking/IPA/cs/syllabic-consonant]]
track(pron, lang, "cs", "[mnrl]" .. syllabic, "cs/syllabic-consonant")
-- [[Special:WhatLinksHere/Template:tracking/IPA/eeoo]]
track(pron, lang, "en", { "ɪi", "ʊu", "ɪj", "ʊw" }, "eeoo")
-- [[Special:WhatLinksHere/Template:tracking/IPA/Pashto]]
track(pron, lang, "ps", "ɤ", "Pashto")
--[=[ [[Special:WhatLinksHere/Template:tracking/IPA/fa/glottal-stop]]
Persian apparently does not have a glottal stop phoneme. ]=]
track(pron, lang, "fa", "ʔ", "fa/glottal-stop")
if pron or note or qual then
table.insert(items, {pron = pron, note = note, qualifiers = {qual}})
end
end
return m_IPA.format_IPA_full(lang, items, err)
end
-- Used for [[Template:IPAchar]].
function export.IPAchar(frame)
local params = {
[1] = {list = true, allow_holes = true},
["n"] = {list = true, allow_holes = true},
["lang"] = {}, -- This parameter is not used and does nothing, but is allowed for futureproofing.
}
local args = require("Module:Wt/sco/parameters").process(frame.getParent and frame:getParent().args or frame, params)
local items = {}
for i = 1, math.max(args[1].maxindex, args["n"].maxindex) do
local pron = args[1][i]
local note = args["n"][i]
if pron or note then
table.insert(items, {pron = pron, note = note})
end
end
-- Format
return m_IPA.format_IPA_multiple(nil, items)
end
function export.XSAMPA(frame)
local params = {
[1] = { required = true },
}
local args = require("Module:Wt/sco/parameters").process(frame:getParent().args, params)
return m_IPA.XSAMPA_to_IPA(args[1] or "[Eg'zA:mp5=]")
end
-- Used by [[Template:X2IPA]]
function export.X2IPAtemplate(frame)
local params = {
[1] = { list = true, allow_holes = true },
["n"] = { list = true, allow_holes = true },
["qual"] = { list = true, allow_holes = true },
["lang"] = { required = true },
}
local args = require("Module:Wt/sco/parameters").process(frame:getParent().args, params)
pronunciations, notes, qualifiers, lang = args[1], args["n"], args["qual"], args["lang"]
local output = {}
table.insert(output, "{{Wt/sco/IPA")
for i = 1, math.max(pronunciations.maxindex, notes.maxindex, qualifiers.maxindex) do
if pronunciations[i] then
table.insert(output, "|"..m_IPA.XSAMPA_to_IPA(pronunciations[i]))
end
if notes[i] then
table.insert(output, "|n"..i.."="..notes[i])
end
if qualifiers[i] then
table.insert(output, "|qual"..i.."="..qualifiers[i])
end
end
if lang then
table.insert(output, "|lang="..lang.."}}")
end
return table.concat(output)
end
-- Used by [[Template:Wt/sco/X2IPAchar]]
function export.X2IPAchar(frame)
local params = {
[1] = { list = true, allow_holes = true },
["n"] = { list = true, allow_holes = true },
["lang"] = { },
}
local args = require("Module:Wt/sco/parameters").process(frame:getParent().args, params)
pronunciations, notes, lang = args[1], args["n"], args["lang"]
local output = {}
table.insert(output, "{{Wt/sco/IPAchar")
for i = 1, math.max(pronunciations.maxindex, notes.maxindex) do
if pronunciations[i] then
table.insert(output, "|"..m_IPA.XSAMPA_to_IPA(pronunciations[i]))
end
if notes[i] then
table.insert(output, "|n"..i.."="..notes[i])
end
end
if lang then
table.insert(output, "|lang="..lang)
end
table.insert(output, "}}")
return table.concat(output)
end
-- Used by [[Template:X2rhymes]]
function export.X2rhymes(frame)
local params = {
[1] = { required = true, list = true, allow_holes = true },
["lang"] = { required = true },
}
local args = require("Module:Wt/sco/parameters").process(frame:getParent().args, params)
pronunciations, lang = args[1], args["lang"]
local output = {}
table.insert(output, "{{Wt/sco/rhymes")
for i = 1, pronunciations.maxindex do
if pronunciations[i] then
table.insert(output, "|"..m_IPA.XSAMPA_to_IPA(pronunciations[i]))
end
end
if lang then
table.insert(output, "|lang="..lang)
end
table.insert(output, "}}")
return table.concat(output)
end
return export