Rev Author Line No. Line
4990 kaklik 1 <?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 // language tag => array(base filename, name in English, name in native tongue)
27 $languages = array(
28 'ca' => array('catalan', 'Catalan', 'Catal&agrave;-Valenci&agrave;'),
29 'zh-CN' => array('chinese-simplified', 'Chinese (Simplified)', '&#20013;&#25991;'),
30 'zh-TW' => array('chinese-traditional', 'Chinese (Traditional)', '&#20013;&#25991;'),
31 'cs' => array('czech', 'Czech', '&#268;esky'),
32 'da' => array('danish', 'Danish', 'Dansk'),
33 'nl' => array('dutch', 'Dutch', 'Nederlands'),
34 'en' => array('english', 'English', 'English'),
35 'fi' => array('finnish', 'Finnish', 'Suomi'),
36 'fr' => array('french', 'French', 'Fran&ccedil;ais'),
37 'de' => array('german', 'German', 'Deutsch'),
38 'he-IL' => array('hebrew', 'Hebrew', '&#1506;&#1489;&#1512;&#1497;&#1514;'),
39 'hin' => array('hindi', 'Hindi', '&#2361;&#2367;&#2306;&#2342;&#2368;'),
40 'hu' => array('hungarian', 'Hungarian', 'Magyar'),
41 'id' => array('indonesian', 'Indonesian', 'Bahasa Indonesia'),
42 'it' => array('italian', 'Italian', 'Italiano'),
43 'ja' => array('japanese', 'Japanese', '&#26085;&#26412;&#35486;'),
44 'ko' => array('korean', 'Korean', '&#54620;&#44397;&#50612;'),
45 'mk' => array('macedonian', 'Macedonian', '&#1052;&#1072;&#1082;&#1077;&#1076;&#1086;&#1085;&#1089;&#1082;&#1080;'),
46 'mr' => array('marathi', 'Marathi', '&#2350;&#2352;&#2366;&#2336;&#2368;'),
47 'no' => array('norwegian', 'Norwegian', 'Norsk'),
48 'pl' => array('polish', 'Polish', 'Polski'),
49 'pt' => array('portuguese', 'Portuguese', 'Portugu&ecirc;s'),
50 'pt-BR' => array('portuguese-br', 'Portuguese (Brazil)', 'Portugu&ecirc;s'),
51 'ru' => array('russian', 'Russian', '&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;'),
52 'sk' => array('slovak', 'Slovak', 'Sloven&#269;ina'),
53 'sl' => array('slovenian', 'Slovenian', 'Sloven&#353;&#269;ina'),
54 'es' => array('spanish', 'Spanish', 'Espa&ntilde;ol'),
55 'sv' => array('swedish', 'Swedish', 'Svenska'),
56 'tr' => array('turkish', 'Turkish', 'T&uuml;rk&ccedil;e'),
57 'uk' => array('ukrainian', 'Ukrainian', '&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072;'),
58 'uz' => array('uzbek', 'Uzbek', 'O&euml;zbekcha'),
59 );