why doesn't the Zend_Locale honor abbreviated formats like zh_HK or zh_CN
问题 I have the following piece of code and am trying to do something simple with the Zend framework and Zend_Locale() $supported_langs = array( 'en' => 'English', 'zh_CN' => '中文(简体)', 'zh_HK' => '中國(傳統)', 'es' => 'Español', 'ja' => '日本', 'pt' => 'Português', 'de' => 'Deutsch', 'ar' => 'العربية', 'fr' => 'Française', 'ru' => 'Pусский', 'ko' => '한국의', 'hi' => 'हिन्दी', 'vi' => 'Việt' ); echo '<pre>'; foreach ($supported_langs as $lang => $desc) { print Zend_Locale::getTranslation($lang, 'language',