source: github/program/localization/index.inc @ b4a9999

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

Added Norwegian localization

  • Property mode set to 100644
File size: 2.1 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        'fr'    => 'Fran&ccedil;ais',
36        'ga'    => 'Galician',
37        'el'    => 'Greek',
38        'hu'    => 'Hungarian',
39        'it'    => 'Italiano',
40        'jp'    => 'Japanese',
41        'kr'    => 'Korean',
42        'lv'    => 'Latvian',
43        'nl'    => 'Nederlands',
44        'nb_NO' => 'Norsk (bokm&aring;l)',
45        'nn_NO' => 'Norsk (nynorsk)',
46        'fa'    => 'Persian',
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
59
60$rcube_charsets = array(
61        'cz' => 'Windows-1250',
62        'ru' => 'Windows-1251',
63        'lv' => 'ISO-8859-2',
64        'pl' => 'ISO-8859-2',
65        'tw' => 'BIG5'
66);
67
68?>
Note: See TracBrowser for help on using the repository browser.