|
OK,I find a method to resolve this problem.
In LocalizationHelper.cs:
//var language = culture.TwoLetterISOLanguageName;
var language = culture.Name;
Use the culture.Name to replace culture.TwoLetterISOLanguageName. It works,but you must change the name of the "Data.zh.xml" to "Data.zh-CN.xml" or "Data.zh-TW.xml".
Thanks.I think you can use this method to adapt more demands. 8-)
|