Module:Country2nationality/sandbox
Appearance
![]() | This is the module sandbox page for Module:Country2nationality (diff). |
Implements {{Country2nationality}}.
![]() | This module depends on the following other modules: |
Usage
{{#invoke:Country2nationality||country_name}}
Customizing for defunct countries
To use this module for a defunct country such as West Germany or British India, add a custom entry to the data
section, copying the existing format. Capitalize the country name and remove all punctuation. Please ensure that an article exists for the country.
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