Module:Language/name/data: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Lfdder
No edit summary
meta>Lfdder
No edit summary
Line 2: Line 2:
     local coalesced = {}
     local coalesced = {}
     for r, t in ipairs(arg) do
     for r, t in ipairs(arg) do
         for k, v in ipairs(t) do
         for k, v in pairs(t) do
             coalesced[k:lower()] = v
             coalesced[k:lower()] = v
         end
         end

Revision as of 12:48, 15 April 2014

This pulls data from data modules and bunches them together. Language names are gathered in this order:

  1. Module:Language/data/ISO 639-3 – as defined in ISO 639-3
  2. Module:Language/data/iana languages – as defined by the IETF-sanctioned IANA registry; names almost always the same as ISO, but does not include 3-letter codes for languages with 2-letter codes, hence the fallback
  3. Module:Language/data/wp languages – specific to Wikipedia; languages for which we've decided another name is better

In other words, a name set in wp languages will take precedence over one set in iana languages and that too would take precedence over one from iso 639-3. wp languages can be discarded by passing dataset="iana" to the parent module.

See also


local function __coalesce(...)
    local coalesced = {}
    for r, t in ipairs(arg) do
        for k, v in pairs(t) do
            coalesced[k:lower()] = v
        end
    end
 
    return coalesced
end
 
return {
  lang   = __coalesce(require("Module:Language/data/iso 639-3"),
                      require("Module:Language/data/iana languages")),
  script = __coalesce(require("Module:Language/data/iana scripts")),
  region = __coalesce(require("Module:Language/data/iana regions"))
}