Module:MyTranslationModule/sandbox

local p = {}

-- Optional: RTL language codes for future Langx handling
local rtl_langs = {
    ar = true, he = true, fa = true, ur = true,
    ps = true, prs = true, syr = true, ckb = true,
}

local function is_rtl(code)
    if not code then return false end
    code = mw.ustring.lower(mw.text.trim(code))
    return rtl_langs[code] or false
end

-- Helper: Build a rendered Lang template cell using frame:preprocess()
local function lang_cell(frame, code, text)
    code = code or ""
    text = text or ""
    if code ~= "" then
        return "| " .. frame:preprocess("{{Lang|" .. code .. "|" .. text .. "|italic=unset}}")
    else
        return "| " .. text
    end
end

function p.render(frame)
    local args = frame:getParent().args

    local code1 = args["lang1code"]
    local code2 = args["lang2code"]

    if not code1 or not code2 then
        return "Error: Please provide both lang1code and lang2code."
    end

    -- Fetch display names using {{ISO 639 name|code}}
    local lang1 = frame:expandTemplate{ title = "ISO 639 name", args = { code1 } }
    local lang2 = frame:expandTemplate{ title = "ISO 639 name", args = { code2 } }

    local output = {}
    table.insert(output, '{| class="wikitable sortable"')
    table.insert(output, string.format("! %s !! %s", lang1, lang2))

    -- Named parameter loop: text1/trans1, text2/trans2, etc.
    local i = 1
    while true do
        local text = args["text" .. i]
        local trans = args["trans" .. i]
        if not text and not trans then break end
        table.insert(output, "|-")
        table.insert(output, lang_cell(frame, code1, text))
        table.insert(output, lang_cell(frame, code2, trans))
        i = i + 1
    end

    -- Positional fallback: |text|trans|text|trans|...
    local index = 1
    while true do
        local text = args[index]
        local trans = args[index + 1]
        if not text and not trans then break end
        table.insert(output, "|-")
        table.insert(output, lang_cell(frame, code1, text))
        table.insert(output, lang_cell(frame, code2, trans))
        index = index + 2
    end

    table.insert(output, "|}")
    return table.concat(output, "\n")
end

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.