diff options
author | Romain d'Alverny <rda@mageia.org> | 2011-05-30 17:45:15 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2011-05-30 17:45:15 +0000 |
commit | 503509afca4700ba83077909d856f96c387df342 (patch) | |
tree | d59d1af243d0a28f03643690b9f8b7c6dca3ec8d /support/index.php | |
parent | 7067543cb9293d2e828ffbcd94fbcfa7e36d9301 (diff) | |
download | www-503509afca4700ba83077909d856f96c387df342.tar www-503509afca4700ba83077909d856f96c387df342.tar.gz www-503509afca4700ba83077909d856f96c387df342.tar.bz2 www-503509afca4700ba83077909d856f96c387df342.tar.xz www-503509afca4700ba83077909d856f96c387df342.zip |
support fr
Diffstat (limited to 'support/index.php')
-rw-r--r-- | support/index.php | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/support/index.php b/support/index.php index cb6482255..aac2543f0 100644 --- a/support/index.php +++ b/support/index.php @@ -1,4 +1,27 @@ <?php -header('Location: /en/support/'); -die;
\ No newline at end of file +require_once '../langs.inc.php'; + +$langs = array( +// 'de' => 'Deutsch', +// 'el' => 'Ελληνικά', + 'en' => 'English', +// 'es' => 'Español', +// 'et' => 'Eesti', +// 'fi' => 'Suomeksi', + 'fr' => 'Français', +// 'it' => 'Italiano', +// 'lv' => 'Latviešu', +// 'nb' => 'Bokmål', +// 'nl' => 'Nederlands', +// 'pl' => 'Polski', +// 'pt' => 'Português', +// 'ro' => 'Română', +// 'ru' => 'Русский', +// 'tr' => 'Türkçe', +// 'sl' => 'Slovenščina', +// 'zh-cn' => '简体中文', +// 'zh-tw' => '正體中文' +); + +relocate($langs, 'support/');
\ No newline at end of file |