Content deleted Content added
No edit summary |
No edit summary |
||
Line 92:
}
-- known languages (except for English)
local languages = {
Line 121:
}
local ENGLISH_TAG = "en"
function orderedKeys(dict)
local keys = {}
local result = {}
for k, v in pairs(
end
table.sort(
for i, k in ipairs(
table.insert(result, k)
end
return result
end
function NZ(value, valueifNil)
if value == nil then return valueifNil end
return value
end
-- the module
local p = { }
function p.getLanguageName(languageTag)
return languages(languageTag)
end
-- Returns the translation of specific keyword (English)
Line 142 ⟶ 154:
function p.translate(key, language)
-- Bypass English.
if language ==
return translations[key][language]
end
-- Generates a full glossary
function p.
local colhdr = mw.html.create("table")
:attr("class", "wikitable")
:css("float", "left")
:css("margin", "0")
:css("margin-right", "-1px")
local body = mw.html.create("table")▼
local body =
:css("overflow-x", "auto")
:css("white-space", "nowrap")
:tag("
:attr("class", "wikitable")
local langs = orderedLanguages()▼
:css("margin", "0")
:tag("tr")
colhdr:tag("tr"):tag("th"):wikitext(ENGLISH)
for i, langTag in ipairs(langs) do
body:tag("th"):wikitext(languages[langTag])
end
body = body:done();
for i, key in ipairs(transKeys) do
colhdr:tag("tr"):tag("th"):wikitext(key)
body = body:tag("tr")
local trans = translations[key]
for i, langTag in ipairs(langs) do
t = trans[langTag]
Line 173 ⟶ 191:
--print(key)
end
body = body:allDone()
local div = mw.html.create("div")
:node(colhdr)
Line 179 ⟶ 198:
end
-- Generates a table of translations of a specific English term.
-- Returns nil if no such term exists in the dictionary.
function p.translationTable(term)
local trans = translations[term]
if trans == nil then return nil end
▲ local body = mw.html.create("table")
:attr("class", "wikitable")
local transKeys = orderedKeys(trans)
ody:tag("tr")
:tag("th")
:wikitext(ENGLISH)
:done()
:tag("th")
:wikitext(term)
:done()
for i, key in ipairs(transKeys) do
body:tag("tr")
:tag("th")
:wikitext(NZ(languages[key], key))
:done()
:tag("td")
:wikitext(NZ(trans[key], "-"))
:done()
end
end
--print(p.glossary())
|