Module:Language/name/data: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Lfdder m Lfdder moved page Module:ISO 639 name/data to Module:Language/name/data without leaving a redirect |
meta>Verdy p documenting |
||
Line 2: | Line 2: | ||
local function __coalesce(...) | local function __coalesce(...) | ||
local coalesced = {} | local coalesced = {} | ||
for | for _, langslist in ipairs(arg) do | ||
for | for langcode, langnames in pairs(langslist) do | ||
for | for _, langname in pairs(langnames) do | ||
if not coalesced[ | if not coalesced[langcode] then | ||
coalesced[ | coalesced[langcode] = {} | ||
end | end | ||
table.insert(coalesced[ | table.insert(coalesced[langcode], langname) | ||
end | end | ||
end | end | ||
Line 20: | Line 20: | ||
local preprocessed = {} | local preprocessed = {} | ||
if first_of_array_in_array then | if first_of_array_in_array then | ||
-- keep only the 1st language name for each code, excluding synonyms | |||
for k, v in pairs(t) do | for k, v in pairs(t) do | ||
preprocessed[k:lower()] = {v[1]} | preprocessed[k:lower()] = {v[1]} | ||
Line 32: | Line 33: | ||
end | end | ||
-- all valid primary language subtags for BCP47 from IANA (most of them from ISO 639-1, -2 and -3 with some exclusions) | |||
local __iana_languages = __preprocess(require("Module:Language/data/iana languages")) | |||
-- ISO 639-3 contains additional 3-letter codes not inserted in the IANA database as they are aliased to 2-letter codes, | |||
-- but excludes some deleted codes still valid in BCP47 (some of them are aliased) | |||
local __iso_639_3 = __preprocess(require("Module:Language/data/iso 639-3")) | local __iso_639_3 = __preprocess(require("Module:Language/data/iso 639-3")) | ||
-- Wikimedia wikis uses some non-standard codes and a subset of IANA codes, plus composite codes | |||
local __wp_languages = __preprocess(require("Module:Language/data/wp languages"), true) | local __wp_languages = __preprocess(require("Module:Language/data/wp languages"), true) | ||
-- all valid script subtags for BCP47 from IANA (excluding special ISO 15924 codes) | |||
local iana_scripts = __preprocess(require("Module:Language/data/iana scripts")) | local iana_scripts = __preprocess(require("Module:Language/data/iana scripts")) | ||
-- all valid region subtags for BCP47 from IANA (derived from ISO 3166-1 excluding special codes, and from 3-digit UN M.49 codes for groups of countries) | |||
local iana_regions = __preprocess(require("Module:Language/data/iana regions")) | local iana_regions = __preprocess(require("Module:Language/data/iana regions")) | ||
Revision as of 05:43, 6 May 2014
This module depends on the following other modules: |
This Lua module is used on many pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
This pulls data from data modules and bunches them together. Language names are gathered in this order:
- Module:Language/data/ISO 639-3 – as defined in ISO 639-3
- 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
- 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
-- put tables and their tables together
local function __coalesce(...)
local coalesced = {}
for _, langslist in ipairs(arg) do
for langcode, langnames in pairs(langslist) do
for _, langname in pairs(langnames) do
if not coalesced[langcode] then
coalesced[langcode] = {}
end
table.insert(coalesced[langcode], langname)
end
end
end
return coalesced
end
-- make the keys lowercase
local function __preprocess(t, first_of_array_in_array)
local preprocessed = {}
if first_of_array_in_array then
-- keep only the 1st language name for each code, excluding synonyms
for k, v in pairs(t) do
preprocessed[k:lower()] = {v[1]}
end
else
for k, v in pairs(t) do
preprocessed[k:lower()] = v
end
end
return preprocessed
end
-- all valid primary language subtags for BCP47 from IANA (most of them from ISO 639-1, -2 and -3 with some exclusions)
local __iana_languages = __preprocess(require("Module:Language/data/iana languages"))
-- ISO 639-3 contains additional 3-letter codes not inserted in the IANA database as they are aliased to 2-letter codes,
-- but excludes some deleted codes still valid in BCP47 (some of them are aliased)
local __iso_639_3 = __preprocess(require("Module:Language/data/iso 639-3"))
-- Wikimedia wikis uses some non-standard codes and a subset of IANA codes, plus composite codes
local __wp_languages = __preprocess(require("Module:Language/data/wp languages"), true)
-- all valid script subtags for BCP47 from IANA (excluding special ISO 15924 codes)
local iana_scripts = __preprocess(require("Module:Language/data/iana scripts"))
-- all valid region subtags for BCP47 from IANA (derived from ISO 3166-1 excluding special codes, and from 3-digit UN M.49 codes for groups of countries)
local iana_regions = __preprocess(require("Module:Language/data/iana regions"))
return {
lang = __coalesce(__wp_languages, __iana_languages, __iso_639_3),
lang_iana = __iana_languages,
script = iana_scripts,
region = iana_regions
}