1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/include/languages.inc
2003-05-11 21:34:30 +00:00

42 lines
1009 B
C++

<?php // -*- C++ -*-
// $Id$
/*
This is a list of all manual languages hosted
on a full PHP.net mirror site
Some codes, like "kr", "tw" and "hk" 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 (Simplified)',
'hk' => 'Chinese (Hong Kong Cantonese)',
'tw' => 'Chinese (Traditional)',
'cs' => 'Czech',
'nl' => 'Dutch',
'fi' => 'Finnish',
'fr' => 'French',
'de' => 'German',
'el' => 'Greek',
'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',
);
?>