אונטערשייד צווישן ווערסיעס פון "יחידה:לינקשפראך"
קפיצה לניווט
קפיצה לחיפוש
(צופאסונג) |
(אראפגענומען פרעפיקס "ב") |
||
שורה 13: | שורה 13: | ||
end | end | ||
end | end | ||
רעוויזיע פון 04:33, 26 יולי 2023
מען קען שאפן דאקומענטאציע פאר דעם מאדול ביי יחידה:לינקשפראך/דאק
local Arguments = require( "Module:Arguments" )
local function getLocalLangNameWithPrefix(langCodeOrLocalName)
local localName = langCodeOrLocalName
if not mw.ustring.match(langCodeOrLocalName, '[א-ת]+') then
-- tanslate
if langCodeOrLocalName == 'iw' then -- legacy code for modern hebrew
localName = 'עברית'
else
localName = mw.language.fetchLanguageName(langCodeOrLocalName, 'he')
end
end
end
local function render(frame)
local args = Arguments.getArgs(frame, { ['trim'] = true, ['removeBlanks'] = true })
local langs = {}
for _, v in pairs(args) do
table.insert(langs, getLocalLangNameWithPrefix(v))
end
if #langs == 0 then
table.insert(langs, '{{{שפראך|{{{שפה}}}}}}')
end
local templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'יחידה:לינקשפראך/styles.css' }
}
local res = '<span dir="rtl" class="languageicon">('.. mw.text.listToText( langs, ', ', ' ו' ) .. ')</span>' .. templatestyles
return res
end
return {
['לינקשפראך']=render
}