source: github/program/localization/index.inc @ 977a295e

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 977a295e was 977a295e, checked in by thomascube <thomas@…>, 7 years ago

Usage of virtusertable; mail_domain for new users; Chinese and Turkish localization

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<?php
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',
31        'ca'    => 'Catal&agrave;',
32        'da'    => 'Dansk',
33        'de'    => 'Deutsch',
34        'es'    => 'Espa&ntilde;ol',
35        'ee'    => 'Estonian',
36        'fr'    => 'Fran&ccedil;ais',
37        'ga'    => 'Galician',
38        'el'    => 'Greek',
39        'hu'    => 'Hungarian',
40        'it'    => 'Italiano',
41        'ja'    => 'Japanese',
42        'kr'    => 'Korean',
43        'lv'    => 'Latvian',
44        'nl'    => 'Nederlands',
45        'nb_NO' => 'Norsk (bokm&aring;l)',
46        'nn_NO' => 'Norsk (nynorsk)',
47        'fa'    => 'Persian',
48        'pl'    => 'Polski',
49        'pt'    => 'Portuguese (Standard)',
50        'pt_BR' => 'Portuguese (Brazilian)',
51        'ro'    => 'Romanian',
52        'ru'    => 'Russian',
53        'fi'    => 'Suomi',
54        'se'    => 'Svenska',
55        'si'    => 'Slovenian',
56        'tr'    => 'Turkish',
57        'vn'    => 'Vietnamese'
58);
59
60
61$rcube_charsets = array(
62        'cz' => 'Windows-1250',
63        'ru' => 'Windows-1251',
64        'lv' => 'ISO-8859-2',
65        'pl' => 'ISO-8859-2',
66        'el' => 'ISO-8859-7',
67        'tr' => 'ISO-8859-9',
68        'tw' => 'BIG5',
69        'ja' => 'UTF-8'
70);
71
72?>
Note: See TracBrowser for help on using the repository browser.