Jump to content

Module:Country2nationality/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ahecht (talk | contribs) at 20:48, 4 February 2025 (Create sandbox). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {}
local data = {
	catalonia = "Catalan",
	['guinea-bissau'] = "Bissau-Guinean",
	kosovo = "Kosovan",
	['timor-leste'] = "East Timorese",
    ['west germany'] = "West German"
}

function p.c2n(country)
	country = mw.ustring.gsub( mw.text.trim(country), "^St. ", "Saint " )
	local iso = require("Module:ISO 3166").code({country})
	if #iso == 2 or #iso == 6 then
		return require("Module:Iso2nationality").i2n(iso)
	elseif data[mw.ustring.lower(country)] then
		return data[mw.ustring.lower(country)]
	end
	return country..iso
end

p[''] = function (frame) return p.c2n(frame.args[1]) end

return p