Module:Lang/data: Difference between revisions

m
1 revision imported
m (1 revision imported)
 
(4 intermediate revisions by 3 users not shown)
Line 1:
local lang_obj = mw.language.getContentLanguage();
local this_wiki_lang_tag = lang_obj.code; -- get this wiki's language tag
 
 
--[[--------------------------< L A N G _ N A M E _ T A B L E >------------------------------------------------
 
Line 13 ⟶ 17:
have multiple associated names; Module:lang is only concerned with the first name so key_to_lower() only fetches
the first name.
 
TODO: instead of returning:
["key"] = {"name"}
where each table has only one name, return
["key"] = "name"
requires changes in Module:Lang.
 
]]
Line 27 ⟶ 25:
if 'var_sup' == src_type then
for k, v in pairs (source) do
out[k:lower()] = v; -- for variant, and suppressed everything is needed
end
 
elseif 'lang' == src_type and source.active then -- for ~/iana_languages (active)
for k, v in pairs (source.active) do
out[k:lower()] = {v[1]}; -- ignore multiple names; take first name only
end
 
elseif 'lang_dep' == src_type and source.deprecated then -- for ~/iana_languages (deprecated)
for k, v in pairs (source.deprecated) do
out[k:lower()] = {v[1]}; -- ignore multiple names; take first name only
end
 
else -- here for all other sources
for k, v in pairs (source) do
out[k:lower()] = {v[1]}; -- ignore multiple names; take first name only
end
end
Line 48 ⟶ 46:
end
 
local lang_name_tablelang_name_table_t = {
lang = key_to_lower ('Module:Language/data/iana languages', 'lang'),
lang_dep = key_to_lower ('Module:Language/data/iana languages', 'lang_dep'),
Line 56 ⟶ 54:
suppressed = key_to_lower ('Module:Language/data/iana suppressed scripts', 'var_sup'), -- script keys are capitalized; set to lower
}
 
 
--[[--------------------------< I 1 8 N M E D I A W I K I O V E R R I D E >--------------------------------
 
For internationalization; not used at en.wiki
 
The language names taken from the IANA language-subtag-registry file are given in English. That may not be ideal.
Translating ~8,000 language names is also not ideal. MediaWiki maintains (much) shorter lists of language names
in most languages for which there is a Wikipedia edition. When desired, Module:Lang can use the MediaWiki
language list for the local language.
 
Caveat lector: the list of MediaWiki language names for your language may not be complete or may not exist at all.
When incomplete, MediaWiki's list will 'fall back' to another language (typically English). When that happens
add an appropriate entry to the override table below.
 
Caveat lector: the list of MediaWiki language names for your language may not be correct. At en.wiki, the
MediaWiki language names do not agree with the IANA language names for these ISO 639-1 tags. Often it is simply
spelling differences:
bh: IANA: Bihari languages MW: Bhojpuri – the ISO 639-3 tag for Bhojpuri is bho
bn: IANA: Bengali MW: Bangla – Bengali is the exonym, Bangla is the endonym
dv: IANA: Dhivehi MW: Divehi
el: IANA: Modern Greek MW: Greek
ht: IANA: Haitian MW: Haitian Creole
ky: IANA: Kirghiz MW: Kyrgyz
li: IANA: Limburgan MW: Limburgish
or: IANA: Oriya MW: Odia
os: IANA: Ossetian MW: Ossetic
"pa: IANA: Panjabi MW: Punjabi
"ps: IANA: Pushto MW: Pashto
"to: IANA: Tonga MW: Tongan
"ug: IANA: Uighur MW: Uyghur
use the override table to override language names that are incorrect for your project
 
To see the list of names that MediaWiki has for your language, enter this in the Debug colsole:
=mw.dumpObject (mw.language.fetchLanguageNames ('<tag>', 'all'))
(replacing <tag> with the language tag for your language)
 
Use of the MediaWiki language names lists is enabled when media_wiki_override_enable is set to boolean true.
]]
 
local media_wiki_override_enable = false; -- set to true to override IANA names with MediaWiki names; always false at en.wiki
-- caveat lector: the list of MediaWiki language names for your language may not be complete or may not exist at all
if true == media_wiki_override_enable then
local mw_languages_by_tag_t = mw.language.fetchLanguageNames (this_wiki_lang_tag, 'all'); -- get a table of language tag/name pairs known to MediaWiki
for tag, name in pairs (mw_languages_by_tag_t) do -- loop through each tag/name pair in the MediaWiki list
if lang_name_table_t.lang[tag] then -- if the tag is in the main list
lang_name_table_t.lang[tag] = name; -- overwrite exisiting name with the name from MediaWiki
end
end
end
 
 
Line 69 ⟶ 118:
------------------------------< I S O _ 6 3 9 - 1 >------------------------------------------------------------
 
["ab"] = "Abkhaz", -- to match en.wiki article name
["ca-valencia"] = {"Valencian"},
["ca-valencia"] = "Valencian",
["cu"] = {"Church Slavonic"}, -- 2nd IANA name;
["de-atcu"] = {"AustrianChurch GermanSlavonic"}, -- these code-region and code-variant tags to match en.wiki2nd articleIANA namesname;
["de-at"] = "Austrian German", -- these code-region and code-variant tags to match en.wiki article names
["de-ch"] = {"Swiss Standard German"},
["ende-auch"] = {"AustralianSwiss EnglishStandard German"},
["en-caau"] = {"CanadianAustralian English"},
["en-emodengca"] = {"Early ModernCanadian English"},
["en-gbemodeng"] = {"BritishEarly Modern English"},
["en-iegb"] = {"IrishBritish English"},
["en-inie"] = {"IndianIrish English"},
["en-nzin"] = {"New ZealandIndian English"},
["en-usnz"] = {"AmericanNew Zealand English"},
["en-zaus"] = {"South AfricanAmerican English"},
["en-za"] = "South African English",
["fy"] = {"West Frisian"}, -- Western Frisian
["mofy"] = {"MoldovanWest Frisian"}, -- Moldavian (deprecated code); to match en.wiki articleWestern titleFrisian
["mo"] = "Moldovan", -- Moldavian (deprecated code); to match en.wiki article title
["oc-provenc"] = {"Provençal"},
["psnl-be"] = {"PashtoFlemish"}, -- Pushtomatch MediaWiki
["twoc-asanteprovenc"] = {"Asante TwiProvençal"},
["ps"] = "Pashto", -- Pushto
["pt-br"] = "Brazilian Portuguese", -- match MediaWiki
["tw-asante"] = "Asante Twi",
["ug"] = "Uyghur", -- 2nd IANA name; to match en.wiki article name
 
-- these ISO 639-1 language-name overrides imported from Module:Language/data/wp_languages
--<begin do-not-edit except to comment out>--
["av"] = {"Avar"}, -- Avaric
["bo"] = {"Standard Tibetan"}, -- Tibetan
["el"] = {"Greek"}, -- Modern Greek
-- ["en-SA"] = {"South African English"}, -- English; no; SA is not South Africa it Saudi Arabia; ZA is South Africa
["ff"] = {"Fula"}, -- Fulah
["ht"] = {"Haitian Creole"}, -- Haitian
["hz"] = {"Otjiherero"}, -- Herero
["ii"] = {"Yi"}, -- Sichuan Yi
["ki"] = {"Gikuyu"}, -- Kikuyu
["kl"] = {"Greenlandic"}, -- Kalaallisut
["ky"] = {"Kyrgyz"}, -- Kirghiz
["lg"] = {"Luganda"}, -- Ganda
["li"] = {"Limburgish"}, -- Limburgan
["mi"] = {"Māori"}, -- Maori
["na"] = {"Nauruan"}, -- Nauru
["nb"] = {"Bokmål"}, -- Norwegian Bokmål
["nd"] = {"Northern Ndebele"}, -- North Ndebele
["nn"] = {"Nynorsk"}, -- Norwegian Nynorsk
["nr"] = {"Southern Ndebele"}, -- South Ndebele
["ny"] = {"Chichewa"}, -- Nyanja
["oj"] = {"Ojibwe"}, -- Ojibwa
["or"] = {"Odia"}, -- Oriya
["pa"] = {"Punjabi"}, -- Panjabi
["rn"] = {"Kirundi"}, -- Rundi
["sl"] = {"Slovene"}, -- Slovenian
["ss"] = {"Swazi"}, -- Swati
["st"] = {"Sotho"}, -- Southern Sotho
["to"] = {"Tongan"}, -- Tonga
--<end do-not-edit except to comment out>--
 
Line 123 ⟶ 176:
------------------------------< I S O _ 6 3 9 - 2, - 3, - 5 >----------------------------------------------
 
["arcalv"] = {"AramaicAtlantic–Congo languages"}, -- Officialto Aramaicmatch (700-300en.wiki BCE),article Imperial Aramaictitle (700-300 BCEendash);
["artarc"] = {"constructedImperial Aramaic (700-300 BCE)"}, -- Official Aramaic (700-300 BCE), Imperial Aramaic (700-300 BCE); to match en.wiki article; lowercasetitle foruses ISO639-2 category'preferred' name
["bhdart"] = {"Bhadarwahiconstructed"}, -- Bhadrawahi; to match en.wiki article; lowercase for category titlename
["blabhd"] = {"BlackfootBhadarwahi"}, -- SiksikaBhadrawahi; to match en.wiki article title
["buabla"] = {"BuryatBlackfoot"}, -- BuriatSiksika; thisto ismatch aen.wiki macroarticle language; these four use wp preferred transliteration;title
["bxmbua"] = {"Mongolian Buryat"}, -- Mongolia Buriat; this is a macro language; these threefour alluse redirectwp topreferred Buryattransliteration;
["bxrbxm"] = {"RussianMongolian Buryat"}, -- RussiaMongolia Buriat; these three all redirect to Buryat
["bxubxr"] = {"ChineseRussian Buryat"}, -- ChinaRussia Buriat;
["byrbxu"] = {"YipmaChinese Buryat"}, -- Baruya,China YipmaBuriat;
["egybyr"] = {"Ancient EgyptianYipma"}, -- Egyptian (Ancient); distinguish from contemporary arz: Egyptian ArabicBaruya, Yipma
["emsegy"] = {"AlutiiqAncient Egyptian"}, -- PacificEgyptian Gulf Yupik(Ancient); todistinguish from contemporary matcharz: en.wikiEgyptian articleArabic title
["frrems"] = {"North FrisianAlutiiq"}, -- NorthernPacific Gulf Yupik; to match en.wiki article Frisiantitle
["frsesx"] = {"EastEskimo–Aleut Frisian Low Saxonlanguages"}, -- Easternto match en.wiki article title Frisian(endash)
["ilofrr"] = {"IlocanoNorth Frisian"}, -- Iloko; to match en.wiki articleNorthern titleFrisian
["jamfrs"] = {"JamaicanEast PatoisFrisian Low Saxon"}, -- Jamaican CreoleEastern EnglishFrisian
["luogsw-fr"] = {"DholuoAlsatian"}, -- IANA (primary) /ISO 639-3: Luo (Kenya and Tanzania); IANA (secondary):match DholuoMediaWiki
["mhrhaa"] = {"Meadow MariHän"}, -- EasternHan; to match en.wiki article Marititle
["midhmx"] = {"ModernHmong–Mien Mandaiclanguages"}, -- Mandaicto match en.wiki article title (endash)
["mlailo"] = {"TamamboIlocano"}, -- MaloIloko; to match en.wiki article title
['mte'"jam"] = {"Mono-AluJamaican Patois"}, -- MonoJamaican (SolomonCreole Islands)English
["nanlij-twmc"] = {"Taiwanese HokkienMonégasque"}, -- make room for IANA / 639-3 nan Min Nan Chinese;Ligurian matchas en.wikispoken articlein titleMonaco
["newluo"] = {"NewarDholuo"}, -- Newari,IANA Nepal(primary) Bhasa;/ISO to639-3: matchLuo en,wiki(Kenya and Tanzania); IANA article(secondary): titleDholuo
["nrfmhr"] = {"NormanMeadow Mari"}, -- not quite a collective - IANA name: Jèrriais; categorizes to Norman-languageEastern textMari
["nzimid"] = {"NzemaModern Mandaic"}, -- Nzima; to match en.wiki article titleMandaic
["orv"'mis'] = {"Old East Slavicuncoded"}, -- OldUncoded languages; capitalization; special scope, not collective Russianscope;
["pflmkh"] = {"PalatineMon–Khmer Germanlanguages"}, -- Pfaelzisch; to match en.wiki article title (endash)
["pmsmla"] = {"PiedmonteseTamambo"}, -- Piemontese; to match en.wiki article titleMalo
['mte'] = "Mono-Alu", -- Mono (Solomon Islands)
["pnb"] = {"Punjabi (Western)"}, -- Western Panjabi; dab added to override import from ~/wp languages and distinguish pnb from pa in reverse look up tag_from_name()
['mul'] = "multiple", -- Multiple languages; capitalization; special scope, not collective scope;
["stq"] = {"Saterland Frisian"}, -- Saterfriesisch
["undnan-tw"] = {"undeterminedTaiwanese Hokkien"}, -- capitalizationmake toroom for IANA / 639-3 nan Min Nan Chinese; match existingen.wiki article categorytitle
["wrgnew"] = {"WarrongoNewar"}, -- WarunguNewari, Nepal Bhasa; to match en,wiki article title
["xal-rungf"] = {"KalmykTrans–New Guinea languages"}, -- to match en.wiki article title (endash)
["xgfnic"] = {"TongvaNiger–Congo languages"}, -- ISO 639Niger-3Kordofanian islanguages; Gabrielino-Fernandeñoto match en,wiki article title
["nrf"] = "Norman", -- not quite a collective - IANA name: Jèrriais + Guernésiais; categorizes to Norman-language text
["nrf-gg"] = "Guernésiais", -- match MediaWiki
["nrf-je"] = "Jèrriais", -- match MediaWiki
["nzi"] = "Nzema", -- Nzima; to match en.wiki article title
["oma"] = "Omaha–Ponca", -- to match en.wiki article title (endash)
["orv"] = "Old East Slavic", -- Old Russian
["pfl"] = "Palatine German", -- Pfaelzisch; to match en.wiki article
["pie"] = "Piro Pueblo", -- Piro; to match en.wiki article
["pms"] = "Piedmontese", -- Piemontese; to match en.wiki article title
["pnb"] = "Punjabi (Western)", -- Western Panjabi; dab added to override import from ~/wp languages and distinguish pnb from pa in reverse look up tag_from_name()
["rop"] = "Australian Kriol", -- Kriol; en.wiki article is a dab; point to correct en.wiki article
["sdo"] = "Bukar–Sadong", -- Bukar-Sadung Bidayuh; to match en.wiki article title
["stq"] = "Saterland Frisian", -- Saterfriesisch
["und"] = "undetermined", -- capitalization to match existing category
["wrg"] = "Warrongo", -- Warungu
["xal-ru"] = "Kalmyk", -- to match en.wiki article title
["xgf"] = "Tongva", -- ISO 639-3 is Gabrielino-Fernandeño
["yuf"] = "Havasupai–Hualapai", -- Havasupai-Walapai-Yavapai; to match en.wiki article title
["zxx"] = "no linguistic content", -- capitalization
 
-- these ISO 639-2, -3 language-name overrides imported from Module:Language/data/wp_languages
--<begin do-not-edit except to comment out>--
["ace"] = {"Acehnese"}, -- Achinese
["aec"] = {"Sa'idi Arabic"}, -- Saidi Arabic
["akl"] = {"Aklan"}, -- Aklanon
["alt"] = {"Altay"}, -- Southern Altai
["apm"] = {"Mescalero-Chiricahua"}, -- Mescalero-Chiricahua Apache
["bal"] = {"Balochi"}, -- Baluchi
-- ["bcl"] = {"Central Bicolano"}, -- Central Bikol
["bin"] = {"Edo"}, -- Bini
["bpy"] = {"Bishnupriya Manipuri"}, -- Bishnupriya
["chg"] = {"Chagatay"}, -- Chagatai
["ckb"] = {"Sorani Kurdish"}, -- Central Kurdish
["cnu"] = {"Shenwa"}, -- Chenoua
["coc"] = {"Cocopah"}, -- Cocopa
["diq"] = {"Zazaki"}, -- Dimli
["fit"] = {"Meänkieli"}, -- Tornedalen Finnish
["fkv"] = {"Kven"}, -- Kven Finnish
["frk"] = {"Old Frankish"}, -- Frankish
["gez"] = {"Ge'ez"}, -- Geez
["gju"] = {"Gujari"}, -- Gujari
["gsw"] = {"Alemannic German"}, -- Swiss German
["gul"] = {"Gullah"}, -- Sea Island Creole English
["hak"] = {"Hakka"}, -- Hakka Chinese
["hbo"] = {"Biblical Hebrew"}, -- Ancient Hebrew
["hnd"] = {"Hindko"}, -- Southern Hindko
-- ["ikt"] = {"Inuvialuk"}, -- Inuinnaqtun
["kaa"] = {"Karakalpak"}, -- Kara-Kalpak
["khb"] = {"Tai Lü"}, -- Lü
["kmr"] = {"Kurmanji Kurdish"}, -- Northern Kurdish
["kpo"] = {"Kposo"}, -- Ikposo
["krj"] = {"Kinaray-a"}, -- Kinaray-A
["ktz"] = {"Juǀ'hoan"}, -- Juǀʼhoan
["lez"] = {"Lezgian"}, -- Lezghian
["liv"] = {"Livonian"}, -- Liv
["lng"] = {"Lombardic"}, -- Langobardic
["mia"] = {"Miami-Illinois"}, -- Miami
["miq"] = {"Miskito"}, -- Mískito
["mix"] = {"Mixtec"}, -- Mixtepec Mixtec
["mni"] = {"Meitei"}, -- Manipuri
["mrj"] = {"Hill Mari"}, -- Western Mari
["mww"] = {"White Hmong"}, -- Hmong Daw
["nds-nl"] = {"Dutch Low Saxon"}, -- Low German
-- ["new"] = {"Nepal Bhasa"}, -- Newari
["nso"] = {"Northern Sotho"}, -- Pedi
-- ["nwc"] = {"Classical Nepal Bhasa"}, -- Classical Newari, Classical Nepal Bhasa, Old Newari
["ood"] = {"O'odham"}, -- Tohono O'odham
["otk"] = {"Old Turkic"}, -- Old Turkish
["pal"] = {"Middle Persian"}, -- Pahlavi
["pam"] = {"Kapampangan"}, -- Pampanga
["phr"] = {"Potwari"}, -- Pahari-Potwari
["pka"] = {"Jain Prakrit"}, -- Ardhamāgadhī Prākrit
-- ["pnb"] = {"Punjabi"}, -- Western Panjabi
["psu"] = {"Shauraseni"}, -- Sauraseni Prākrit
["rap"] = {"Rapa Nui"}, -- Rapanui
["rar"] = {"Cook Islands Māori"}, -- Rarotongan
["rmu"] = {"Scandoromani"}, -- Tavringer Romani
["rom"] = {"Romani"}, -- Romany
["rup"] = {"Aromanian"}, -- Macedo-Romanian
["ryu"] = {"Okinawan"}, -- Central Okinawan
["sdc"] = {"Sassarese"}, -- Sassarese Sardinian
["sdn"] = {"Gallurese"}, -- Gallurese Sardinian
["shp"] = {"Shipibo"}, -- Shipibo-Conibo
["src"] = {"Logudorese"}, -- Logudorese Sardinian
["sro"] = {"Campidanese"}, -- Campidanese Sardinian
["tkl"] = {"Tokelauan"}, -- Tokelau
["tvl"] = {"Tuvaluan"}, -- Tuvalu
["tyv"] = {"Tuvan"}, -- Tuvinian
["vls"] = {"West Flemish"}, -- Vlaams
["wep"] = {"Westphalian"}, -- Westphalien
["xal"] = {"Oirat"}, -- Kalmyk
["xcl"] = {"Old Armenian"}, -- Classical Armenian
["yua"] = {"Yucatec Maya"}, -- Yucateco
--<end do-not-edit except to comment out>--
 
Line 235 ⟶ 307:
------------------------------< P R I V A T E _ U S E _ T A G S >----------------------------------------------
 
["akk-x-latbabyl"] = "Late Babylonian",
["cel-x-proto"] = {"Proto-Celtic"}, -- cel in IANA is Celtic languages
["akk-x-midassyr"] = "Middle Assyrian Akkadian",
["gem-x-proto"] = {"Proto-Germanic"}, -- gem in IANA is Germanic languages
["gmwakk-x-ecgmidbabyl"] = {"EastMiddle CentralBabylonian GermanAkkadian"},
["akk-x-neoassyr"] = "Neo-Assyrian Akkadian",
["grc-x-aeolic"] = {"Aeolic Greek"}, -- these grc-x-... codes are preferred alternates to the non-standard catchall code grc-gre
["grcakk-x-atticneobabyl"] = {"AtticNeo-Babylonian GreekAkkadian"},
["grcakk-x-biblicalold"] = {"BiblicalOld GreekAkkadian"},
["grcakk-x-byzantoldassyr"] = {"ByzantineOld GreekAssyrian Akkadian"},
["grcakk-x-classicoldbabyl"] = {"ClassicalOld GreekBabylonian Akkadian"},
["alg-x-proto"] = "Proto-Algonquian", -- alg in IANA is Algonquian languages
["grc-x-doric"] = {"Doric Greek"},
["grcca-x-hellenold"] = {"HellenisticOld GreekCatalan"},
["cel-x-proto"] = "Proto-Celtic", -- cel in IANA is Celtic languages
["grc-x-ionic"] = {"Ionic Greek"},
["grcegy-x-koinedemotic"] = {"KoinēDemotic GreekEgyptian"},
["grcegy-x-medievallate"] = {"MedievalLate GreekEgyptian"},
["grcegy-x-patrismiddle"] = {"PatristicMiddle GreekEgyptian"},
["egy-x-old"] = "Old Egyptian",
["grk-x-proto"] = {"Proto-Greek"}, -- grk in IANA is Greek languages
["iirgem-x-proto"] = {"Proto-Indo-IranianGermanic"}, -- iirgem in IANA is Indo-IranianGermanic Languageslanguages
["inegmw-x-protoecg"] = {"Proto-Indo-EuropeanEast Central German"},
["iragrc-x-protoaeolic"] = {"Proto-IranianAeolic Greek"}, -- irathese ingrc-x-... IANAcodes isare Iranianpreferred languagesalternates to the non-standard catchall code grc-gre
["grc-x-attic"] = "Attic Greek",
["itc-x-proto"] = {"Proto-Italic"}, -- itc in IANA is Italic languages
["grc-x-biblical"] = "Biblical Greek",
["ksh-x-colog"] = {"Colognian"}, -- en.wiki article is Colognian; ksh (Kölsch) redirects there
["lagrc-x-medievalbyzant"] = {"MedievalByzantine LatinGreek"},
["grc-x-classic"] = "Classical Greek",
["mis-x-ripuar"] = {"Ripuarian"}, -- replaces improper use of ksh in wp_languages
["semgrc-x-protodoric"] = {"Proto-SemiticDoric Greek"},
["grc-x-hellen"] = "Hellenistic Greek",
["sla-x-proto"] = {"Proto-Slavic"}, -- sla in IANA is Slavic languages
["grc-x-ionic"] = "Ionic Greek",
["yuf-x-hav"] = {"Havasupai"}, -- IANA name for these three is Havasupai-Walapai-Yavapai
["yufgrc-x-walkoine"] = {"WalapaiKoinē Greek"},
["yufgrc-x-yavmedieval"] = {"YavapaiMedieval Greek"},
["grc-x-patris"] = "Patristic Greek",
["grk-x-proto"] = "Proto-Greek", -- grk in IANA is Greek languages
["iir-x-proto"] = "Proto-Indo-Iranian", -- iir in IANA is Indo-Iranian Languages
["inc-x-mitanni"] = "Mitanni-Aryan", -- inc in IANA is Indic languages
["inc-x-proto"] = "Proto-Indo-Aryan",
["ine-x-proto"] = "Proto-Indo-European",
["ira-x-proto"] = "Proto-Iranian", -- ira in IANA is Iranian languages
["itc-x-proto"] = "Proto-Italic", -- itc in IANA is Italic languages
["ksh-x-colog"] = "Colognian", -- en.wiki article is Colognian; ksh (Kölsch) redirects there
["la-x-medieval"] = "Medieval Latin",
["la-x-new"] = "New Latin",
["lmo-x-milanese"] = "Milanese", -- lmo in IANA is Lombard; Milanese is a dialect
["mis-x-ripuar"] = "Ripuarian", -- replaces improper use of ksh in wp_languages
["prg-x-old"] = "Old Prussian",
["sem-x-ammonite"] = "Ammonite",
["sem-x-aramaic"] = "Aramaic",
["sem-x-canaan"] = "Canaanite languages",
["sem-x-dumaitic"] = "Dumaitic",
["sem-x-egurage"] = "Eastern Gurage",
["sem-x-hatran"] = "Hatran Aramaic",
["sem-x-oldsoara"] = "Old South Arabian",
["sem-x-palmyren"] = "Palmyrene Aramaic",
["sem-x-proto"] = "Proto-Semitic",
["sem-x-taymanit"] = "Taymanitic",
["sla-x-proto"] = "Proto-Slavic", -- sla in IANA is Slavic languages
["yuf-x-hav"] = "Havasupai", -- IANA name for these three is Havasupai-Walapai-Yavapai
["yuf-x-wal"] = "Walapai",
["yuf-x-yav"] = "Yavapai",
["xsc-x-pontic"] = "Pontic Scythian", -- xsc in IANA is Scythian
["xsc-x-saka"] = "Saka",
["xsc-x-sarmat"] = "Sarmatian",
}
 
Line 274 ⟶ 377:
 
local article_name = {
["lij"'kue'] = {"LigurianKuman language (RomanceNew languageGuinea)"}, -- LigurianKuman (Papua New Guinea); seeto avoid Kuman dab Template_talk:Lang#Ligurian_dabpage
['mnh'"lij"] = {"MonoLigurian (Romance language (Congo)"}, -- Mono (Democratic Republic of Congo)Ligurian; see Template_talk:Lang#Mono_languagesLigurian_dab
['mnrmbo'] = {"MonoMbo language (CaliforniaCameroon)"}, -- MonoMbo (USACameroon)
['mrumnh'] = {"Mono language (CameroonCongo)"}, -- Mono (CameroonDemocratic Republic of Congo); see Template_talk:Lang#Mono_languages
["xlg"'mnr'] = {"Ligurian (ancientMono language (California)"}, -- seeMono Template_talk:Lang#Ligurian_dab(USA)
['mru'] = "Mono language (Cameroon)", -- Mono (Cameroon)
['qwm'] = "Kuman (Russia)", -- Kuman (Russia); to avoid Kuman dab page
["snq"] = "Sangu language (Gabon)", -- Sangu (Gabon)
["toi"] = "Tonga language (Zambia and Zimbabwe)", -- Tonga (Zambia and Zimbabwe); to avoid Tonga language dab page
["xlg"] = "Ligurian (ancient language)", -- see Template_talk:Lang#Ligurian_dab
["zmw"] = "Mbo language (Congo)", -- Mbo (Democratic Republic of Congo)
}
 
Line 425 ⟶ 534:
['gu'] = 'ISO 15919 Indic',
['hi'] = 'ISO 15919 Indic',
['hno'] = 'ISO 15919 Indic',
['inc'] = 'ISO 15919 Indic',
['kn'] = 'ISO 15919 Indic',
Line 437 ⟶ 547:
['or'] = 'ISO 15919 Indic',
['pa'] = 'ISO 15919 Indic',
['pnb'] = 'ISO 15919 Indic',
['raj'] = 'ISO 15919 Indic',
['sa'] = 'ISO 15919 Indic',
Line 442 ⟶ 553:
['sd'] = 'ISO 15919 Indic',
['si'] = 'ISO 15919 Indic',
['skr'] = 'ISO 15919 Indic',
['ta'] = 'ISO 15919 Indic',
['tcy'] = 'ISO 15919 Indic',
Line 462 ⟶ 574:
['jyutping'] = {
['default'] = 'Jyutping transliteration',
},
 
['mlcts'] = {
['default'] = 'Myanmar Language Commission Transcription System',
},
 
Line 519 ⟶ 635:
return
{
this_wiki_lang_tag = this_wiki_lang_tag,
this_wiki_lang_dir = lang_obj:getDir(), -- wiki's language direction
article_name = article_name,
lang_name_table = lang_name_tablelang_name_table_t,
override = override,
rtl_scripts = rtl_scripts,
special_tags_table = special_tags_table,
translit_title_table = translit_title_table,
};