0,0 → 1,59 |
<?php |
|
// WebSVN - Subversion repository viewing via the web using PHP |
// Copyright (C) 2004-2006 Tim Armes |
// |
// This program is free software; you can redistribute it and/or modify |
// it under the terms of the GNU General Public License as published by |
// the Free Software Foundation; either version 2 of the License, or |
// (at your option) any later version. |
// |
// This program is distributed in the hope that it will be useful, |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// GNU General Public License for more details. |
// |
// You should have received a copy of the GNU General Public License |
// along with this program; if not, write to the Free Software |
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// |
// -- |
// |
// languages.php |
// |
// declares all available languages |
|
// language tag => array(base filename, name in English, name in native tongue) |
$languages = array( |
'ca' => array('catalan', 'Catalan', 'Català-Valencià'), |
'zh-CN' => array('chinese-simplified', 'Chinese (Simplified)', '中文'), |
'zh-TW' => array('chinese-traditional', 'Chinese (Traditional)', '中文'), |
'cs' => array('czech', 'Czech', 'Česky'), |
'da' => array('danish', 'Danish', 'Dansk'), |
'nl' => array('dutch', 'Dutch', 'Nederlands'), |
'en' => array('english', 'English', 'English'), |
'fi' => array('finnish', 'Finnish', 'Suomi'), |
'fr' => array('french', 'French', 'Français'), |
'de' => array('german', 'German', 'Deutsch'), |
'he-IL' => array('hebrew', 'Hebrew', 'עברית'), |
'hin' => array('hindi', 'Hindi', 'हिंदी'), |
'hu' => array('hungarian', 'Hungarian', 'Magyar'), |
'id' => array('indonesian', 'Indonesian', 'Bahasa Indonesia'), |
'it' => array('italian', 'Italian', 'Italiano'), |
'ja' => array('japanese', 'Japanese', '日本語'), |
'ko' => array('korean', 'Korean', '한국어'), |
'mk' => array('macedonian', 'Macedonian', 'Македонски'), |
'mr' => array('marathi', 'Marathi', 'मराठी'), |
'no' => array('norwegian', 'Norwegian', 'Norsk'), |
'pl' => array('polish', 'Polish', 'Polski'), |
'pt' => array('portuguese', 'Portuguese', 'Português'), |
'pt-BR' => array('portuguese-br', 'Portuguese (Brazil)', 'Português'), |
'ru' => array('russian', 'Russian', 'Русский'), |
'sk' => array('slovak', 'Slovak', 'Slovenčina'), |
'sl' => array('slovenian', 'Slovenian', 'Slovenščina'), |
'es' => array('spanish', 'Spanish', 'Español'), |
'sv' => array('swedish', 'Swedish', 'Svenska'), |
'tr' => array('turkish', 'Turkish', 'Türkçe'), |
'uk' => array('ukrainian', 'Ukrainian', 'Українська'), |
'uz' => array('uzbek', 'Uzbek', 'Oëzbekcha'), |
); |