Module:Lang/data

From Zoophilia Wiki
Revision as of 15:17, 2 November 2017 by meta>Trappist the monk
Jump to navigationJump to search

This module holds various support tables used by Module:Lang

  • override – this table provides language name data used in the creation of categories and, for the {{lang-??}} templates, the language name annotation.
  • rtl_scripts – a list of ISO 15924 scripts that are written right-to-left; data taken from the table at ISO 15924#List of codes
  • translit_title_table – a table of tables that is used in the creation of the title= attribute of the <i>...</i> tags that wrap transliterated text; data adapted from {{transl}}

local lang_data = {};


--[[--------------------------< T R A N S L I T   T I T L E S >------------------------------------------------

]]

local override = {
	['fy'] = {'West Fisian'},
	}


--[[--------------------------< 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
those standards.  This table is used to create the tool-tip text associated with the transliterated text displayed
by some of the {{lang-??}} templates.

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.

]]

local translit_title_table = {
	['ISO'] = {																	-- when a transliteration standard is supplied
		['ba'] = 'ISO 9 Cyrillic',
		['be'] = 'ISO 9 Cyrillic',
		['bg'] = 'ISO 9 Cyrillic',
		['uk'] = 'ISO 9 Cyrillic',
		['ab'] = 'ISO 9 Cyrillic',
		['mn'] = 'ISO 9 Cyrillic',
		['kk'] = 'ISO 9 Cyrillic',
		['ky'] = 'ISO 9 Cyrillic',
		['tut'] = 'ISO 9 Cyrillic',
		['bua'] = 'ISO 9 Cyrillic',
		['sah'] = 'ISO 9 Cyrillic',
		['xal'] = 'ISO 9 Cyrillic',
		['ru'] = 'ISO 9 Cyrillic',
		['tg'] = 'ISO 9 Cyrillic',
		['Cyrl'] = 'ISO 9 Cyrillic',
		['fa'] = 'ISO 233 Arabic',
		['ur'] = 'ISO 233 Arabic',
		['ku'] = 'ISO 233 Arabic',
		['ps'] = 'ISO 233 Arabic',
		['ug'] = 'ISO 233 Arabic',
		['ar'] = 'ISO 233 Arabic',
		['Arab'] = 'ISO 233 Arabic',
		['yi'] = 'ISO 259 Hebrew',
		['he'] = 'ISO 259 Hebrew',
		['Hebr'] = 'ISO 259 Hebrew',
		['grc'] = 'ISO 843 Greek',
		['el'] = 'ISO 843 Greek',
		['ja'] = 'ISO 3602 Japanese',
		['Hira'] = 'ISO 3602 Japanese',
		['Kana'] = 'ISO 3602 Japanese',
		['Hrkt'] = 'ISO 3602 Japanese',
		['Jpan'] = 'ISO 3602 Japanese',
		['pny'] = 'ISO 7098 Chinese',
		['zho'] = 'ISO 7098 Chinese',
		['chi'] = 'ISO 7098 Chinese',
		['zh'] = 'ISO 7098 Chinese',
		['Hans'] = 'ISO 7098 Chinese',
		['Hant'] = 'ISO 7098 Chinese',
		['Han'] = 'ISO 7098 Chinese',
		['kat'] = 'ISO 9984 Georgian',
		['ka'] = 'ISO 9984 Georgian',
		['arm'] = 'ISO 9985 Armenian',
		['hy'] = 'ISO 9985 Armenian',
		['tha'] = 'ISO 11940 Thai',
		['th'] = 'ISO 11940 Thai',
		['kor'] = 'ISO 11941 Korean',
		['ko'] = 'ISO 11941 Korean',
		['sa'] = 'ISO 15919 Indic',
		['hi'] = 'ISO 15919 Indic',
		['bn'] = 'ISO 15919 Indic',
		['te'] = 'ISO 15919 Indic',
		['mr'] = 'ISO 15919 Indic',
		['gu'] = 'ISO 15919 Indic',
		['kn'] = 'ISO 15919 Indic',
		['ml'] = 'ISO 15919 Indic',
		['ta'] = 'ISO 15919 Indic',
		['dra'] = 'ISO 15919 Indic',
		['inc'] = 'ISO 15919 Indic',
		['Brah'] = 'ISO 15919 Indic',
		['Beng'] = 'ISO 15919 Indic',
		['Deva'] = 'ISO 15919 Indic',
		['default'] = 'ISO transliteration',
		},
	['DIN'] = {
		['fa'] = 'DIN 31635 Arabic',
		['ur'] = 'DIN 31635 Arabic',
		['ku'] = 'DIN 31635 Arabic',
		['ps'] = 'DIN 31635 Arabic',
		['tg'] = 'DIN 31635 Arabic',
		['ug'] = 'DIN 31635 Arabic',
		['ar'] = 'DIN 31635 Arabic',
		['Arab'] = 'DIN 31635 Arabic',
		['default'] = 'DIN transliteration',
		},
	['IAST'] = {
		['default'] = 'International Alphabet of Sanskrit Transliteration',
		},
--	|#default = "{{{1}}} {{{2}}} transliteration"
	['NO_STD'] = {																-- when no transliteration standard is supplied
		['akk'] = 'Semitic transliteration',
		['sem'] = 'Semitic transliteration',
		['Phnx'] = 'Semitic transliteration',
		['Xsux'] = 'Cuneiform transliteration',
--		|#default = "{{ISO 639 name {{{1}}}}} transliteration"
		},
	};

return
	{
	override = override,
	translit_title_table = translit_title_table,
	};