websvn |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?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
$languages = array(
'ca' => array('catalan', 'Catalan', 'Català-Valencià'),
'cs' => array('czech', 'Cesky', 'Česky'),
'da' => array('danish', 'Dansk', 'Dansk'),
'nl' => array('dutch', 'Dutch', 'Dutch'),
'en' => array('english', 'English', 'English'),
'fi' => array('finnish', 'Finnish', 'Finnish'),
'fr' => array('french', 'Francais', 'Français'),
'de' => array('german', 'German', 'Deutsch'),
'he-IL' => array('hebrew', 'Hebrew', 'עברית'),
'hu' => array('hungarian', 'Hungarian', 'Magyar'),
'id' => array('indonesian', 'Indonesian', 'Bahasa Indonesia'),
'it' => array('italian', 'Italian', 'Italiano'),
'ja' => array('japanese', 'Japanese', '日本語'),
'ko' => array('korean', 'Korean', '한국어'),
'no' => array('norwegian', 'Norwegian', 'Norsk'),
'pl' => array('polish', 'Polish', 'Polski'),
'pt' => array('portuguese', 'Portuguese', 'Português'),
'pt-BR' => array('portuguese-br', 'Brazilian Portuguese', 'Português'),
'ru' => array('russian', 'Russian', 'Русский'),
'zh-CN' => array('schinese', 'Simplified Chinese', '中文'),
'sk' => array('slovak', 'Slovak', 'Slovenčina'),
'sl' => array('slovenian', 'Slovenian', 'Slovenčina'),
'es' => array('spanish', 'Spanish', 'Español'),
'sv' => array('swedish', 'Swedish', 'Svenska'),
'zh-TW' => array('tchinese', 'Traditional Chinese', '中文'),
'tr' => array('turkish', 'Turkish', 'Türkçe'),
'uz' => array('uzbek', 'Uzbek', 'Oëzbekcha'),
);