mirror of
https://github.com/php/web-php.git
synced 2026-03-24 07:12:16 +01:00
38 lines
955 B
PHP
38 lines
955 B
PHP
<?php
|
|
|
|
/*
|
|
This is a list of all manual languages hosted
|
|
on a full PHP.net mirror site
|
|
|
|
Some codes, like "ko" and "tw" are not in conformance
|
|
with the official language code standard!
|
|
|
|
http://www.unicode.org/unicode/onlinedat/languages.html
|
|
*/
|
|
$LANGUAGES = array(
|
|
'en' => 'English',
|
|
'ar' => 'Arabic',
|
|
'pt_BR' => 'Brazilian Portuguese',
|
|
'zh' => 'Chinese (Continental)',
|
|
'hk' => 'Chinese (Hong Kong Cantonese)',
|
|
'tw' => 'Chinese (Traditional)',
|
|
'cs' => 'Czech',
|
|
'nl' => 'Dutch',
|
|
'fi' => 'Finnish',
|
|
'fr' => 'French',
|
|
'de' => 'German',
|
|
'he' => 'Hebrew',
|
|
'hu' => 'Hungarian',
|
|
'it' => 'Italian',
|
|
'ja' => 'Japanese',
|
|
'kr' => 'Korean',
|
|
'pl' => 'Polish',
|
|
'ro' => 'Romanian',
|
|
'ru' => 'Russian',
|
|
'sk' => 'Slovak',
|
|
'sl' => 'Slovenian',
|
|
'es' => 'Spanish',
|
|
'sv' => 'Swedish',
|
|
'tr' => 'Turkish',
|
|
);
|
|
?>
|