diff options
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 |