mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00
60 lines
2.3 KiB
PHP
60 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
|
|
+----------------------------------------------------------------------+
|
|
| PHP Documentation Tools Site Source Code |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997-2011 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_0.txt. |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Yannick Torres <yannick@php.net> |
|
|
| Mehdi Achour <didou@php.net> |
|
|
| Gabor Hojtsy <goba@php.net> |
|
|
| Sean Coates <sean@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
$Id$
|
|
*/
|
|
|
|
// split from lib_general.inc.php
|
|
|
|
// Supported languages
|
|
// DO NOT insert English here - it is only for translations!
|
|
$LANGUAGES = array(
|
|
'ar' => 'Arabic',
|
|
'pt_BR' => 'Brazilian Portuguese',
|
|
'bg' => 'Bulgarian',
|
|
'zh' => 'Chinese (Simplified)',
|
|
'hk' => 'Chinese (Hong Kong Cantonese)',
|
|
'tw' => 'Chinese (Traditional)',
|
|
'cs' => 'Czech',
|
|
'da' => 'Danish',
|
|
'nl' => 'Dutch',
|
|
'fi' => 'Finnish',
|
|
'fr' => 'French',
|
|
'de' => 'German',
|
|
'el' => 'Greek',
|
|
'he' => 'Hebrew',
|
|
'hu' => 'Hungarian',
|
|
'it' => 'Italian',
|
|
'ja' => 'Japanese',
|
|
'kr' => 'Korean',
|
|
'no' => 'Norwegian',
|
|
'fa' => 'Persian',
|
|
'pl' => 'Polish',
|
|
'pt' => 'Portuguese',
|
|
'ro' => 'Romanian',
|
|
'ru' => 'Russian',
|
|
'sr' => 'Serbian',
|
|
'sk' => 'Slovak',
|
|
'sl' => 'Slovenian',
|
|
'es' => 'Spanish',
|
|
'sv' => 'Swedish',
|
|
'tr' => 'Turkish',
|
|
); |