summaryrefslogtreecommitdiff
path: root/program/localization/index.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-10-16 19:12:24 +0000
committerthomascube <thomas@roundcube.net>2005-10-16 19:12:24 +0000
commit9fee0ed9af6bb1daa3af2ff7290f5589040b4821 (patch)
treecc2593236458fdf56896831ac4bdee79bc6fc68c /program/localization/index.inc
parent69f71ba62d8e7d77c4877b47131836ea3f52f6ee (diff)
Fixed folder display; added Portuguese and Catalan
Diffstat (limited to 'program/localization/index.inc')
-rw-r--r--program/localization/index.inc59
1 files changed, 59 insertions, 0 deletions
diff --git a/program/localization/index.inc b/program/localization/index.inc
new file mode 100644
index 000000000..94b07b999
--- /dev/null
+++ b/program/localization/index.inc
@@ -0,0 +1,59 @@
+<?php
+
+/*
+ +-----------------------------------------------------------------------+
+ | program/localization/index.inc |
+ | |
+ | This file is part of the RoundCube Webmail client |
+ | Copyright (C) 2005, RoundCube Dev, - Switzerland |
+ | Licensed under the GNU GPL |
+ | |
+ | PURPOSE: |
+ | Provide centralized location for keeping track of |
+ | available languages |
+ | |
+ +-----------------------------------------------------------------------+
+ | Author: Thomas Bruederli <roundcube@gmail.com> |
+ +-----------------------------------------------------------------------+
+
+ $Id$
+
+ */
+
+ $rcube_languages = array(
+ 'en' => 'English (US)',
+ 'en_GB' => 'English (GB)',
+ 'ar' => 'Arabic',
+ 'bg' => 'Bulgarian',
+ 'cat' => 'Catalan',
+ 'tw' => 'Chinese (BIG5)',
+ 'cn' => 'Chinese(GB2312)',
+ 'cz' => 'Czech',
+ 'ca' => 'Catalan',
+ 'da' => 'Dansk',
+ 'de' => 'Deutsch',
+ 'es' => 'Espa&ntilde;ol',
+ 'fr' => 'Fran&ccedil;ais',
+ 'ga' => 'Galician',
+ 'el' => 'Greek',
+ 'hu' => 'Hungarian',
+ 'it' => 'Italiano',
+ 'jp' => 'Japanese',
+ 'kr' => 'Korean',
+ 'lt' => 'Lithuanian',
+ 'nl' => 'Nederlands',
+ 'no' => 'Norsk (bokm&aring;l)',
+ 'fa' => 'Persian',
+ 'pl' => 'Polski',
+ 'pt' => 'Portuguese (Standard)',
+ 'pt_BR' => 'Portuguese (Brazilian)',
+ 'ro' => 'Romanian',
+ 'ru' => 'Russian',
+ 'fi' => 'Suomi',
+ 'se' => 'Svenska',
+ 'si' => 'Slovenian',
+ 'tr' => 'Turkish',
+ 'vn' => 'Vietnamese'
+);
+
+?> \ No newline at end of file