[Mono-bugs] [Bug 74701][Nor] New - Korean DateTimeFormatInfo needs to be fixed.

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sat, 23 Apr 2005 05:16:24 -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 perky@freebsd.org.

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

--- shadow/74701	2005-04-23 05:16:24.000000000 -0400
+++ shadow/74701.tmp.7875	2005-04-23 05:16:24.000000000 -0400
@@ -0,0 +1,48 @@
+Bug#: 74701
+Product: Mono: Runtime
+Version: 1.1
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: perky@FreeBSD.org               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Summary: Korean DateTimeFormatInfo needs to be fixed.
+
+Description of Problem:
+
+DateTimeFormatInfo for ko_KR in mono is somewhat incorrect and unreadable
+due to wrong short time format in culture info catalogue.
+
+
+Steps to reproduce the problem:
+
+using System;
+
+class Date
+{
+  static void Main()
+    {
+      DateTime now = DateTime.Now;
+      string short_time = now.ToShortTimeString();
+      Console.WriteLine("[{0}]", short_time);
+    }
+}
+
+Actual Results:
+[오 5:00]
+
+
+Expected Results:
+[오후 5:00]
+
+
+Additional Information:
+
+Fix is attached.