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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=81150 --- shadow/81150 2007-03-15 12:22:10.000000000 -0500 +++ shadow/81150.tmp.31226 2007-03-15 12:22:10.000000000 -0500 @@ -0,0 +1,82 @@ +Bug#: 81150 +Product: Mono: Class Libraries +Version: 1.2 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: System +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: DateTime does not work correctly for Korean locale + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: + +DateTime does not show Korean date format in Korean locale. It just works +such as in the English locale. + +IIRC this worked correctly before. + + +Steps to reproduce the problem: +1. compile & run this program in Korean locale: + +using System; + +class Date +{ + static void Main() + { + DateTime now = DateTime.Now; + string str = now.ToLongDateString(); + Console.WriteLine("[{0}]", str); + } +} + +Actual Results: + +$ mono --version +Mono JIT compiler version 1.2.2.1, (C) 2002-2006 Novell, Inc and +Contributors. www.mono-project.com + TLS: normal + GC: Included Boehm (with typed GC) + SIGSEGV: normal + Disabled: none +$ echo $LANG +ko_KR.UTF-8 +$ ./mono-date.exe +[Friday, 16 March 2007] + + +Expected Results: + +[2007년 3월 16일] + +(or something like this) + +How often does this happen? + +Always. + +Additional Information: + +When I run this program in *invalid* "ko" locale, it tries to show something :) + +$ LANG=ko ./mono-date.exe +perl: warning: Setting locale failed. +perl: warning: Please check that your locale settings: + LANGUAGE = (unset), + LC_ALL = (unset), + LANG = "ko" + are supported and installed on your system. +perl: warning: Falling back to the standard locale ("C"). +[2007? 3? 16?] +$ _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
