Gujarati IPA pronunciation module. See {{gu-IPA}}
.
Module:gu-IPA/sandbox/testcases:
16 of 23 tests failed. (refresh)
Text | Expected | Actual | Comments | |
---|---|---|---|---|
વખત (vakhat) | ˈʋə.kʰət̪ | ˈʋə.kʰət̪ | ||
દિવસ (divas) | ˈd̪ɪ.ʋəs | ˈd̪ɪ.ʋəs | ||
હદ (had) | ˈɦəd̪ | ˈɦəd̪ | ||
રહેવું (rahevũ) | ˈre̤.ʋũ | ˈɾə.ɦeː.ʋũ | ||
તડકો (taḍko) | ˈt̪əɖ.ko | ˈt̪əɖ.ko | ||
ભાષા (bhāṣā) | ˈbʱɑ.ʃɑ | ˈbʱɑ.ʃɑ | ||
છોકરું (chokrũ) | ˈt͡ʃʰok.rũ | ˈt͡ʃʰok.ɾũ | ||
ઘોડું (ghoḍũ) | ˈɡʱo.ɖũ | ˈɡʱo.ɖũ | ||
દૃષ્ટિ (dŕṣṭi) | ˈd̪rəʂʈi | ˈd̪ɾʊʂʈɪ | ||
દૃષ્ટિ (dŕṣṭi) | ˈd̪rʊʂʈi | ˈd̪ɾʊʂʈɪ | ||
ગુજરાતી (gujrātī) | ˈgʊ.d͡ʒ(ə).ˌɾɑ.t̪i | ˈɡud͡ʒ.ɾɑ.t̪i | ||
પ્રાણી (prāṇī) | ˈpɾɑ.ɳi | ˈpɾɑ.ɳi | ||
સાક્ષાત (sākṣāt) | ˈsɑ.kʃɑt̪ | ˈsɑk.ʃɑt̪ | ||
જમવાનું (jamvānũ) | ˈd͡ʒəm.ˌʋɑ.nũ | ˈd͡ʒəm.ʋɑ.nũ | ||
વિધર્મ (vidharma) | ʋɪ.d̪ʱəɾ.mə | ˈʋɪ.d̪ʱəɾ.mə | ||
અંગરખો (aṅgarkho) | ˈəŋ.gəɾ.kʱo | ˈəŋ.ɡəɾ.kʰo | ||
આંતરરાષ્ટ્રીય (āntarrāṣṭrīya) | ˈɑn̪.t̪əɾ.ɾɑʂ.ʈɾi.jə | ˈɑn.t̪əɾ.ɾɑʂ.ʈɾi.jə | ||
આંકડાશાસ્ત્ર (ā̃kaḍāśāstra) | ˈɑ̃.k(ə).ɖɑ.ʃɑs.t̪ɾə | ˈɑ̃.kə.ɖɑ.ʃɑs.t̪ɾə | ||
અહીંતહીં (ahī̃thī̃) | ˈə̤ĩ.ˌt̪ə̤ĩ | ˈə.ɦĩ.t̪ʰĩ | ||
ઐતિહાસિક (aitihāsik) | əɪ̭.t̪ɪ.ɦɑ.sɪk | ˈəɪ.t̪ɪ.ɦɑ.sɪk | ||
ઇસ્પિતાલ (ispitāl) | ˈɪs.pɪ.ˌt̪ɑl | ˈɪs.pɪ.t̪ɑl | ||
ઉષ્ણાગ્ર (uṣṇāgra) | ˈʊʃ.ɳɑ.gɾə | ˈuʃ.ɳɑɡ.ɾə | ||
ઓળખકર્તા (oḷkhakartā) | ˈo.ɭəkʱ.ˌkəɾ.t̪ɑ | ˈo.ɭkʰə.kəɾ.t̪ɑ |
local export = {}
local lang = require("Module:languages").getByCode("gu")
local sc = require("Module:scripts").getByCode("Gujr")
local m_IPA = require("Module:IPA")
local gsub = mw.ustring.gsub
local gmatch = mw.ustring.gmatch
local find = mw.ustring.find
local correspondences = {
= "ŋ", = "ɡ",
= "t͡ʃ", = "d͡ʒ", = "ɲ",
= "ʈ", = "ɖ", = "ɳ",
= "t̪", = "d̪",
= "j", = "ɾ", = "ʋ", = "l̪",
= "ʃ", = "ʂ", = "ɦ",
= "ɭ", = "f", = "ɣ", = "ð", = "β",
= "ɽ",
= "ə", = "ɑ", = "ɪ",
= "i", = "o", = "eː", = "ɾʊ",
= "u", = "u", = "ɔ", = "ɔ", = "ɛ", = "æ",
= "ə̤", = "a̤", = "i̤", = "ṳ", = "ɛ̤", = "ɔ̤",
= "om", = "ʰ",
= "‿ˈ", -- get rid of spaces
}
local surati= {
= "ɦ",
}
local vowels = "aāiīuūoɔɛeæãā̃ẽĩī̃õũū̃ː"
local weak_h = "()h"
local aspirate = "()"
local syllabify_pattern = "()(+)()"
local function find_consonants(text)
local current = ""
local cons = {}
for cc in mw.ustring.gcodepoint(text .. " ") do
local ch = mw.ustring.char(cc)
if find(current .. ch, "^$") or find(current .. ch, "^h$") then
current = current .. ch
else
table.insert(cons, current)
current = ch
end
end
return cons
end
local function syllabify(text)
for count = 1, 2 do
text = gsub(text, syllabify_pattern, function(a, b, c)
b_set = find_consonants(b)
table.insert(b_set, #b_set > 1 and 2 or 1, ".")
return a .. table.concat(b_set) .. c end)
end
return text
end
local identical = "knlsfzθ"
for character in gmatch(identical, ".") do
correspondences = character
end
local function transliterate(text)
return (lang:transliterate(text))
end
function export.link(term)
return require("Module:links").full_link{ term = term, lang = lang, sc = sc }
end
function export.toIPA(text)
local result = {}
local translit = text
if lang:findBestScript(text):isTransliterated() then
translit = transliterate(text)
end
if not translit then
error('The term "' .. text .. '" could not be transliterated.')
end
local translit = gsub(translit, "͠", "̃")
local translit = gsub(translit, "%-", ".")
local translit = gsub(translit, "ṣ()", "ś%1")
local translit = syllabify(translit)
local translit = gsub(translit, 'jñ', 'gy')
local translit = gsub(translit, aspirate .. "h", '%1ʰ')
local translit = gsub(translit, weak_h, '%1ʱ')
local translit = gsub(translit, "%.ː", "ː.")
for character in gmatch(translit, ".") do
table.insert(result, correspondences or character)
end
result = table.concat(result)
local result = gsub(result, "ː̃", "̃ː")
result = gsub(result, "%.‿", "‿")
return "ˈ" .. result
end
function export.make(frame)
local args = frame:getParent().args
local pagetitle = mw.title.getCurrentTitle().text
local p, results = {}, {}
if args then
for index, item in ipairs(args) do
table.insert(p, (item ~= "") and item or nil)
end
else
p = { pagetitle }
end
for _, Gujarati in ipairs(p) do
table.insert(results, export.toIPA(Gujarati))
end
return m_IPA.format_IPA_full { lang = lang, items = {{ pron = "/" .. table.concat(results, "/, /") .. "/" }}, }
end
return export