Difference between revisions of "Module:Language"
m |
m |
||
Line 1: | Line 1: | ||
local langNames = require( [[Module:Language/Names]] ) |
local langNames = require( [[Module:Language/Names]] ) |
||
− | local |
+ | local processArgs = require( [[Module:ProcessArgs]] ) |
+ | |||
+ | local function code( title ) |
||
local titleObj = title or mw.title.getCurrentTitle() |
local titleObj = title or mw.title.getCurrentTitle() |
||
if not titleObj.isSubpage then |
if not titleObj.isSubpage then |
||
Line 10: | Line 12: | ||
end |
end |
||
end |
end |
||
− | local pageSuffix |
+ | local function pageSuffix() |
local langCode = code() |
local langCode = code() |
||
if langCode then |
if langCode then |
||
Line 20: | Line 22: | ||
local p = {} |
local p = {} |
||
+ | -- See {{L}} |
||
p.link = function( f ) |
p.link = function( f ) |
||
− | local args = |
+ | local args = processArgs.normDefault( f ) |
− | if f == mw.getCurrentFrame() then |
||
− | args = f:getParent().args |
||
⚫ | |||
-- Get language suffix for links |
-- Get language suffix for links |
||
Line 32: | Line 32: | ||
local page = args[1] .. pageSuffix() |
local page = args[1] .. pageSuffix() |
||
+ | |||
-- Get page name with suffix |
-- Get page name with suffix |
||
if args.dest then |
if args.dest then |
||
return page |
return page |
||
end |
end |
||
+ | |||
-- Get page link with suffix and specified text |
-- Get page link with suffix and specified text |
||
return '[[' .. page .. '|' .. ( args.o or args[2] or args[1] ) .. ']]' |
return '[[' .. page .. '|' .. ( args.o or args[2] or args[1] ) .. ']]' |
||
end |
end |
||
+ | -- See {{Language}} |
||
p.name = function( f ) |
p.name = function( f ) |
||
− | local args = f |
+ | local args = processArgs.normDefault( f ) |
− | if f == mw.getCurrentFrame() then |
||
− | args = f:getParent().args |
||
⚫ | |||
− | local langCode = code( |
+ | local langCode = code(args[1] and mw.title.new(args[1])) or 'en' |
-- Get language code for specified title or current page |
-- Get language code for specified title or current page |
||
Line 54: | Line 54: | ||
local langName = langNames[langCode] |
local langName = langNames[langCode] |
||
+ | |||
⚫ | |||
+ | -- Get language name in English if the 2nd arg or 'en' arg is set |
||
⚫ | |||
+ | if (args[2] and args[2] ~= '') or (args.en and args.en ~= '') then |
||
return langName[1] |
return langName[1] |
||
end |
end |
||
+ | |||
− | -- Get native name |
||
⚫ | |||
return langName[2] |
return langName[2] |
||
end |
end |
||
+ | -- See {{ML}} |
||
− | -- This is not a communist function |
||
− | p.modlink = function(f) |
+ | p.modlink = function( f ) |
− | local args = |
+ | local args = processArgs.normDefault( f ) |
− | if f == mw.getCurrentFrame() then |
||
− | args = f:getParent().args |
||
− | end |
||
− | local |
+ | local modname = require([[Module:Mods]]).getData(args[2]).name |
− | if not |
+ | if not modname then |
return 'No mod found' |
return 'No mod found' |
||
end |
end |
||
+ | local disambiguated = string.format("%s (%s)", args[1], modname) |
||
− | args[2] = args[1] |
||
+ | |||
− | args[1] = args[1] .. ' (' .. name .. ')' |
||
+ | return p.link{disambiguated, args.title or args[1]} |
||
⚫ | |||
+ | |||
+ | p.code = function( f ) |
||
+ | local args = processArgs.normDefault( f ) |
||
+ | |||
+ | -- 'de' and 'Main Page/de' will be correctly processed regardless of the arg name |
||
+ | -- These aliases are mainly to keep a standard |
||
+ | local selected = args.code or args.title |
||
+ | |||
+ | local code = code( selected and mw.title.new(selected) or mw.title.getCurrentTitle() ) |
||
+ | |||
⚫ | |||
+ | return args.default or '' |
||
⚫ | |||
− | return |
+ | return code |
end |
end |
||
Revision as of 04:19, 29 November 2020
Documentation for this module may be created at Module:Language/doc
local langNames = require( [[Module:Language/Names]] )
local processArgs = require( [[Module:ProcessArgs]] )
local function code( title )
local titleObj = title or mw.title.getCurrentTitle()
if not titleObj.isSubpage then
return nil
end
local subPage = titleObj.subpageText:lower()
if langNames[subPage] then
return subPage
end
end
local function pageSuffix()
local langCode = code()
if langCode then
return '/' .. langCode
end
return ''
end
local p = {}
-- See {{L}}
p.link = function( f )
local args = processArgs.normDefault( f )
-- Get language suffix for links
if not args[1] or args[1]:lower() == 't' then
return pageSuffix()
end
local page = args[1] .. pageSuffix()
-- Get page name with suffix
if args.dest then
return page
end
-- Get page link with suffix and specified text
return '[[' .. page .. '|' .. ( args.o or args[2] or args[1] ) .. ']]'
end
-- See {{Language}}
p.name = function( f )
local args = processArgs.normDefault( f )
local langCode = code(args[1] and mw.title.new(args[1])) or 'en'
-- Get language code for specified title or current page
if args.code then
return langCode
end
local langName = langNames[langCode]
-- Get language name in English if the 2nd arg or 'en' arg is set
if (args[2] and args[2] ~= '') or (args.en and args.en ~= '') then
return langName[1]
end
-- Get language name in that language (autonym)
return langName[2]
end
-- See {{ML}}
p.modlink = function( f )
local args = processArgs.normDefault( f )
local modname = require([[Module:Mods]]).getData(args[2]).name
if not modname then
return 'No mod found'
end
local disambiguated = string.format("%s (%s)", args[1], modname)
return p.link{disambiguated, args.title or args[1]}
end
p.code = function( f )
local args = processArgs.normDefault( f )
-- 'de' and 'Main Page/de' will be correctly processed regardless of the arg name
-- These aliases are mainly to keep a standard
local selected = args.code or args.title
local code = code( selected and mw.title.new(selected) or mw.title.getCurrentTitle() )
if not code then
return args.default or ''
end
return code
end
return p