2007-09-05 Marek Safar <marek.safar@gmail.com>
[mono.git] / tools / locale-builder / NumberFormatEntry.cs
index 2d72028771a49812f98a1e3bd0d92a96b31d81ed..5c74fcfcd5ac5e64d7c9eaf9a61c3bae779073a1 100644 (file)
@@ -54,22 +54,22 @@ namespace Mono.Tools.LocaleBuilder {
                 {
                         builder.Append ("\t{");
 
-                        builder.Append ("\"" + EncodeString (CurrencyDecimalSeparator) + "\", ");
-                        builder.Append ("\"" + EncodeString (CurrencyGroupSeparator) + "\", ");
-                        builder.Append ("\"" + EncodeString (PercentDecimalSeparator) + "\", ");
-                        builder.Append ("\"" + EncodeString (PercentGroupSeparator) + "\", ");
-                        builder.Append ("\"" + EncodeString (NumberDecimalSeparator) + "\", ");
-                        builder.Append ("\"" + EncodeString (NumberGroupSeparator) + "\", ");
-
-                        builder.Append ("\"" + EncodeString (CurrencySymbol) + "\", ");
-                        builder.Append ("\"" + EncodeString (PercentSymbol) + "\", ");
-                        builder.Append ("\"" + EncodeString (NaNSymbol) + "\", ");
-                        builder.Append ("\"" + EncodeString (PerMilleSymbol) + "\", ");
-                        builder.Append ("\"" + EncodeString (NegativeInfinitySymbol) + "\", ");
-                        builder.Append ("\"" + EncodeString (PositiveInfinitySymbol) + "\", ");
-
-                        builder.Append ("\"" + EncodeString (NegativeSign) + "\", ");
-                        builder.Append ("\"" + EncodeString (PositiveSign) + "\", ");
+                        builder.Append (EncodeStringIdx (CurrencyDecimalSeparator) + ", ");
+                        builder.Append (EncodeStringIdx (CurrencyGroupSeparator) + ", ");
+                        builder.Append (EncodeStringIdx (PercentDecimalSeparator) + ", ");
+                        builder.Append (EncodeStringIdx (PercentGroupSeparator) + ", ");
+                        builder.Append (EncodeStringIdx (NumberDecimalSeparator) + ", ");
+                        builder.Append (EncodeStringIdx (NumberGroupSeparator) + ", ");
+
+                        builder.Append (EncodeStringIdx (CurrencySymbol) + ", ");
+                        builder.Append (EncodeStringIdx (PercentSymbol) + ", ");
+                        builder.Append (EncodeStringIdx (NaNSymbol) + ", ");
+                        builder.Append (EncodeStringIdx (PerMilleSymbol) + ", ");
+                        builder.Append (EncodeStringIdx (NegativeInfinitySymbol) + ", ");
+                        builder.Append (EncodeStringIdx (PositiveInfinitySymbol) + ", ");
+
+                        builder.Append (EncodeStringIdx (NegativeSign) + ", ");
+                        builder.Append (EncodeStringIdx (PositiveSign) + ", ");
 
                         builder.Append (CurrencyNegativePattern + ", ");
                         builder.Append (CurrencyPositivePattern + ", ");