mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00
43 lines
1.9 KiB
PHP
43 lines
1.9 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: Nilgün Belma Bugüner <nilgun@php.net> |
|
|
| Yannick Torres <yannick@php.net> |
|
|
| Mehdi Achour <didou@php.net> |
|
|
| Gabor Hojtsy <goba@php.net> |
|
|
| Sean Coates <sean@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
// split from lib_general.inc.php
|
|
|
|
// Supported languages
|
|
// DO NOT insert English here - it is only for translations!
|
|
$LANGUAGES = array(
|
|
'de' => 'German',
|
|
'es' => 'Spanish',
|
|
'fr' => 'French',
|
|
'it' => 'Italian',
|
|
'ja' => 'Japanese',
|
|
'pl' => 'Polish',
|
|
'pt_br' => 'Brazilian Portuguese',
|
|
'ro' => 'Romanian',
|
|
'ru' => 'Russian',
|
|
'tr' => 'Turkish',
|
|
'uk' => 'Ukrainian',
|
|
'zh' => 'Chinese (Simplified)',
|
|
);
|