~chroot64bit/zivios/gentoo-experimental

« back to all changes in this revision

Viewing changes to application/library/Zend/Locale/Data/Translation.php

  • Committer: Mustafa A. Hashmi
  • Date: 2008-12-04 13:32:21 UTC
  • Revision ID: mhashmi@zivios.org-20081204133221-0nd1trunwevijj38
Inclusion of new installation framework with ties to zend layout and dojo layout

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Zend Framework
 
4
 *
 
5
 * LICENSE
 
6
 *
 
7
 * This source file is subject to the new BSD license that is bundled
 
8
 * with this package in the file LICENSE.txt.
 
9
 * It is also available through the world-wide-web at this URL:
 
10
 * http://framework.zend.com/license/new-bsd
 
11
 * If you did not receive a copy of the license and are unable to
 
12
 * obtain it through the world-wide-web, please send an email
 
13
 * to license@zend.com so we can send you a copy immediately.
 
14
 *
 
15
 * @category  Zend
 
16
 * @package   Zend_Locale
 
17
 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 
18
 * @license   http://framework.zend.com/license/new-bsd     New BSD License
 
19
 * @version   $Id: Locale.php 5357 2007-06-16 19:56:21Z thomas $
 
20
 */
 
21
 
 
22
/**
 
23
 * Definition class for all Windows locales
 
24
 *
 
25
 * @category  Zend
 
26
 * @package   Zend_Locale
 
27
 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 
28
 * @license   http://framework.zend.com/license/new-bsd     New BSD License
 
29
 */
 
30
class Zend_Locale_Data_Translation
 
31
{
 
32
    /**
 
33
     * Locale Translation for Full Named Locales
 
34
     *
 
35
     * @var array $localeTranslation
 
36
     */
 
37
    public static $localeTranslation = array(
 
38
        'Australia'       => 'AU',
 
39
        'Austria'         => 'AT',
 
40
        'Belgium'         => 'BE',
 
41
        'Brazil'          => 'BR',
 
42
        'Canada'          => 'CA',
 
43
        'China'           => 'CN',
 
44
        'Czech Republic'  => 'CZ',
 
45
        'Denmark'         => 'DK',
 
46
        'Finland'         => 'FI',
 
47
        'France'          => 'FR',
 
48
        'Germany'         => 'DE',
 
49
        'Greece'          => 'GR',
 
50
        'Hong Kong SAR'   => 'HK',
 
51
        'Hungary'         => 'HU',
 
52
        'Iceland'         => 'IS',
 
53
        'Ireland'         => 'IE',
 
54
        'Italy'           => 'IT',
 
55
        'Japan'           => 'JP',
 
56
        'Korea'           => 'KP',
 
57
        'Mexiko'          => 'MX',
 
58
        'The Netherlands' => 'NL',
 
59
        'New Zealand'     => 'NZ',
 
60
        'Norway'          => 'NO',
 
61
        'Poland'          => 'PL',
 
62
        'Portugal'        => 'PT',
 
63
        'Russia'          => 'RU',
 
64
        'Singapore'       => 'SG',
 
65
        'Slovakia'        => 'SK',
 
66
        'Spain'           => 'ES',
 
67
        'Sweden'          => 'SE',
 
68
        'Taiwan'          => 'TW',
 
69
        'Turkey'          => 'TR',
 
70
        'United Kingdom'  => 'GB',
 
71
        'United States'   => 'US',
 
72
 
 
73
        'Chinese'         => 'zh',
 
74
        'Czech'           => 'cs',
 
75
        'Danish'          => 'da',
 
76
        'Dutch'           => 'nl',
 
77
        'English'         => 'en',
 
78
        'Finnish'         => 'fi',
 
79
        'French'          => 'fr',
 
80
        'German'          => 'de',
 
81
        'Greek'           => 'el',
 
82
        'Hungarian'       => 'hu',
 
83
        'Icelandic'       => 'is',
 
84
        'Italian'         => 'it',
 
85
        'Japanese'        => 'ja',
 
86
        'Korean'          => 'ko',
 
87
        'Norwegian'       => 'no',
 
88
        'Polish'          => 'pl',
 
89
        'Portuguese'      => 'pt',
 
90
        'Russian'         => 'ru',
 
91
        'Slovak'          => 'sk',
 
92
        'Spanish'         => 'es',
 
93
        'Swedish'         => 'sv',
 
94
        'Turkish'         => 'tr'
 
95
    );
 
96
}