Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
m (Reverted edits by Xbony2 (talk) to last revision by TheSatanicSanta)
Tag: Rollback
mNo edit summary
Line 1: Line 1:
local langNames = mw.loadData( [[Module:Language/Names]] )
+
local langNames = require( [[Module:Language/Names]] )
 
local code = function( title )
 
local code = function( title )
local subPage = ( title or mw.title.getCurrentTitle() ).subpageText:lower()
+
local titleObj = title or mw.title.getCurrentTitle()
  +
if not titleObj.isSubpage then
  +
return nil
  +
end
  +
local subPage = titleObj.subpageText:lower()
 
if langNames[subPage] then
 
if langNames[subPage] then
 
return subPage
 
return subPage

Revision as of 21:12, 28 November 2020

Documentation for this module may be created at Module:Language/doc

local langNames = require( [[Module:Language/Names]] )
local code = function( 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 pageSuffix = function()
	local langCode = code()
	if langCode then
		return '/' .. langCode
	end
	return ''
end

local p = {}

p.link = function( f )
	local args = f or {}
	if f == mw.getCurrentFrame() then
		args = f:getParent().args
	end
	
	-- 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

p.name = function( f )
	local args = f
	if f == mw.getCurrentFrame() then
		args = f:getParent().args
	end
	
	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
	if args.en then
		return langName[1]
	end
	-- Get native name
	return langName[2]
end

-- This is not a communist function
p.modlink = function(f)
	local args = f or {}
	if f == mw.getCurrentFrame() then
		args = f:getParent().args
	end
	
	local name = require([[Module:Mods]]).getName(args[2])
	
	if not name then
		return 'No mod found'
	end
	
	args[2] = args[1]
	args[1] = args[1] .. ' (' .. name .. ')'
	
	return p.link(args)
end

return p