I'm trying to localize my Silverlight 3.0 app to Simplified Chinese.
However, when I attempt to switch to that culture (zh-Hans, according to http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo%28VS.95%29.aspx) with this code:
var currentCulture = new CultureInfo("zh-Hans");
Thread.CurrentThread.CurrentCulture = currentCulture;
Thread.CurrentThread.CurrentUICulture = currentCulture;
I get the following exception:
Culture name 'zh-Hans' is not supported.
I'm using Windows XP SP3 on an en-GB machine.
Is this a problem with Silverlight 3? Or do I need to install some extra Windows XP language packs?
Thanks