thomascube
2005-11-18 fbf77b4493f1b77c99751d8a86365c712ae3fb1b
commit | author | age
f3b659 1 <?php
9fee0e 2
T 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',
4b0f65 40     'ja'    => 'Japanese',
9fee0e 41     'kr'    => 'Korean',
a95e0e 42     'lv'    => 'Latvian',
9fee0e 43     'nl'    => 'Nederlands',
b4a999 44     'nb_NO' => 'Norsk (bokm&aring;l)',
T 45     'nn_NO' => 'Norsk (nynorsk)',
9fee0e 46     'fa'    => 'Persian',
T 47     'pl'    => 'Polski',
48     'pt'    => 'Portuguese (Standard)',
49     'pt_BR' => 'Portuguese (Brazilian)',
50     'ro'    => 'Romanian',
51     'ru'    => 'Russian',
52     'fi'    => 'Suomi',
53     'se'    => 'Svenska',
54     'si'    => 'Slovenian',
55     'tr'    => 'Turkish',
56     'vn'    => 'Vietnamese'
57 );
58
7cc38e 59
T 60 $rcube_charsets = array(
e66f5b 61     'cz' => 'Windows-1250',
7cc38e 62     'ru' => 'Windows-1251',
T 63     'lv' => 'ISO-8859-2',
e66f5b 64     'pl' => 'ISO-8859-2',
ecf759 65     'el' => 'ISO-8859-7',
4b0f65 66     'tw' => 'BIG5',
T 67     'ja' => 'UTF-8'
7cc38e 68 );
T 69
9fee0e 70 ?>