diff options
Diffstat (limited to 'en/doc/doc.php')
-rw-r--r-- | en/doc/doc.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/en/doc/doc.php b/en/doc/doc.php index 3c352b08f..f15cf7c8f 100644 --- a/en/doc/doc.php +++ b/en/doc/doc.php @@ -1,7 +1,8 @@ <?php -$documentation['installer' ][5] = array('ca','cs','de','el','en','eo','es','et','eu','fr', 'hr','id','it','nl', 'pl','pt','pt_br','ro','ru','sq','sv','tr','uk'); +$documentation['installer' ][5] = array('ca','cs','de','el','en','eo','es','et','eu','fr', 'hr','id','it','nl', 'pl','pt','pt_br','ro','ru','sq','sv','tr','uk','zh_CN'); $documentation['control_center'][5] = array('ca','cs','de','el','en','es','et','eu','fr','id','it','nl','pl','pt','pt_br','ro','ru','sv','tr','uk'); +$documentation['draklive' ][5] = array('cs','de','el','en','es','et','eu','fr', 'hr','nl','ro','sk','sl','sv','uk','zh_CN'); $documentation['installer' ][4] = array('ca','cs','de','el','en','eo','es','et','fr','id','nl','pl','pt_br','ro','ru','sv','tr','uk'); $documentation['control_center'][4] = array('en','et','fr','ru','tr','uk'); @@ -53,6 +54,14 @@ function doc_list($documentation_name, $type, $version) $dir = 'installer'; $name = 'DrakX'; $title = _r('Installer'); + } else if ('draklive' == $type) { + $dir = 'draklive'; + $name = 'DrakLive'; + $title = _r('Installation from LIVE medium'); + } else if ('draklive' == $type) { + $dir = 'NetInstall'; + $name = 'NetInstall'; + $title = _r('Installation with tiny boot image'); } else { return; // proper $type not defined ;) } |