diff options
Diffstat (limited to 'langs.inc.php')
-rw-r--r-- | langs.inc.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/langs.inc.php b/langs.inc.php new file mode 100644 index 000000000..2d5c8b731 --- /dev/null +++ b/langs.inc.php @@ -0,0 +1,23 @@ +<?php + +// languages for home +$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-br' => 'Português do Brasil', + 'ru' => 'Русский', + 'tr' => 'Türkçe', + 'sl' => 'Slovenščina', + 'zh-cn' => '简体中文', + 'zh-tw' => '正體中文' +);
\ No newline at end of file |