Модуль:IPA/шаблони
Зовнішній вигляд
Документацію для цього модуля можна створити у Модуль:IPA/шаблони/документація
local export = {}
local m_IPA = require("Модуль:IPA")
local U = mw.ustring.char
local syllabic = U(0x0329)
-- Використовуване для [[Шаблон: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 = ""},
["nocount"] = {type = "boolean"},
["sort"] = {},
}
local err = nil
local args = require("Модуль:parameters").process(frame.getParent and frame:getParent().args or frame, params)
local lang = mw.title.getCurrentTitle().nsText == "Template" and "uk" or args["lang"]
lang = require("Модуль:languages").getByCode(lang)
if not lang then
if args["lang"] == "" then
err = "Код мови не вказано.[[Категорія:Код мови відсутній/МФА]]"
else
err = "Код мови '" .. args["lang"] .. "' недійсний.[[Категорія:Код мови недійсний/МФА]]"
end
end
-- [[Спеціальна:WhatLinksHere/Шаблон:tracking/IPA/grc]]
if lang and lang:getCode() == "grc" then
require("Модуль:debug").track("IPA/grc")
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]
if lang then
require("Модуль:IPA/tracking").run_tracking(pron, lang)
end
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, nil, args.sort, args.nocount)
end
-- Використовуване для [[Шаблон:IPAchar]].
function export.IPAchar(frame)
local params = {
[1] = {list = true, allow_holes = true},
["n"] = {list = true, allow_holes = true},
["lang"] = {}, -- Цей параметр не використовується і нічого не робить, але дозволений для майбутньої перевірки.
}
local args = require("Модуль: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("Модуль:parameters").process(frame:getParent().args, params)
return m_IPA.XSAMPA_to_IPA(args[1] or "[Eg'zA:mp5=]")
end
-- Використовуване для [[Шаблон: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("Модуль:parameters").process(frame:getParent().args, params)
local m_XSAMPA = require("Модуль:IPA/X-SAMPA")
pronunciations, notes, qualifiers, lang = args[1], args["n"], args["qual"], args["lang"]
local output = {}
table.insert(output, "{{IPA")
for i = 1, math.max(pronunciations.maxindex, notes.maxindex, qualifiers.maxindex) do
if pronunciations[i] then
table.insert(output, "|"..m_XSAMPA.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
-- Використовуване для [[Шаблон:X2IPAchar]]
function export.X2IPAchar(frame)
local params = {
[1] = { list = true, allow_holes = true },
["n"] = { list = true, allow_holes = true },
["lang"] = { },
}
local args = require("Модуль:parameters").process(frame:getParent().args, params)
local m_XSAMPA = require("Модуль:IPA/X-SAMPA")
pronunciations, notes, lang = args[1], args["n"], args["lang"]
local output = {}
table.insert(output, "{{IPAchar")
for i = 1, math.max(pronunciations.maxindex, notes.maxindex) do
if pronunciations[i] then
table.insert(output, "|"..m_XSAMPA.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 [[Шаблон:X2rhymes]]
function export.X2rhymes(frame)
local params = {
[1] = { required = true, list = true, allow_holes = true },
["lang"] = { required = true },
}
local args = require("Модуль:arameters").process(frame:getParent().args, params)
local m_XSAMPA = require("Модуль:IPA/X-SAMPA")
pronunciations, lang = args[1], args["lang"]
local output = {}
table.insert(output, "{{rhymes")
for i = 1, pronunciations.maxindex do
if pronunciations[i] then
table.insert(output, "|"..m_XSAMPA.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