کاربر ناشناس
پودمان:Lang/data: تفاوت میان نسخهها
+hno, pnb, skr as ISO 15919;
جز (۱ نسخه واردشده) |
(+hno, pnb, skr as ISO 15919;) |
||
خط ۱: | خط ۱: | ||
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 >------------------------------------------------ | --[[--------------------------< L A N G _ N A M E _ T A B L E >------------------------------------------------ | ||
خط ۱۰: | خط ۱۴: | ||
all of these data come from separate modules that are derived from the IANA language-subtag-registry file | all of these data come from separate modules that are derived from the IANA language-subtag-registry file | ||
key_to_lower() avoids the metatable trap and sets all keys in the subtables to lowercase. | key_to_lower() avoids the metatable trap and sets all keys in the subtables to lowercase. Many language codes | ||
have multiple associated names; Module:lang is only concerned with the first name so key_to_lower() only fetches | have multiple associated names; Module:lang is only concerned with the first name so key_to_lower() only fetches | ||
the first name. | the first name. | ||
]] | ]] | ||
خط ۲۷: | خط ۲۵: | ||
if 'var_sup' == src_type then | if 'var_sup' == src_type then | ||
for k, v in pairs (source) do | for k, v in pairs (source) do | ||
out[k:lower()] = v; -- for variant | out[k:lower()] = v; -- for variant and suppressed everything is needed | ||
end | end | ||
elseif 'lang' == src_type and source.active then -- for ~/iana_languages (active) | elseif 'lang' == src_type and source.active then -- for ~/iana_languages (active) | ||
for k, v in pairs (source.active) do | for k, v in pairs (source.active) do | ||
out[k:lower()] = | out[k:lower()] = v[1]; -- ignore multiple names; take first name only | ||
end | end | ||
elseif 'lang_dep' == src_type and source.deprecated then -- for ~/iana_languages (deprecated) | elseif 'lang_dep' == src_type and source.deprecated then -- for ~/iana_languages (deprecated) | ||
for k, v in pairs (source.deprecated) do | for k, v in pairs (source.deprecated) do | ||
out[k:lower()] = | out[k:lower()] = v[1]; -- ignore multiple names; take first name only | ||
end | end | ||
else -- here for all other sources | else -- here for all other sources | ||
for k, v in pairs (source) do | for k, v in pairs (source) do | ||
out[k:lower()] = | out[k:lower()] = v[1]; -- ignore multiple names; take first name only | ||
end | end | ||
end | end | ||
خط ۴۸: | خط ۴۶: | ||
end | end | ||
local | local lang_name_table_t = { | ||
lang = key_to_lower ('Module:Language/data/iana languages', 'lang'), | lang = key_to_lower ('Module:Language/data/iana languages', 'lang'), | ||
lang_dep = key_to_lower ('Module:Language/data/iana languages', 'lang_dep'), | lang_dep = key_to_lower ('Module:Language/data/iana languages', 'lang_dep'), | ||
خط ۵۶: | خط ۵۴: | ||
suppressed = key_to_lower ('Module:Language/data/iana suppressed scripts', 'var_sup'), -- script keys are capitalized; set to lower | 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 | |||
خط ۶۷: | خط ۱۱۶: | ||
local override = { | local override = { | ||
------------------------------< I S O | ------------------------------< I S O _ 6 3 9 - 1 >------------------------------------------------------------ | ||
["ca-valencia"] = | ["ca-valencia"] = "Valencian", | ||
["cu"] = | ["cu"] = "Church Slavonic", -- 2nd IANA name; | ||
["de-at"] = | ["de-at"] = "Austrian German", -- these code-region and code-variant tags to match en.wiki article names | ||
["de-ch"] = | ["de-ch"] = "Swiss Standard German", | ||
["en-au"] = | ["en-au"] = "Australian English", | ||
["en-ca"] = | ["en-ca"] = "Canadian English", | ||
["en-emodeng"] = | ["en-emodeng"] = "Early Modern English", | ||
["en-gb"] = | ["en-gb"] = "British English", | ||
["en-ie"] = | ["en-ie"] = "Irish English", | ||
["en-in"] = | ["en-in"] = "Indian English", | ||
["en-nz"] = | ["en-nz"] = "New Zealand English", | ||
["en-us"] = | ["en-us"] = "American English", | ||
["en-za"] = | ["en-za"] = "South African English", | ||
["fy"] = | ["fy"] = "West Frisian", -- Western Frisian | ||
["mo"] = | ["mo"] = "Moldovan", -- Moldavian (deprecated code); to match en.wiki article title | ||
["oc-provenc"] = | ["nl-be"] = "Flemish", -- match MediaWiki | ||
["ps"] = | ["oc-provenc"] = "Provençal", | ||
["tw-asante"] = | ["ps"] = "Pashto", -- Pushto | ||
["pt-br"] = "Brazilian Portuguese", -- match MediaWiki | |||
["tw-asante"] = "Asante Twi", | |||
-- these ISO 639-1 language-name overrides imported from Module:Language/data/wp_languages | -- these ISO 639-1 language-name overrides imported from Module:Language/data/wp_languages | ||
--<begin do-not-edit except to comment out>-- | --<begin do-not-edit except to comment out>-- | ||
["av"] = | ["av"] = "Avar", -- Avaric | ||
["bo"] = | ["bo"] = "Standard Tibetan", -- Tibetan | ||
["el"] = | ["el"] = "Greek", -- Modern Greek | ||
-- ["en-SA"] = | -- ["en-SA"] = "South African English", -- English; no; SA is not South Africa it Saudi Arabia; ZA is South Africa | ||
["ff"] = | ["ff"] = "Fula", -- Fulah | ||
["ht"] = | ["ht"] = "Haitian Creole", -- Haitian | ||
["hz"] = | ["hz"] = "Otjiherero", -- Herero | ||
["ii"] = | ["ii"] = "Yi", -- Sichuan Yi | ||
["ki"] = | ["ki"] = "Gikuyu", -- Kikuyu | ||
["kl"] = | ["kl"] = "Greenlandic", -- Kalaallisut | ||
["ky"] = | ["ky"] = "Kyrgyz", -- Kirghiz | ||
["lg"] = | ["lg"] = "Luganda", -- Ganda | ||
["li"] = | ["li"] = "Limburgish", -- Limburgan | ||
["mi"] = | ["mi"] = "Māori", -- Maori | ||
["na"] = | ["na"] = "Nauruan", -- Nauru | ||
["nb"] = | ["nb"] = "Bokmål", -- Norwegian Bokmål | ||
["nd"] = | ["nd"] = "Northern Ndebele", -- North Ndebele | ||
["nn"] = | ["nn"] = "Nynorsk", -- Norwegian Nynorsk | ||
["nr"] = | ["nr"] = "Southern Ndebele", -- South Ndebele | ||
["ny"] = | ["ny"] = "Chichewa", -- Nyanja | ||
["oj"] = | ["oj"] = "Ojibwe", -- Ojibwa | ||
["or"] = | ["or"] = "Odia", -- Oriya | ||
["pa"] = | ["pa"] = "Punjabi", -- Panjabi | ||
["rn"] = | ["rn"] = "Kirundi", -- Rundi | ||
["sl"] = | ["sl"] = "Slovene", -- Slovenian | ||
["ss"] = | ["ss"] = "Swazi", -- Swati | ||
["st"] = | ["st"] = "Sotho", -- Southern Sotho | ||
["to"] = | ["to"] = "Tongan", -- Tonga | ||
--<end do-not-edit except to comment out>-- | --<end do-not-edit except to comment out>-- | ||
------------------------------< I S O | ------------------------------< I S O _ 6 3 9 - 2, - 3, - 5 >---------------------------------------------- | ||
["arc"] = | ["alv"] = "Atlantic–Congo languages", -- to match en.wiki article title (endash) | ||
["art"] = | ["arc"] = "Imperial Aramaic (700-300 BCE)", -- Official Aramaic (700-300 BCE), Imperial Aramaic (700-300 BCE); to match en.wiki article title uses ISO639-2 'preferred' name | ||
["bhd"] = | ["art"] = "constructed", -- to match en.wiki article; lowercase for category name | ||
["bla"] = | ["bhd"] = "Bhadarwahi", -- Bhadrawahi; to match en.wiki article title | ||
["bua"] = | ["bla"] = "Blackfoot", -- Siksika; to match en.wiki article title | ||
["bxm"] = | ["bua"] = "Buryat", -- Buriat; this is a macro language; these four use wp preferred transliteration; | ||
["bxr"] = | ["bxm"] = "Mongolian Buryat", -- Mongolia Buriat; these three all redirect to Buryat | ||
["bxu"] = | ["bxr"] = "Russian Buryat", -- Russia Buriat; | ||
["byr"] = | ["bxu"] = "Chinese Buryat", -- China Buriat; | ||
["egy"] = | ["byr"] = "Yipma", -- Baruya, Yipma | ||
["frr"] = | ["egy"] = "Ancient Egyptian", -- Egyptian (Ancient); distinguish from contemporary arz: Egyptian Arabic | ||
["frs"] = | ["ems"] = "Alutiiq", -- Pacific Gulf Yupik; to match en.wiki article title | ||
["ilo"] = | ["esx"] = "Eskimo–Aleut languages", -- to match en.wiki article title (endash) | ||
["jam"] = | ["frr"] = "North Frisian", -- Northern Frisian | ||
["mhr"] = | ["frs"] = "East Frisian Low Saxon", -- Eastern Frisian | ||
["mid"] = | ["gsw-fr"] = "Alsatian", -- match MediaWiki | ||
["mla"] = | ["haa"] = "Hän", -- Han; to match en.wiki article title | ||
['mte'] = | ["hmx"] = "Hmong–Mien languages", -- to match en.wiki article title (endash) | ||
["nan-tw"] = | ["ilo"] = "Ilocano", -- Iloko; to match en.wiki article title | ||
["nrf"] = | ["jam"] = "Jamaican Patois", -- Jamaican Creole English | ||
["nzi"] = | ["luo"] = "Dholuo", -- IANA (primary) /ISO 639-3: Luo (Kenya and Tanzania); IANA (secondary): Dholuo | ||
["orv"] = | ["mhr"] = "Meadow Mari", -- Eastern Mari | ||
["pfl"] = | ["mid"] = "Modern Mandaic", -- Mandaic | ||
["pms"] = | ['mis'] = "uncoded", -- Uncoded languages; capitalization; special scope, not collective scope; | ||
["pnb"] = | ["mkh"] = "Mon–Khmer languages", -- to match en.wiki article title (endash) | ||
["stq"] = | ["mla"] = "Tamambo", -- Malo | ||
["und"] = | ['mte'] = "Mono-Alu", -- Mono (Solomon Islands) | ||
["wrg"] = | ['mul'] = "multiple", -- Multiple languages; capitalization; special scope, not collective scope; | ||
["xal-ru"] = | ["nan-tw"] = "Taiwanese Hokkien", -- make room for IANA / 639-3 nan Min Nan Chinese; match en.wiki article title | ||
["xgf"] = | ["new"] = "Newar", -- Newari, Nepal Bhasa; to match en,wiki article title | ||
["ngf"] = "Trans–New Guinea languages", -- to match en.wiki article title (endash) | |||
["nic"] = "Niger–Congo languages", -- Niger-Kordofanian languages; to 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 | -- these ISO 639-2, -3 language-name overrides imported from Module:Language/data/wp_languages | ||
--<begin do-not-edit except to comment out>-- | --<begin do-not-edit except to comment out>-- | ||
["ace"] = | ["ace"] = "Acehnese", -- Achinese | ||
["aec"] = | ["aec"] = "Sa'idi Arabic", -- Saidi Arabic | ||
["akl"] = | ["akl"] = "Aklan", -- Aklanon | ||
["alt"] = | ["alt"] = "Altay", -- Southern Altai | ||
["apm"] = | ["apm"] = "Mescalero-Chiricahua", -- Mescalero-Chiricahua Apache | ||
["bal"] = | ["bal"] = "Balochi", -- Baluchi | ||
-- ["bcl"] = "Central Bicolano", -- Central Bikol | |||
["bin"] = | ["bin"] = "Edo", -- Bini | ||
["bpy"] = | ["bpy"] = "Bishnupriya Manipuri", -- Bishnupriya | ||
["chg"] = | ["chg"] = "Chagatay", -- Chagatai | ||
["ckb"] = | ["ckb"] = "Sorani Kurdish", -- Central Kurdish | ||
["cnu"] = | ["cnu"] = "Shenwa", -- Chenoua | ||
["coc"] = | ["coc"] = "Cocopah", -- Cocopa | ||
["diq"] = | ["diq"] = "Zazaki", -- Dimli | ||
["fit"] = | ["fit"] = "Meänkieli", -- Tornedalen Finnish | ||
["fkv"] = | ["fkv"] = "Kven", -- Kven Finnish | ||
["frk"] = | ["frk"] = "Old Frankish", -- Frankish | ||
["gez"] = | ["gez"] = "Ge'ez", -- Geez | ||
["gju"] = | ["gju"] = "Gujari", -- Gujari | ||
["gsw"] = | ["gsw"] = "Alemannic German", -- Swiss German | ||
["gul"] = | ["gul"] = "Gullah", -- Sea Island Creole English | ||
["hak"] = | ["hak"] = "Hakka", -- Hakka Chinese | ||
["hbo"] = | ["hbo"] = "Biblical Hebrew", -- Ancient Hebrew | ||
["hnd"] = | ["hnd"] = "Hindko", -- Southern Hindko | ||
-- ["ikt"] = | -- ["ikt"] = "Inuvialuk", -- Inuinnaqtun | ||
["kaa"] = | ["kaa"] = "Karakalpak", -- Kara-Kalpak | ||
["khb"] = | ["khb"] = "Tai Lü", -- Lü | ||
["kmr"] = | ["kmr"] = "Kurmanji Kurdish", -- Northern Kurdish | ||
["kpo"] = | ["kpo"] = "Kposo", -- Ikposo | ||
["krj"] = | ["krj"] = "Kinaray-a", -- Kinaray-A | ||
["ktz"] = | ["ktz"] = "Juǀ'hoan", -- Juǀʼhoan | ||
["lez"] = | ["lez"] = "Lezgian", -- Lezghian | ||
["liv"] = | ["liv"] = "Livonian", -- Liv | ||
["lng"] = | ["lng"] = "Lombardic", -- Langobardic | ||
["mia"] = | ["mia"] = "Miami-Illinois", -- Miami | ||
["miq"] = | ["miq"] = "Miskito", -- Mískito | ||
["mix"] = | ["mix"] = "Mixtec", -- Mixtepec Mixtec | ||
["mni"] = | ["mni"] = "Meitei", -- Manipuri | ||
["mrj"] = | ["mrj"] = "Hill Mari", -- Western Mari | ||
["mww"] = | ["mww"] = "White Hmong", -- Hmong Daw | ||
["nds-nl"] = | ["nds-nl"] = "Dutch Low Saxon", -- Low German | ||
-- ["new"] = "Nepal Bhasa", -- Newari | |||
["nso"] = | ["nso"] = "Northern Sotho", -- Pedi | ||
-- ["nwc"] = "Classical Nepal Bhasa", -- Classical Newari, Classical Nepal Bhasa, Old Newari | |||
["ood"] = | ["ood"] = "O'odham", -- Tohono O'odham | ||
["otk"] = | ["otk"] = "Old Turkic", -- Old Turkish | ||
["pal"] = | ["pal"] = "Middle Persian", -- Pahlavi | ||
["pam"] = | ["pam"] = "Kapampangan", -- Pampanga | ||
["phr"] = | ["phr"] = "Potwari", -- Pahari-Potwari | ||
["pka"] = | ["pka"] = "Jain Prakrit", -- Ardhamāgadhī Prākrit | ||
-- ["pnb"] = | -- ["pnb"] = "Punjabi", -- Western Panjabi | ||
["psu"] = | ["psu"] = "Shauraseni", -- Sauraseni Prākrit | ||
["rap"] = | ["rap"] = "Rapa Nui", -- Rapanui | ||
["rar"] = | ["rar"] = "Cook Islands Māori", -- Rarotongan | ||
["rmu"] = | ["rmu"] = "Scandoromani", -- Tavringer Romani | ||
["rom"] = | ["rom"] = "Romani", -- Romany | ||
["rup"] = | ["rup"] = "Aromanian", -- Macedo-Romanian | ||
["ryu"] = | ["ryu"] = "Okinawan", -- Central Okinawan | ||
["sdc"] = | ["sdc"] = "Sassarese", -- Sassarese Sardinian | ||
["sdn"] = | ["sdn"] = "Gallurese", -- Gallurese Sardinian | ||
["shp"] = | ["shp"] = "Shipibo", -- Shipibo-Conibo | ||
["src"] = | ["src"] = "Logudorese", -- Logudorese Sardinian | ||
["sro"] = | ["sro"] = "Campidanese", -- Campidanese Sardinian | ||
["tkl"] = | ["tkl"] = "Tokelauan", -- Tokelau | ||
["tvl"] = | ["tvl"] = "Tuvaluan", -- Tuvalu | ||
["tyv"] = | ["tyv"] = "Tuvan", -- Tuvinian | ||
["vls"] = | ["vls"] = "West Flemish", -- Vlaams | ||
["wep"] = | ["wep"] = "Westphalian", -- Westphalien | ||
["xal"] = | ["xal"] = "Oirat", -- Kalmyk | ||
["xcl"] = | ["xcl"] = "Old Armenian", -- Classical Armenian | ||
["yua"] = | ["yua"] = "Yucatec Maya", -- Yucateco | ||
--<end do-not-edit except to comment out>-- | --<end do-not-edit except to comment out>-- | ||
------------------------------< P R I V A T E | ------------------------------< P R I V A T E _ U S E _ T A G S >---------------------------------------------- | ||
["cel-x-proto"] = | ["alg-x-proto"] = "Proto-Algonquian", -- alg in IANA is Algonquian languages | ||
["gem-x-proto"] = | ["cel-x-proto"] = "Proto-Celtic", -- cel in IANA is Celtic languages | ||
["grc-x-aeolic"] = | ["gem-x-proto"] = "Proto-Germanic", -- gem in IANA is Germanic languages | ||
["grc-x-attic"] = | ["gmw-x-ecg"] = "East Central German", | ||
["grc-x-biblical"] = | ["grc-x-aeolic"] = "Aeolic Greek", -- these grc-x-... codes are preferred alternates to the non-standard catchall code grc-gre | ||
["grc-x-byzant"] = | ["grc-x-attic"] = "Attic Greek", | ||
["grc-x-classic"] = | ["grc-x-biblical"] = "Biblical Greek", | ||
["grc-x-doric"] = | ["grc-x-byzant"] = "Byzantine Greek", | ||
["grc-x-hellen"] = | ["grc-x-classic"] = "Classical Greek", | ||
["grc-x-ionic"] = | ["grc-x-doric"] = "Doric Greek", | ||
["grc-x-koine"] = | ["grc-x-hellen"] = "Hellenistic Greek", | ||
["grc-x-medieval"] = | ["grc-x-ionic"] = "Ionic Greek", | ||
["grc-x-patris"] = | ["grc-x-koine"] = "Koinē Greek", | ||
["grk-x-proto"] = | ["grc-x-medieval"] = "Medieval Greek", | ||
["iir-x-proto"] = | ["grc-x-patris"] = "Patristic Greek", | ||
["ira-x-proto"] = | ["grk-x-proto"] = "Proto-Greek", -- grk in IANA is Greek languages | ||
["itc-x-proto"] = | ["iir-x-proto"] = "Proto-Indo-Iranian", -- iir in IANA is Indo-Iranian Languages | ||
["ksh-x-colog"] = | ["ine-x-proto"] = "Proto-Indo-European", | ||
["mis-x-ripuar"] = | ["ira-x-proto"] = "Proto-Iranian", -- ira in IANA is Iranian languages | ||
["sla-x-proto"] = | ["itc-x-proto"] = "Proto-Italic", -- itc in IANA is Italic languages | ||
["yuf-x-hav"] = | ["ksh-x-colog"] = "Colognian", -- en.wiki article is Colognian; ksh (Kölsch) redirects there | ||
["yuf-x-wal"] = | ["la-x-medieval"] = "Medieval Latin", | ||
["yuf-x-yav"] = | ["mis-x-ripuar"] = "Ripuarian", -- replaces improper use of ksh in wp_languages | ||
["sem-x-proto"] = "Proto-Semitic", | |||
["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", | |||
} | } | ||
خط ۲۶۱: | خط ۳۳۸: | ||
for those rare occasions when article titles don't fit with the normal '<language name>-language', this table | for those rare occasions when article titles don't fit with the normal '<language name>-language', this table | ||
maps language code to article title. | maps language code to article title. Use of this table should be avoided and the use of redirects preferred as | ||
that is the long-standing method of handling article names that don't fit with the normal pattern | that is the long-standing method of handling article names that don't fit with the normal pattern | ||
خط ۲۶۷: | خط ۳۴۴: | ||
local article_name = { | local article_name = { | ||
["lij"] = | ["lij"] = "Ligurian (Romance language)", -- Ligurian; see Template_talk:Lang#Ligurian_dab | ||
['mnh'] = | ['mnh'] = "Mono language (Congo)", -- Mono (Democratic Republic of Congo); see Template_talk:Lang#Mono_languages | ||
['mnr'] = | ['mnr'] = "Mono language (California)", -- Mono (USA) | ||
['mru'] = | ['mru'] = "Mono language (Cameroon)", -- Mono (Cameroon) | ||
["xlg"] = | ["xlg"] = "Ligurian (ancient language)", -- see Template_talk:Lang#Ligurian_dab | ||
} | } | ||
خط ۲۷۷: | خط ۳۵۴: | ||
--[=[-------------------------< R T L _ S C R I P T S >-------------------------------------------------------- | --[=[-------------------------< R T L _ S C R I P T S >-------------------------------------------------------- | ||
ISO 15924 scripts that are written right-to-left. | ISO 15924 scripts that are written right-to-left. Data in this table taken from [[ISO 15924#List of codes]] | ||
last update to this list: 2017-12-24 | last update to this list: 2017-12-24 | ||
خط ۲۹۱: | خط ۳۶۸: | ||
--[[--------------------------< T R A N S L I T | --[[--------------------------< T R A N S L I T _ T I T L E S >------------------------------------------------ | ||
This is a table of tables of transliteration standards and the language codes or language scripts that apply to | This is a table of tables of transliteration standards and the language codes or language scripts that apply to | ||
those standards. | those standards. This table is used to create the tool-tip text associated with the transliterated text displayed | ||
by some of the {{lang-??}} templates. | by some of the {{lang-??}} templates. | ||
These tables are more-or-less copied directly from {{transl}}. | These tables are more-or-less copied directly from {{transl}}. The standard 'NO_STD' is a construct to allow for | ||
the cases when no |std= parameter value is provided. | the cases when no |std= parameter value is provided. | ||
خط ۳۰۴: | خط ۳۸۱: | ||
local translit_title_table = { | local translit_title_table = { | ||
['ahl'] = { | ['ahl'] = { | ||
['default'] = ' | ['default'] = 'Academy of the Hebrew Language transliteration', | ||
}, | }, | ||
['ala'] = { | ['ala'] = { | ||
['default'] = ' | ['default'] = 'American Library Association – Library of Congress transliteration', | ||
}, | }, | ||
['ala-lc'] = { | ['ala-lc'] = { | ||
['default'] = ' | ['default'] = 'American Library Association – Library of Congress transliteration', | ||
}, | }, | ||
['batr'] = { | ['batr'] = { | ||
['default'] = ' | ['default'] = 'Bikdash Arabic Transliteration Rules', | ||
}, | }, | ||
['bgn/pcgn'] = { | ['bgn/pcgn'] = { | ||
['default'] = ' | ['default'] = 'Board on Geographic Names / Permanent Committee on Geographical Names transliteration', | ||
}, | }, | ||
خط ۳۳۷: | خط ۴۱۴: | ||
['eae'] = { | ['eae'] = { | ||
['default'] = ' | ['default'] = 'Encyclopaedia Aethiopica transliteration', | ||
}, | }, | ||
['hepburn'] = { | ['hepburn'] = { | ||
['default'] = ' | ['default'] = 'Hepburn transliteration', | ||
}, | }, | ||
['hunterian'] = { | ['hunterian'] = { | ||
['default'] = ' | ['default'] = 'Hunterian transliteration', | ||
}, | }, | ||
['iast'] = { | ['iast'] = { | ||
['default'] = ' | ['default'] = 'International Alphabet of Sanskrit transliteration', | ||
}, | }, | ||
خط ۴۱۸: | خط ۴۹۵: | ||
['gu'] = 'ISO 15919 Indic', | ['gu'] = 'ISO 15919 Indic', | ||
['hi'] = 'ISO 15919 Indic', | ['hi'] = 'ISO 15919 Indic', | ||
['hno'] = 'ISO 15919 Indic', | |||
['inc'] = 'ISO 15919 Indic', | ['inc'] = 'ISO 15919 Indic', | ||
['kn'] = 'ISO 15919 Indic', | ['kn'] = 'ISO 15919 Indic', | ||
خط ۴۳۰: | خط ۵۰۸: | ||
['or'] = 'ISO 15919 Indic', | ['or'] = 'ISO 15919 Indic', | ||
['pa'] = 'ISO 15919 Indic', | ['pa'] = 'ISO 15919 Indic', | ||
['pnb'] = 'ISO 15919 Indic', | |||
['raj'] = 'ISO 15919 Indic', | ['raj'] = 'ISO 15919 Indic', | ||
['sa'] = 'ISO 15919 Indic', | ['sa'] = 'ISO 15919 Indic', | ||
خط ۴۳۵: | خط ۵۱۴: | ||
['sd'] = 'ISO 15919 Indic', | ['sd'] = 'ISO 15919 Indic', | ||
['si'] = 'ISO 15919 Indic', | ['si'] = 'ISO 15919 Indic', | ||
['skr'] = 'ISO 15919 Indic', | |||
['ta'] = 'ISO 15919 Indic', | ['ta'] = 'ISO 15919 Indic', | ||
['tcy'] = 'ISO 15919 Indic', | ['tcy'] = 'ISO 15919 Indic', | ||
خط ۴۵۰: | خط ۵۳۰: | ||
['telu'] = 'ISO 15919 Indic', | ['telu'] = 'ISO 15919 Indic', | ||
['default'] = ' | ['default'] = 'ISO transliteration', | ||
}, | }, | ||
['jyutping'] = { | ['jyutping'] = { | ||
['default'] = ' | ['default'] = 'Jyutping transliteration', | ||
}, | |||
['mlcts'] = { | |||
['default'] = 'Myanmar Language Commission Transcription System', | |||
}, | }, | ||
['mr'] = { | ['mr'] = { | ||
['default'] = ' | ['default'] = 'McCune–Reischauer transliteration', | ||
}, | }, | ||
['nihon-shiki'] = { | ['nihon-shiki'] = { | ||
['default'] = ' | ['default'] = 'Nihon-shiki transliteration', | ||
}, | }, | ||
خط ۴۶۹: | خط ۵۵۳: | ||
['sem'] = 'Semitic transliteration', | ['sem'] = 'Semitic transliteration', | ||
['phnx'] = 'Semitic transliteration', | ['phnx'] = 'Semitic transliteration', | ||
['xsux'] = ' | ['xsux'] = 'Cuneiform transliteration', | ||
}, | }, | ||
['pinyin'] = { | ['pinyin'] = { | ||
['default'] = ' | ['default'] = 'Pinyin transliteration', | ||
}, | }, | ||
['rr'] = { | ['rr'] = { | ||
['default'] = ' | ['default'] = 'Revised Romanization of Korean transliteration', | ||
}, | }, | ||
خط ۴۸۶: | خط ۵۷۰: | ||
['satts'] = { | ['satts'] = { | ||
['default'] = 'Standard Arabic Technical Transliteration System transliteration', | ['default'] = 'Standard Arabic Technical Transliteration System transliteration', | ||
}, | |||
['scientific'] = { | |||
['default'] = 'scientific transliteration', | |||
}, | |||
['ukrainian'] = { | |||
['default'] = 'Ukrainian National system of romanization', | |||
}, | }, | ||
['ungegn'] = { | ['ungegn'] = { | ||
['default'] = ' | ['default'] = 'United Nations Group of Experts on Geographical Names transliteration', | ||
}, | }, | ||
['wadegile'] = { | ['wadegile'] = { | ||
['default'] = ' | ['default'] = 'Wade–Giles transliteration', | ||
}, | }, | ||
خط ۵۰۴: | خط ۵۹۶: | ||
return | return | ||
{ | { | ||
this_wiki_lang_tag = this_wiki_lang_tag, | |||
this_wiki_lang_dir = lang_obj:getDir(), -- wiki's language direction | |||
article_name = article_name, | article_name = article_name, | ||
lang_name_table = | lang_name_table = lang_name_table_t, | ||
override = override, | override = override, | ||
rtl_scripts = rtl_scripts, | rtl_scripts = rtl_scripts, | ||
special_tags_table = special_tags_table, | |||
translit_title_table = translit_title_table, | translit_title_table = translit_title_table, | ||
}; | }; |