diff options
-rw-r--r-- | lib.php | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -54,6 +54,8 @@ class l10n */ function _mgnav_html($wrap = false, $lang = 'en', $inject = null, $vhost = '//www.mageia.org') { + $lang = _lang_simple($lang); + l10n::load($lang); $tn = array( @@ -102,3 +104,15 @@ function _mgnav_style() { return '<style>' . file_get_contents(__DIR__ . '/css/source.css') . '</style>'; } + +/** + * Get the primary language subtag only.<p></p> +*/ +function _lang_simple($s = null) +{ + if (!is_null($s)) { + $s = explode('-', $s); + $s = strtolower($s[0]); + } + return $s; +} |