svncommit
2005-10-20 1038d554e41b4007461a0c74a89625fd03107f7f
commit | author | age
9fee0e 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/localization/index.inc                                        |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2005, RoundCube Dev, - Switzerland                      |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
11  | PURPOSE:                                                              |
12  |   Provide centralized location for keeping track of                   |
13  |   available languages                                                 |
14  |                                                                       |
15  +-----------------------------------------------------------------------+
16  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
17  +-----------------------------------------------------------------------+
18
19  $Id$
20  
21  */
22  
23  $rcube_languages = array(
24     'en'    => 'English (US)',
25     'en_GB' => 'English (GB)',
26     'ar'    => 'Arabic',
27     'bg'    => 'Bulgarian',
28     'tw'    => 'Chinese (BIG5)',
29     'cn'    => 'Chinese(GB2312)',
30     'cz'    => 'Czech',
1038d5 31      'ca'    => 'Catal&agrave;',
9fee0e 32     'da'    => 'Dansk',
T 33      'de'    => 'Deutsch',
34      'es'    => 'Espa&ntilde;ol',
35     'fr'    => 'Fran&ccedil;ais', 
36     'ga'    => 'Galician',
37     'el'    => 'Greek',
38     'hu'    => 'Hungarian',
39     'it'    => 'Italiano',
40     'jp'    => 'Japanese', 
41     'kr'    => 'Korean',
42     'lt'    => 'Lithuanian',
43     'nl'    => 'Nederlands',
44     'no'    => 'Norsk (bokm&aring;l)',
45     'fa'    => 'Persian',
46     'pl'    => 'Polski',
47     'pt'    => 'Portuguese (Standard)',
48     'pt_BR' => 'Portuguese (Brazilian)',
49     'ro'    => 'Romanian',
50     'ru'    => 'Russian',
51     'fi'    => 'Suomi',
52     'se'    => 'Svenska',
53     'si'    => 'Slovenian',
54     'tr'    => 'Turkish',
55     'vn'    => 'Vietnamese'
56 );
57
58 ?>