1 | 1 | simandl | <?php |
2 | | | |
3 | | | // WebSVN - Subversion repository viewing via the web using PHP |
4 | | | // Copyright (C) 2004-2006 Tim Armes |
5 | | | // |
6 | | | // This program is free software; you can redistribute it and/or modify |
7 | | | // it under the terms of the GNU General Public License as published by |
8 | | | // the Free Software Foundation; either version 2 of the License, or |
9 | | | // (at your option) any later version. |
10 | | | // |
11 | | | // This program is distributed in the hope that it will be useful, |
12 | | | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | | // GNU General Public License for more details. |
15 | | | // |
16 | | | // You should have received a copy of the GNU General Public License |
17 | | | // along with this program; if not, write to the Free Software |
18 | | | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | | | // |
20 | | | // -- |
21 | | | // |
22 | | | // languages.php |
23 | | | // |
24 | | | // declares all available languages |
25 | | | |
26 | | | $languages = array( |
27 | | | 'ca' => array('catalan', 'Catalan', 'Català-Valencià'), |
28 | | | 'cs' => array('czech', 'Cesky', 'Česky'), |
29 | | | 'da' => array('danish', 'Dansk', 'Dansk'), |
30 | | | 'nl' => array('dutch', 'Dutch', 'Dutch'), |
31 | | | 'en' => array('english', 'English', 'English'), |
32 | | | 'fi' => array('finnish', 'Finnish', 'Finnish'), |
33 | | | 'fr' => array('french', 'Francais', 'Français'), |
34 | | | 'de' => array('german', 'German', 'Deutsch'), |
35 | | | 'he-IL' => array('hebrew', 'Hebrew', 'עברית'), |
36 | | | 'hu' => array('hungarian', 'Hungarian', 'Magyar'), |
37 | | | 'id' => array('indonesian', 'Indonesian', 'Bahasa Indonesia'), |
38 | | | 'it' => array('italian', 'Italian', 'Italiano'), |
39 | | | 'ja' => array('japanese', 'Japanese', '日本語'), |
40 | | | 'ko' => array('korean', 'Korean', '한국어'), |
41 | | | 'no' => array('norwegian', 'Norwegian', 'Norsk'), |
42 | | | 'pl' => array('polish', 'Polish', 'Polski'), |
43 | | | 'pt' => array('portuguese', 'Portuguese', 'Português'), |
44 | | | 'pt-BR' => array('portuguese-br', 'Brazilian Portuguese', 'Português'), |
45 | | | 'ru' => array('russian', 'Russian', 'Русский'), |
46 | | | 'zh-CN' => array('schinese', 'Simplified Chinese', '中文'), |
47 | | | 'sk' => array('slovak', 'Slovak', 'Slovenčina'), |
48 | | | 'sl' => array('slovenian', 'Slovenian', 'Slovenčina'), |
49 | | | 'es' => array('spanish', 'Spanish', 'Español'), |
50 | | | 'sv' => array('swedish', 'Swedish', 'Svenska'), |
51 | | | 'zh-TW' => array('tchinese', 'Traditional Chinese', '中文'), |
52 | | | 'tr' => array('turkish', 'Turkish', 'Türkçe'), |
53 | | | 'uz' => array('uzbek', 'Uzbek', 'O‘zbekcha'), |
54 | | | ); |