Module:IPAc2-mh: Difference between revisions

Content deleted Content added
No edit summary
[w] off-glide tweak
 
(10 intermediate revisions by 2 users not shown)
Line 1:
-- This module is primarily maintained at:
-- https://en.wiktionary.org/wiki/Module:mh-pronunc
-- Please direct all technical queries and contributions there.
-- The version of this script on Wikipedia is only a mirror.
 
local export = {}
 
local MERGED_VOWELS = false
local PARENTHETICAL_EPENTHESIS = true
local PHONETIC_DETAILS = false
local SPECIAL_EPENTHESIS = true
local W_OFF_GLIDES = true
 
local export = {}
 
local math_max = math.max
local math_min = math.min
local mw_text_gsplit = mw.text.gsplit
local mw_text_split = mw.text.split
local mw_text_trim = mw.text.trim
local mw_ustring_gsub = mw.ustring.gsub
local mw_ustring_lower = mw.ustring.lower
local string_byte = string.byte
local string_find = string.find
local string_gmatch = string.gmatch
local string_gsub = string.gsub
local string_lower = string.lower
local string_sub = string.sub
local table_concat = table.concat
local table_remove = table.remove
 
local ASYLL = "̯"
Line 34 ⟶ 20:
local C1_ = "pbtdSZszkgmnNrlyYhH_"
local C1 = "["..C1_.."]"
local CC2_ = ".[jGw]"
local C = ".["..C2_.."]"
local V_ = "aEeiAV7MQOou"
local V = "["..V_.."]"
Line 45 ⟶ 32:
local EMPTY = {}
 
-- Adds elements to a sequence as if it's a set (retains unique elements only).
local function addUnique(seq, value)
for _, value2 in pairs(seq) do
Line 54 ⟶ 42:
end
 
-- Intended to work the same as JavaScript's Object.assign() function.
local function assign(target, ...)
local args = { ... }
Line 67 ⟶ 56:
 
local function fastTrim(text)
return string.match(text, "^%s*(.-)%s*$")
if text == "" or text == " " then
return ""
else
local atLeft = string_byte(text) == 32
local atRight = string_byte(text, -1) == 32
if atLeft then
if atRight then
return string_sub(text, 2, -2)
else
return string_sub(text, 2)
end
elseif atRight then
return string_sub(text, 1, -2)
else
return text
end
end
end
 
local function parseBoolean(text)
if type(text) == "string" then
text = string_gsubstring.gsub(text, "[^0-9A-Za-z]", "")
if text ~= "" and text ~= "0" and string_lowerstring.lower(text) ~= "false" then
return true
end
Line 99 ⟶ 72:
chars = chars or {}
local index = 1
for ch in string_gmatchstring.gmatch(text, pattern or UTF8_CHAR) do
chars[index] = ch
index = index + 1
Line 105 ⟶ 78:
if index <= #chars then
if shorten then
table_removetable.remove(chars, index)
else
repeat
Line 117 ⟶ 90:
 
local function string_gsub2(text, pattern, subst)
return string_gsubstring.gsub(string_gsubstring.gsub(text, pattern, subst), pattern, subst)
end
 
Line 143 ⟶ 116:
local function ZTBL(text, sep)
local tbl = {}
for key in mw_text_gsplitmw.text.gsplit(text, sep or " ") do
tbl[key] = true
end
Line 151 ⟶ 124:
 
 
local PARSE_PSEUDO_GLIDE = {
["y"] = "0",
local PARSE_C_CH_CW
["h"] = "0h",
local PARSE_REMAINING
["w"] = "0w"
}
 
local PARSE_C_CH_CW = {
["k"] = "kG",
["kh"] = "kGh", -- N\A
["kw"] = "kW",
["l"] = "lJ",
["lh"] = "lG",
["lw"] = "lW",
["m"] = "mJ",
["mh"] = "mG",
["mw"] = "mJw", -- N\A
["n"] = "nJ",
["nh"] = "nG",
["nw"] = "nW",
["ng"] = "NG",
["ngh"] = "NGh", -- N\A
["ngw"] = "NW",
["r"] = "rG",
["rh"] = "rGh", -- N\A
["rw"] = "rW",
["0"] = "_J",
["0h"] = "_G",
["0w"] = "_W"
}
 
local PARSE_REMAINING = {
["b"] = "pG",
["d"] = "rj",
["e"] = "E",
["&"] = "e",
["h"] = "hG",
["j"] = "tj",
["J"] = "j",
["p"] = "pj",
["t"] = "tG",
["w"] = "hw",
["W"] = "w",
["y"] = "hj",
["z"] = "yj",
["Z"] = "Yj",
["'"] = ""
}
 
local function parse(code)
local outSeq = {}
code = mw_ustring_gsubmw.ustring.gsub(code, "%s+", " ")
code = string_lowerstring.lower(code)
for text in mw_text_gsplitmw.text.gsplit(code, " *,[ ,]*") do
text = fastTrim(text)
if text ~= "" then
local temp = string_gsubstring.gsub(text, "[abdeghijklmnprtwy_&'%- ]", "")
if temp ~= "" then
error("'"..code.."' contains unsupported characters: "..temp)
Line 171 ⟶ 188:
-- Recognize "y_", "h_", "w_", "_y", "_h", "_w" as pseudo-glides.
text = string.gsub(text, "_*([hwy])_+", PARSE_PSEUDO_GLIDE)
PARSE_PSEUDO_GLIDE = PARSE_PSEUDO_GLIDE or {
text = string.gsub(text, "_+([hwy])", PARSE_PSEUDO_GLIDE)
["y"] = "0", ["h"] = "0h", ["w"] = "0w"
if string.find(text, "_") then
}
text = string_gsub(text, "_*([hwy])_+", PARSE_PSEUDO_GLIDE)
text = string_gsub(text, "_+([hwy])", PARSE_PSEUDO_GLIDE)
if string_find(text, "_") then
error("contains misplaced underscores: "..code)
end
-- a plain {i} protected from dialect-specific reflexes
text = string_gsubstring.gsub(text, "'i", "I")
-- "yi'y" and "'yiy" sequences
text = string_gsubstring.gsub(text, "('?)yi('*)y", function(aposA, aposB)
if aposA ~= "" then
-- "dwelling upon" i
Line 195 ⟶ 209:
-- Convert multigraphs to pseudo-X-SAMPA format.
text = string.gsub(text, "[klmnr0]g?[hw]?", PARSE_C_CH_CW)
PARSE_C_CH_CW = PARSE_C_CH_CW or {
if string.find(text, "g") then
["k"] = "kG",
["kh"] = "kGh", -- N\A
["kw"] = "kW",
["l"] = "lJ",
["lh"] = "lG",
["lw"] = "lW",
["m"] = "mJ",
["mh"] = "mG",
["mw"] = "mJw", -- N\A
["n"] = "nJ",
["nh"] = "nG",
["nw"] = "nW",
["ng"] = "NG",
["ngh"] = "NGh", -- N\A
["ngw"] = "NW",
["r"] = "rG",
["rh"] = "rGh", -- N\A
["rw"] = "rW",
["0"] = "_J",
["0h"] = "_G",
["0w"] = "_W"
}
text = string_gsub(text, "[klmnr0]g?[hw]?", PARSE_C_CH_CW)
if string_find(text, "g") then
error("contains g that is not part of ng: "..code)
end
-- Convert remaining sequences to pseudo-X-SAMPA format.
text = string.gsub(text, ".", PARSE_REMAINING)
PARSE_REMAINING = PARSE_REMAINING or {
["b"] = "pG",
["d"] = "rj",
["e"] = "E",
["&"] = "e",
["h"] = "hG",
["j"] = "tj",
["J"] = "j",
["p"] = "pj",
["t"] = "tG",
["w"] = "hw",
["W"] = "w",
["y"] = "hj",
["z"] = "yj",
["Z"] = "Yj",
["'"] = ""
}
text = string_gsub(text, ".", PARSE_REMAINING)
-- Enforce CVC, CVCVC, CVCCVC, etc. phonotactics,
-- but allow VC, CV at affix boundaries
-- where a vowel may link to another morpheme's consonant.
temp = string_gsubstring.gsub(text, "[%s%-]+", "")
if string_findstring.find(temp, "_..[jGw]") or
string_findstring.find(temp, ".[jGw]_.")
then
error("pseudo-glides may not neighbor a consonant")
end
if string_findstring.find(temp, VI.."_."..VI) then
error("pseudo-glides may only be at the beginning or end"..code)
end
if string_findstring.find(temp, VI..VI) then
error("vowels must be separated by a consonant: "..code)
end
if string_findstring.find(temp, ".[jGw].[jGw].[jGw]") then
error("each consonant cluster is limited to two: "..code)
end
if string_findstring.find(temp, ".[jGw].[jGw]$") then
error("may not end with a consonant cluster: "..code)
end
string_gsubstring.gsub(temp, "^(.[jGw])(.[jGw])", function(consonX, consonY)
if consonX ~= consonY then
error("may only begin with single or geminated consonant: "
Line 298 ⟶ 272:
["hj"] = "y", ["hG"] = "h", ["hw"] = "w",
["_j"] = "", ["_G"] = "", ["_w"] = "",
["a"] = "a",
["E"] = "e",
["e"] = "&",
["i"] = "i",
["I"] = "i"
}
local BENDER_MED = assign({}, BENDER_1968, {
Line 312 ⟶ 286:
["lG"] = "ļ",
["lw"] = "ļ°",
["e"] = "ȩ"
})
local BENDER_MOD = assign({}, BENDER_MED, {
Line 323 ⟶ 297:
["lG"] = "ḷ",
["lw"] = "ḷʷ",
["e"] = "ẹ"
})
local BENDER_DEFAULT = assign({}, BENDER_MOD, {
Line 331 ⟶ 305:
["lG"] = "ļ",
["lw"] = "ļʷ",
["e"] = "ȩ"
})
local BENDER_MAPS = {
["1968"] = BENDER_1968,
["med"] = BENDER_MED,
["mod"] = BENDER_MOD
}
 
Line 346 ⟶ 320:
local version = args and args.version
local map = BENDER_MAPS[
type(version) == "string" and string_lowerstring.lower(version) or ""
] or BENDER_DEFAULT
local outSeq = {}
for _, text in pairs(inSeq) do
text = string_gsubstring.gsub(text, ".[jGw]?", map)
addUnique(outSeq, text)
end
Line 368 ⟶ 342:
 
local function toMOD(text)
text = mw_ustring_gsubmw.ustring.gsub(text, ".["..CEDILLA..MACRON.."]?", TO_MOD)
return text
end
Line 385 ⟶ 359:
["hj"] = "j", ["hG"] = "ɰ", ["hw"] = "w",
["_j"] = "", ["_G"] = "", ["_w"] = "",
["a"] = "æ",
["E"] = "ɛ",
["e"] = "e",
["i"] = "i",
["I"] = "i"
}
if false then
Line 408 ⟶ 382:
local outSeq = {}
for _, text in pairs(inSeq) do
text = string_gsubstring.gsub(text, ".[jGw]?", PHONEMIC_MAP)
addUnique(outSeq, text)
end
Line 427 ⟶ 401:
local F2_BACK = 2
local F2_ROUND = 3
local F2 = {
["j"] = F2_FRONT,
["G"] = F2_BACK,
["w"] = F2_ROUND
}
 
local FRONT_VOWEL = {}
Line 446 ⟶ 424:
end
 
local function maxF1(a, b, c)
if bc then
return VOWEL[math_maxmath.max(2, F1[a], F1[b], F1[c])][F2_FRONT]
elseif b then
return VOWEL[math.max(F1[a], F1[b])][F2_FRONT]
else
return VOWEL[math_max(2, F1FRONT_VOWEL[a])][F2_FRONT]
end
end
Line 457 ⟶ 437:
-- Morphemes can begin with geminated consonants, but spoken words cannot.
text = string_gsubstring.gsub(text, "^(.[jGw])( *)%1( *)("..VI..")",
function(conson, _, __, vowel)
if conson == "hG" then
Line 467 ⟶ 447:
else
if isRalik then
return "hj"..maxF1(vowel, "E")..conson.._..conson..__..vowel
else
return conson..maxF1(vowel, "E").._..conson..__..vowel
end
end
Line 478 ⟶ 458:
-- To block this in the template argument, use "'i" instead of "i".
text = " "..text
text = string_gsubstring.gsub(text,
"([ jGw])( *)(h[jw])( *)i( *)(h[jw])( *)("..VI..")",
function(nonVowel, _, consonX, __, ___, consonY, ____, vowel)
Line 502 ⟶ 482:
end
)
text = string_substring.sub(text, 2)
-- Restore protected {i}, we won't be checking for it anymore.
text = string_gsubstring.gsub(text, "I", "i")
return text
Line 529 ⟶ 509:
local njv_X = { aEei, AV7i, QOou }
local hjvtX = { aEei, aEei, QOou }
local hjvkX = { AV7i, AV7i, QOou }
local _Gv_X = { AV7i, AV7M, QOou }
local rGv_X = { AEei, AV7M, QOou } -- not currently used
Line 535 ⟶ 516:
local rwv_X = { AOou, AOou, QOou }
local hwv_X = { AV7M, AOou, QOou }
local hwvtX = { AV7M, AV7uAV7M, QOou }
-- [F2[secondaryL]][F2[secondaryR]][f1]
local _Xv__ = { _jv_X, _Gv_X, _wv_X }
Line 542 ⟶ 523:
local hXv__ = { _jv_X, hGv_X, hwv_X }
local hXvt_ = { hjvtX, hGv_X, hwvtX }
local hXvk_ = { hjvkX, hGv_X, _wv_X }
local hXvr_ = { hjvtX, hGv_X, hwv_X }
-- [primaryR][F2[secondaryL]][F2[secondaryR]][f1]
Line 560 ⟶ 542:
}
local h_vX_ = {
["p"] = hXv__, ["t"] = hXvt_, ["k"] = hXv__hXvk_,
["m"] = hXv__, ["n"] = hXv__, ["N"] = hXv__hXvk_,
["r"] = hXvr_, ["l"] = hXv__
}
Line 580 ⟶ 562:
["l"] = { ["j"] = "L" }
}
for primary in mw_text_gsplitmw.text.gsplit("ptkmnNrl", "") do
local map2 = map[primary]
if not map2 then
Line 619 ⟶ 601:
["r"] = "r",
["l"] = "l",
["Hj"] = "j",
["HG"] = "ʔ",
["Hw"] = "w",
Line 683 ⟶ 666:
map["Hj"] = map["Hj"] or map["i"]..map["^"]
local key
for primary in mw_text_gsplitmw.text.gsplit("pbBtdTDSZszkgmnJNrRlL_", "") do
for secondary in mw_text_gsplitmw.text.gsplit("jGw", "") do
key = primary..secondary
map[key] = map[key] or (map[primary]..map[secondary])
end
end
for vowel in mw_text_gsplitmw.text.gsplit(V_, "") do
key = vowel.."@"
map[key] = map[key] or (map[vowel]..map["@"])
Line 708 ⟶ 691:
-- and no pseudo-glide, display phrase up to five times
-- with each of the different pseudo-glides and possible vowel reflexes.
if IS_VOWEL[string_substring.sub(text, 1, 1)] then
text = "_j"..code
toPhoneticRemainder(text, config, false, rightFlag)
Line 726 ⟶ 709:
return
end
if IS_VOWEL[string_substring.sub(text, -1)] then
text = code.."_j"
toPhoneticRemainder(text, config, leftFlag, false)
Line 778 ⟶ 761:
end
toPhoneticRemainder(code, config)
addUnique(outSeq, table_concattable.concat(subSeq, " ~ "))
config.outSeq = outSeq
config.initialJ = initialJ
Line 787 ⟶ 770:
-- Glides always trigger epenthesis, even neighboring other glides.
text = string_gsub2(text, "([aEei])( *h)(.)( *)(h)%3( *)([aEei])",
if not diphthongs then
function(vowelL, _, secondary, __, primaryR, ___, vowelR)
-- {ww} always causes the second glide to surface.
if secondary == "w" then
text = string_gsub(text, "([aEei])( *)hw( *)hw", "%1%2hw%1@%3Hw")
primaryR = "H"
end
end
text = string_gsub(text, "([aEei])( *)hG( *.[jGw])", "%1%2hG%1@%3")
return (
text = string_gsub(text, "(.[jGw])( *)hG( *)([aEei])", "%1%4@%2hG%3%4")
vowelL.._..secondary..
text = string_gsub(text, "([aEei])( *)h(.)( *.[jGw])", "%1%2h%3%1@%4")
maxF1(vowelL, vowelR).."@"..
text = string_gsub(text, "(.[jGw])( *)h(. *)([aEei])", "%1%4@%2h%3%4")
__..primaryR..secondary..___..vowelR
text = string_gsub(text, "(.[jGw])( *[yY].)", "%1i@%2")
)
end
)
text = string.gsub(text, "([aEei])( *)hG( *.[jGw])", "%1%2hG%1@%3")
text = string.gsub(text, "(.[jGw])( *)hG( *)([aEei])", "%1%4@%2hG%3%4")
text = string.gsub(text, "([aEei])( *)h(.)( *.[jGw])", "%1%2h%3%1@%4")
text = string.gsub(text, "(.[jGw])( *)h(. *)([aEei])", "%1%4@%2h%3%4")
text = string.gsub(text, "(.[jGw])( *[yY].)", "%1i@%2")
-- Preserve these exceptionally stable clusters.
text = string_gsubstring.gsub(text, "l([jG] *)tG", "l%1|tG")
-- Unstable consonant clusters trigger epenthesis.
-- Liquids before coronal obstruents.
text = string_gsubstring.gsub(text, "([rl].)( *)t", "%1v%2t")
-- Nasals and liquids after coronal obstruents.
text = string_gsubstring.gsub(text, "t(.)( *[nrl])", "t%1v%2")
-- Heterorganic clusters.
-- Labial consonants neighboring coronal or dorsal consonants.
text = string_gsubstring.gsub(text, "([pm].)( *[tnrlkN])", "%1v%2")
-- Coronal consonants neighboring labial or dorsal consonants.
text = string_gsubstring.gsub(text, "([tnrl].)( *[pmkN])", "%1v%2")
-- Dorsal consonants neighboring labial or coronal consonants.
text = string_gsubstring.gsub(text, "([kN].)( *[pmtnrl])", "%1v%2")
-- Organic speech involves certain consonant cluster assimilations.
Line 823 ⟶ 814:
-- Forward assimilation of rounded consonants.
-- There is no rounded coronal obstruent.
text = string_gsubstring.gsub(text, "(w *[^t])[jG]", "%1w")
-- Backward assimilation of remaining secondary articulations.
text = string_gsubstring.gsub(text, "[jGw]( *.)([jGw])", "%2%1%2")
-- Backward nasal assimilation of primary articulations.
text = string_gsubstring.gsub(text, "[pkrl](. *)([mnN])", "%2%1%2")
-- No longer need to protect exceptionally stable consonant clusters.
text = string_gsubstring.gsub(text, "|", "")
-- Give a vowel height to all epenthetic vowels that still lack one.
text = string_gsub2(text, "(.)( *..)v( *.. *)(.)",
function(vowelL, consonL, consonR, vowelR)
return vowelL..consonL..
maxF1(vowelL, vowelR, "E").."@"..
consonR..vowelR
end
)
-- Tag all vowels for next set of operations.
text = string_gsubstring.gsub(text, "([aEei])", "/%1")
-- There is no variation in the surface realizations of vowels
Line 848 ⟶ 841:
text = string_gsub2(text, "([jGw])( *)/([aEei])(@? *.)%1",
function(secondary, _, vowel, infix)
return (
secondary.._..VOWEL[F1[vowel]][F2[secondary]]..
infix..secondary
)
end
)
Line 855 ⟶ 850:
if diphthongs then
text = string_gsub2(text, "(.)([jGw])( *)/([aEei])(@?)( *)(.)([jGw])",
"(.)([jGw])( *)/([aEei])(@?)( *)(.)([jGw])",
function(
primaryL, secondaryL, _, vowel, epenth, __, primaryR, secondaryR
Line 881 ⟶ 875:
local f2
if flag then
f2 = math_maxmath.max(f2L, f2R)
else
f2 = math_minmath.min(f2L, f2R)
end
return (
Line 891 ⟶ 885:
)
end
text = string_gsubstring.gsub(text, "(_)([jGw])( *)/("..V..")(@?)( *)(.)([jGw])",
function(a, b, c, d, e, f, g, h)
return subst(a, b, c, d, e, f, g, h, leftFlag)
end
)
text = string_gsubstring.gsub(text, "(.)([jGw])( *)/("..V..")(@?)( *)(_)([jGw])",
function(a, b, c, d, e, f, g, h)
return subst(a, b, c, d, e, f, g, h, rightFlag)
Line 916 ⟶ 910:
-- Exceptionally for the single word "rej".
text = string_gsubstring.gsub(text, "^(rG *)([V7])( *tj)$",
function(prefix, vowel, suffix)
return prefix..FRONT_VOWEL[vowel]..suffix
Line 924 ⟶ 918:
-- Vowels always claim the secondary articulation
-- of a neighboring back unrounded glide.
text = string_gsubstring.gsub(text, "(hG *)/([aEei])", function(prefix, vowel)
return prefix..BACK_VOWEL[vowel]
end)
text = string_gsubstring.gsub(text, "/([aEei])(@? *hG)", function(vowel, suffix)
return BACK_VOWEL[vowel]..suffix
end)
Line 933 ⟶ 927:
-- Unless already claimed, epenthetic vowels after a glide
-- always claim the secondary articulation to the left.
text = string_gsubstring.gsub(text, "([hH])(.)( *)/([aEei])@",
function(primaryL, secondaryL, _, vowel)
return (
Line 944 ⟶ 938:
-- Unless already claimed, vowels before a glide
-- always claim the secondary articulation to the right.
text = string_gsubstring.gsub(text, "/([aEei])(@?)( *[hHyY])(.)",
function(vowel, epenth, primaryR, secondaryR)
return (
Line 955 ⟶ 949:
-- For now, unless already claimed, vowels before a rounded consonant
-- claim the secondary articulation to the right.
text = string_gsubstring.gsub(text, "/([aEei])(@? *.w)", function(vowel, suffix)
return ROUND_VOWEL[vowel]..suffix
end)
Line 961 ⟶ 955:
-- For now, unless already claimed, remaining vowels
-- claim the secondary articulation to the left.
text = string_gsubstring.gsub(text, "([jGw])( *)/([aEei])",
function(secondaryL, _, vowel)
return secondaryL.._..VOWEL[F1[vowel]][F2[secondaryL]]
end
)
-- Vowels after {yi'y} and {'yiy}
-- claim the secondary articulation to the right.
subst = function(prefix, vowel, infix, secondaryR)
return prefix..VOWEL[F1[vowel]][F2[secondaryR]]..infix..secondaryR
end
text = string_gsub(text, "([yY]. *)([aEei])(@? *.)([jGw])", subst)
-- Change certain vowels in a special environment from round to front.
text = string_gsubstring_gsub2(text, "([hyY]jhj *)([Oou])( *)(.w)( *"..V.." *h[jh])",
function(prefix, vowelLvowel, _, conson, vowelRsuffix)
return prefix..FRONT_VOWEL[vowel]..suffix
end
)
text = string.gsub(text, "(hj *)([Oou])( *)(.w)( *)("..V..")",
function(prefix, vowelL, _, conson, __, vowelR)
if conson ~= "hw" or F1[vowelL] ~= F1[vowelR] then
return prefix..FRONT_VOWEL[vowelL].._..conson..__..vowelR
end
end
)
text = string_gsubstring.gsub(text, "([hyY]jhj *)([Oou])( *.w *.w)",
function(prefix, vowel, suffix)
return prefix..FRONT_VOWEL[vowel]..suffix
end
)
text = string_gsubstring.gsub(text, "(a@? *hj *)Q( *.w *"..V..")", "%1a%2")
text = string_gsubstring.gsub(text, "(a@? *hj *)Q( *.w *.w)", "%1a%2")
-- Tag certain glide-vowel-non-glide sequences for special reflexes.
text = string_gsubstring.gsub(text, "(H[HyY][jw] *)("..V.." *[ptkmnNrl])", "%1/%2")
text = string_gsubstring.gsub(text, "^ *(h[jw] *)("..V.." *[ptkmnNrl])", "%1/%2")
text = string_gsubstring.gsub(text, "(@ *h[jw] *)("..V.." *[ptkmnNrl])", "%1/%2")
text = string_gsubstring.gsub(text,
"([EeiAV7MOou]@? *h[jw] *)([aAQ] *[ptkmnNrl])", "%1/%2")
text = string_gsubstring.gsub(text, "([iMu] *hj *)([EeV7] *[kN]G)", "%1/%2")
text = string.gsub(text,
"(hj *[aEei]@? *hw *)("..V.." *[ptkmnNrl])", "%1/%2")
-- Untag certain sequences, exempting them from special reflexes.
text = string_gsubstring.gsub(text, "(hj *)/([aEei] *[knNrl]w)", "%1%2")
-- Special reflexes.
text = string_gsubstring.gsub(text, "([jw])( *)/("..V..")( *)(.)([jGw])",
function(secondaryL, _, vowel, __, primaryR, secondaryR)
return (
secondaryL.._..
VOWEL_REFLEX["h"][primaryR]
[F2[secondaryL]][F2[secondaryR]][F1[vowel]]..
__..primaryR..secondaryR
)
end
)
-- Exceptional phrase-initial reflex.
text = string.gsub(text, "^ *([Hh]j *)([V7])( *[kN]G)",
function(prefix, vowel, suffix)
return prefix..FRONT_VOWEL[vowel]..suffix
end
)
text = string.gsub(text, "^ *([Hh]w *)M( *tG)", "%1u%2")
end
-- Temporarily cancel epenthetic {i} neighboring {yi'y}.
text = string_gsubstring.gsub(text, "i@( *yj)", "%1")
-- {yi'y} neighboring {i} may now be demoted to {y}.
text = string_gsubstring.gsub(text, "([iMu]@? *)yj", "%1hj")
text = string_gsubstring.gsub(text, "yj( *[iMu])", "hj%1")
-- {'yiy} may now be demoted everywhere.
text = string_gsubstring.gsub(text, "(i@ *)Yj", "%1hjihj")
text = string_gsubstring.gsub(text, "Yj", "hjihji@hj")
-- For the purposes of this template,
-- surface all glides pronounced in isolation.
text = string_gsubstring.gsub(text, "^ *h(.) *$", "H%1")
if not diphthongs then
-- Opportunistically front thisthese vowelvowels.
text = string_gsubstring.gsub(text, "(hj *)([A7M])( *[kN]G *[kN]?G? *"..V..")",
function(prefix, vowel, suffix)
"hj( *)A( *[kN]G *[kN]?G? *"..V..")", "hj%1a%2")
return prefix..FRONT_VOWEL[vowel]..suffix
end
)
-- Surface certain glides.
text = string_gsubstring.gsub(text, "^ *h(w *[Oou])", "H%1")
text = string_gsubstring.gsub(text, "h(w *[aEeiAV7M])", "H%1")
text = string_gsubstring.gsub(text, "^ *h(j *[AV7MQOou])", "H%1")
text = string_gsubstring.gsub(text, "([ptkmnNrl]..@ *)h(w *[Oou])", "%1H%2")
text = string_gsubstring.gsub(text, "([ptkmnNrl]..@ *)h(j *"..V..")", "%1H%2")
text = string.gsub(text, "([ptkmnNrlAV7MQOou].).@(? *)h(j *[AV7MQOou])", "%1%2H1H%32")
text = string_gsubstring.gsub(text, "([AV7MQOouaEeiAV7M])(@? *)hhw(j *)([AV7MQOouQOou])", "%1H%2")
text = string_gsub(text, "([aEeiAV7M])(@? *)hw( *)([QOou])",
function(vowelL, infix, _, vowelR)
if F1[vowelL] > F1[vowelR] then
Line 1,048 ⟶ 1,053:
end
)
text = string_gsubstring.gsub(text, "([AV7MQOou])(@? *)hj( *)([aEei])",
function(vowelL, infix, _, vowelR)
if F1[vowelL] > F1[vowelR] then
Line 1,055 ⟶ 1,060:
end
)
text = string_gsubstring.gsub(text, "([aEei])(@? *)hj( *)([AV7MQOou])",
function(vowelL, infix, _, vowelR)
if F1[vowelL] < F1[vowelR] then
Line 1,062 ⟶ 1,067:
end
)
text = string_gsubstring.gsub(text, "("..V..")( *)h([jw]) *$",
function(vowel, _, secondary)
if F2[vowel] ~= F2[secondary] then
Line 1,071 ⟶ 1,076:
-- Protect word-final epenthetic vowels after non-glides
-- from the next operation.
text = string_gsubstring.gsub(text, "([ptkmnNrl][jGw]."..V..")(@ )", "%1/%2")
-- De-epenthesize vowels if they still neighbor unsurfaced glides.
text = string_gsubstring.gsub(text, "("..V..")@( *h.)", "%1%2")
text = string_gsubstring.gsub(text, "(h. *"..V..")@", "%1")
-- Adjust F1 of currently remaining epenthetic vowels.
Line 1,082 ⟶ 1,087:
"("..V..")( *.[jGw])(.)@( *.[jGw] *)("..V..")",
function(vowelL, infixL, vowel, infixR, vowelR)
return (
vowelL..infixL..
VOWEL[F1[maxF1(vowelL, vowelR, "E")]][F2[vowel]].."/@"..
infixR..vowelR
)
end
)
text = string_gsubstring.gsub(text, "/", "")
end
-- Delete all remaining unsurfaced glides.
text = string_gsubstring.gsub(text, "h.", "")
-- Surface realization for {yi'y}.
text = string_gsubstring.gsub(text, "yj", "i^")
if not diphthongs then
Line 1,105 ⟶ 1,112:
if vowelL ~= "" then
if vowelR ~= "" then
returnif vowelL (== vowelR and
F2[vowelL..epenthL.._..] == F2_FRONT
then
maxF1(vowelL, vowelR).."^"..__..vowelR
return vowelL.._..__..vowelR
)
else
return (
vowelL..epenthL.._..
maxF1(vowelL, vowelR, "E").."^"..__..vowelR
)
end
else
return vowelL.._..epenthL..maxF1(vowelL, "E").."^"..__
end
else
if vowelR ~= "" then
return _..maxF1(vowelR, "E").."^"..__..vowelR
else
return _.."i^"..__
Line 1,122 ⟶ 1,135:
)
-- TurnFlatten this surfacedepenthetic glidevowel intoand ansurfaced epenthetic vowelglide.
text = string_gsubstring_gsub2(text, "([ptkmnNrlaAQ] *"..C..")E@( *[aEei])E%^( *"..V..")a", "%1@1a%2%3a")
-- Collapse this epenthetic vowel and surfaced glide into a semi-vowel.
text = string.gsub(text, "([aEei])@( *)%1%^", "%2%1^")
end
if MERGED_VOWELS then
text = string_gsubstring.gsub(text, "[EO]", function(vowel)
return VOWEL[F1[vowel] + 1][F2[vowel]]
end)
Line 1,152 ⟶ 1,168:
index = index2
until index == 1
text = table_concattable.concat(chars, "")
end
-- Tweak remaining consonants, using offsets as a guide.
text = string_gsubstring.gsub(text, "()(.)([jGw])( *)([ptkmnNrl]?)([jGw]?)()",
function(
offsetL, primaryL, secondaryL, _, primaryR, secondaryR, offsetR
Line 1,255 ⟶ 1,271:
-- Elegantly connect long and epenthetic vowels across word gaps.
text = string_gsubstring.gsub(text, "(["..V_..":]): +", "%1 : ")
text = string_gsubstring.gsub(text, "("..V..") +%1([^%^])", "%1 :%2")
text = string_gsubstring.gsub(text, "("..V..") +%1$", "%1 :")
text = string_gsubstring.gsub(text, "("..V..")@ +%1", " %1 :")
text = string_gsubstring.gsub(text, "("..V.."@) +", " %1 ")
if W_OFF_GLIDES then
-- Add [(w)] off-glides after certain consonants.
subst = function(primary, _, epenth)
if epenth == "" then
Line 1,269 ⟶ 1,285:
end
if false and PHONETIC_DETAILS then
text = string_gsubstring.gsub(text, "([pbm])(G *[aEei])(@?)",
function(primary, _, epenth)
if epenth == "" then
Line 1,277 ⟶ 1,293:
)
else
text = string_gsubstring.gsub(text, "([pbm])G( *[aEei])(@?)", subst)
end
text = string_gsubstring.gsub(text, "([kgNkgnNrl])w( *[aEeiAV7M])(@?)", subst)
-- Remove [w] off-glides after certain consonants
end
-- when they occur after rounded vowels.
text = string.gsub(text, "([QOou] *[nrl]? *[nrl])Hw", "%1w")
if SPECIAL_EPENTHESIS then
text = string_gsubstring.gsub(text, "(.[QOou] *[kgN]? *N)@Hw("..V.." *M)", "%1^1w%2")
end
end
if SPECIAL_EPENTHESISPARENTHETICAL_EPENTHESIS then
if not diphthongs then
text = string_gsub(text, "(.)@", "(%1)")
text = string_gsubstring.gsub(text, "%)(=?.)%@("..V..")", "%1^%2")
end
text = string.gsub(text, "(.)@", "(%1)")
text = string.gsub(text, "%)(=?)%(", "%1")
if not diphthongs and W_OFF_GLIDES then
if false and PHONETIC_DETAILS then
text = string.gsub(text, "([pbm]G%()([aEei])", "%1BG%2")
else
text = string.gsub(text, "([pbm]G%()([aEei])", "%1Hw%2")
end
text = string.gsub(text, "([kgnNrl]w%()([aEeiAV7M])", "%1Hw%2")
text = string.gsub(text, "([QOou] *[nrl]w%()Hw", "%1")
text = string.gsub(text, "([QOou] *Nw%()HwM", "%1M")
end
end
-- Convert remaining word gaps to liaison.
text = string_gsubfastTrim(text, "^ *", "")
text = string_gsubstring.gsub(text, " *$+", false and "_" or "")
text = string_gsub(text, " +", false and "_" or "")
text = string_gsubstring.gsub(text, ".[jGw@%^]?", PHONETIC_IPA)
addUnique(outSeq, text)
Line 1,314 ⟶ 1,342:
-- For other values, list both possible dialect reflexes where applicable.
local dialect = args and args.dialect and
mw_ustring_lowermw.ustring.lower(mw_text_trimmw.text.trim(args.dialect)) or ""
if dialect == "rālik" then
dialect = "ralik"
Line 1,327 ⟶ 1,355:
-- Real-world pronunciation said to vary by sociological factors,
-- but all realizations may occur in free variation.
local modeJ = splitChars(args and args.J and string_lowerstring.lower(args.J) or "tst")
local initialJ = PHONETIC_ARG_J[modeJ[1] or ""] or "t"
local medialJ = PHONETIC_ARG_J[modeJ[2] or ""] or "s"
Line 1,356 ⟶ 1,384:
for _, str in pairs(inSeq) do
str = string_gsubstring.gsub(str, S, " ")
str = string_gsubstring.gsub(str, "^ *", "")
str = string_gsubstring.gsub(str, " *$", "")
local isRalik = dialect == "ralik"
if isRalik or dialect == "ratak" then
Line 1,387 ⟶ 1,415:
 
function export.bender(frame)
return table_concattable.concat(toBender(parse(frame.args[1], frame.args)), ", ")
end
 
Line 1,395 ⟶ 1,423:
 
function export.parse(frame)
return table_concattable.concat(parse(frame.args[1]), ", ")
end
 
function export.phonemic(frame)
return table_concattable.concat(toPhonemic(parse(frame.args[1])), ", ")
end
 
function export.phonetic(frame)
return table_concattable.concat(toPhonetic(parse(frame.args[1]), frame.args), ", ")
end