Module:pollasena-roots

From Linguifex
Revision as of 22:11, 2 May 2023 by Sware (talk | contribs)
Jump to navigation Jump to search

This module implemented inherited templates for Pollasena languages: {{qsc-inh}}, {{gwax-wasc}}. It was generalized to also include other non-Pollasena languages: {{guim-inh}}.
local gsub = mw.ustring.gsub
local PAGENAME = gsub(mw.title.getCurrentTitle().text, "%s", " ")
local match = mw.ustring.match
local gmatch = mw.ustring.gmatch

local lang = require("Module:languages").getByCode("socl")

local export = {}

local function link(term)
	return "[[Contionary:" .. term .. "|" .. term .. "]]"	
end

local function ncategories(categories)
	local out_categories = {}
	for key, cat in ipairs(categories) do
		out_categories[key] = "[[Category:" .. cat .. "]]"
	end

	return table.concat(out_categories, "")
end

function export.getLink(frame)
	
	local categories = {}
	-- WIP
	
	return ncategories(categories)
end


return export