Module:Country2nationality: Revision history


For any version listed below, click on its date to view it. For more help, see Help:Page history and Help:Edit summary. (cur) = difference from current version, (prev) = difference from preceding version,  m = minor edit, → = section edit, ← = automatic edit summary

22 October 2024

  • curprev 14:1814:18, 22 October 2024Muskit Gergous talk contribs 563 bytes +563 Created page with "local p = {} local data = { catalonia = "Catalan", ['guinea-bissau'] = "Bissau-Guinean", kosovo = "Kosovan", ['timor-leste'] = "East Timorese" } 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..."