jablonka.czprosek.czf

websvn

Subversion Repositories:
[/] [languages/] [languages.php] - Blame information for rev 1

 

Line No. Rev Author Line
11simandl<?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&agrave;-Valenci&agrave;'),
28 'cs' => array('czech', 'Cesky', '&#268;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&ccedil;ais'),
34 'de' => array('german', 'German', 'Deutsch'),
35 'he-IL' => array('hebrew', 'Hebrew', '&#1506;&#1489;&#1512;&#1497;&#1514;'),
36 'hu' => array('hungarian', 'Hungarian', 'Magyar'),
37 'id' => array('indonesian', 'Indonesian', 'Bahasa Indonesia'),
38 'it' => array('italian', 'Italian', 'Italiano'),
39 'ja' => array('japanese', 'Japanese', '&#26085;&#26412;&#35486;'),
40 'ko' => array('korean', 'Korean', '&#54620;&#44397;&#50612;'),
41 'no' => array('norwegian', 'Norwegian', 'Norsk'),
42 'pl' => array('polish', 'Polish', 'Polski'),
43 'pt' => array('portuguese', 'Portuguese', 'Portugu&ecirc;s'),
44 'pt-BR' => array('portuguese-br', 'Brazilian Portuguese', 'Portugu&ecirc;s'),
45 'ru' => array('russian', 'Russian', '&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;'),
46 'zh-CN' => array('schinese', 'Simplified Chinese', '&#20013;&#25991;'),
47 'sk' => array('slovak', 'Slovak', 'Sloven&#269;ina'),
48 'sl' => array('slovenian', 'Slovenian', 'Sloven&#269;ina'),
49 'es' => array('spanish', 'Spanish', 'Espa&ntilde;ol'),
50 'sv' => array('swedish', 'Swedish', 'Svenska'),
51 'zh-TW' => array('tchinese', 'Traditional Chinese', '&#20013;&#25991;'),
52 'tr' => array('turkish', 'Turkish', 'T&uuml;rk&ccedil;e'),
53 'uz' => array('uzbek', 'Uzbek', 'O‘zbekcha'),
54);

Powered by WebSVN 2.2.1