aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib.php b/lib.php
index b044849..c86b422 100644
--- a/lib.php
+++ b/lib.php
@@ -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;
+}