[Mono-bugs] [Bug 63075][Wis] New - mono1.0 don't support "zh-CN" culture

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sat, 14 Aug 2004 01:36:25 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by smallnest@sohu.com.

http://bugzilla.ximian.com/show_bug.cgi?id=63075

--- shadow/63075	2004-08-14 01:36:25.000000000 -0400
+++ shadow/63075.tmp.17035	2004-08-14 01:36:25.000000000 -0400
@@ -0,0 +1,51 @@
+Bug#: 63075
+Product: Mono: Class Libraries
+Version: unspecified
+OS: other
+OS Details: slackware10
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: smallnest@sohu.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mono1.0 don't support "zh-CN" culture
+
+1.  I installed Mono 1.0 in slackware 10 .It was downloaded from go-
+mono.com
+
+2.  I write a Program.
+
+using System;
+using System.Globalization;
+
+public class SamplesCultureInfo  {
+
+   public static void Main()  {
+
+            foreach ( CultureInfo ci in CultureInfo.GetCultures( 
+CultureTypes.SpecificCultures ) )  {
+                   Console.WriteLine("supported culture:" + ci.name);
+                  }
+      }
+
+   }
+
+}
+
+ 
+3. my Linux:LC_ALL="zh_CN.GBK"
+
+4.use mcs to compile it and use mono to run it.
+  In Console it don't show "zh-CN","zh-TW","zh-HK"
+
+5. If I use Portable.net' ilrun to run the program,
+In console it show the "zh_CN"
+
+
+6. Don't Mono 1.0 'CultureInfo support "zh-CN"?