1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/include/languages.inc
Gabor Hojtsy 3bfc0edefb OK, so the HK code is for the Hong Kong Cantonese type of
chinese (as far as the DSSSL style sheets can tell)
2002-12-28 10:48:02 +00:00

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',
);
?>