From: Robin Pepermans Date: Sun, 4 Sep 2011 15:30:27 +0000 (+0000) Subject: Add zh-min-nan, zh-yue, zh-classical to dummy language codes, and mention the "redire... X-Git-Tag: 1.31.0-rc.0~27922 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=ee6a17a6f9043d46738c1758a83a31ffe6e5ae75;p=lhc%2Fweb%2Fwiklou.git Add zh-min-nan, zh-yue, zh-classical to dummy language codes, and mention the "redirect destination" or purpose of each code. --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 8950a0a4cf..972e4666fb 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1854,21 +1854,23 @@ $wgExtraLanguageNames = array(); /** * List of language codes that don't correspond to an actual language. * These codes are mostly leftoffs from renames, or other legacy things. - * Also, qqq is a dummy "language" for documenting messages. * This array makes them not appear as a selectable language on the installer, * and excludes them when running the transstat.php script. */ $wgDummyLanguageCodes = array( - 'als', - 'bat-smg', - 'be-x-old', - 'bh', - 'fiu-vro', - 'nb', - 'qqq', - 'qqx', - 'roa-rup', - 'simple', + 'als', # => 'gsw' + 'bat-smg', # => 'sgs' + 'be-x-old', # => 'be-tarask' + 'bh', # => 'bho' + 'fiu-vro', # => 'vro' + 'nb', # => 'no' + 'qqq', # Used for message documentation. + 'qqx', # Used for viewing message keys. + 'roa-rup', # => 'rup' + 'simple', # => 'en' + 'zh-classical', # => 'lzh' + 'zh-min-nan', # => 'nan' + 'zh-yue', # => 'yue' ); /**