[Mono-bugs] [Bug 81061][Min] New - ko-KR Culture name is not supported

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Tue Mar 6 18:06:47 EST 2007


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 lucgallant at gmail.com.

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

--- shadow/81061	2007-03-06 18:06:47.000000000 -0500
+++ shadow/81061.tmp.1615	2007-03-06 18:06:47.000000000 -0500
@@ -0,0 +1,67 @@
+Bug#: 81061
+Product: Mono: Class Libraries
+Version: 1.2
+OS: GNU/Linux [Other]
+OS Details: The openSUSE Mono develop OS
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: System
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: lucgallant at gmail.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: ko-KR Culture name is not supported
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem: Culture name ko-KR is not supported.
+
+
+// project created on 3/6/2007 at 4:14 PM
+using System;
+using System.Globalization;
+
+namespace testing
+{
+	class MainClass
+	{
+		public static void Main(string[] args)
+		{
+			foreach(CultureInfo ci in
+CultureInfo.GetCultures(CultureTypes.SpecificCultures)) {
+			Console.Write(ci.Name+",");
+			}
+			System.Threading.Thread.CurrentThread.CurrentCulture =
+System.Globalization.CultureInfo.CreateSpecificCulture("ko-KR");
+		}
+	}
+}
+
+
+Actual Results:
+Unhandled Exception: System.ArgumentException: Culture name ko-KR is not
+supported.
+Parameter name: ko-KR
+  at System.Globalization.CultureInfo.CreateSpecificCulture (System.String
+name) [0x00057] in
+/tmp/scratch/BUILD/mono-1.2.3/mcs/class/corlib/System.Globalization/CultureInfo.cs:129
+
+  at testing.MainClass.Main (System.String[] args) [0x00036] in
+/home/mono/testing/testing/Main.cs:14 
+ar-SA,bg-BG,ca-ES,zh-TW,cs-CZ,da-DK,de-DE,el-GR,en-US,fi-FI,fr-FR,he-IL,hu-HU,is-IS,it-IT,ja-JP,ko-KR,nl-NL,nb-NO,pl-PL,pt-BR,ro-RO,ru-RU,hr-HR,sk-SK,sq-AL,sv-SE,th-TH,tr-TR,id-ID,uk-UA,be-BY,sl-SI,et-EE,lv-LV,lt-LT,fa-IR,vi-VN,hy-AM,eu-ES,mk-MK,af-ZA,fo-FO,hi-IN,sw-KE,gu-IN,ta-IN,te-IN,kn-IN,mr-IN,gl-ES,kok-IN,ar-IQ,zh-CN,de-CH,en-GB,es-MX,fr-BE,it-CH,nl-BE,nn-NO,pt-PT,sv-FI,ar-EG,zh-HK,de-AT,en-AU,es-ES,fr-CA,ar-LY,zh-SG,de-LU,en-CA,es-GT,fr-CH,ar-DZ,zh-MO,en-NZ,es-CR,fr-LU,ar-MA,en-IE,es-PA,ar-TN,en-ZA,es-DO,ar-OM,es-VE,ar-YE,es-CO,ar-SY,es-PE,ar-JO,es-AR,ar-LB,en-ZW,es-EC,ar-KW,en-PH,es-CL,ar-AE,es-UY,ar-BH,es-PY,ar-QA,es-BO,es-SV,es-HN,es-NI,es-PR,
+
+
+Expected Results:
+We would expect the korean name to be supported
+
+How often does this happen? 
+All the time.
+
+Additional Information:
+There was a similar bug: http://bugzilla.ximian.com/show_bug.cgi?id=69652
+Although for this bug the name wasn't in the long list printed above, in
+this case ko-KR actually IS in the list.


More information about the mono-bugs mailing list