You've already forked linux-packaging-mono
Imported Upstream version 4.2.0.179
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
This commit is contained in:
committed by
Jo Shields
parent
aa7da660d6
commit
c042cd0c52
@ -49,10 +49,12 @@ namespace Mono.Tools.LocaleBuilder
|
||||
public string NumberGroupSeparator = ",";
|
||||
public string[] NumberGroupSizes = new string[Constants.GROUP_SIZE];
|
||||
public string NumberNegativePattern;
|
||||
/*
|
||||
public int PercentDecimalDigits;
|
||||
public string PercentDecimalSeparator = ",";
|
||||
public string PercentGroupSeparator = ",";
|
||||
public string[] PercentGroupSizes = new string[Constants.GROUP_SIZE];
|
||||
*/
|
||||
public string PercentNegativePattern;
|
||||
public string PercentPositivePattern;
|
||||
public string PercentSymbol = "%";
|
||||
@ -89,8 +91,6 @@ namespace Mono.Tools.LocaleBuilder
|
||||
|
||||
builder.Append (EncodeStringIdx (CurrencyDecimalSeparator) + ", ");
|
||||
builder.Append (EncodeStringIdx (CurrencyGroupSeparator) + ", ");
|
||||
builder.Append (EncodeStringIdx (PercentDecimalSeparator) + ", ");
|
||||
builder.Append (EncodeStringIdx (PercentGroupSeparator) + ", ");
|
||||
builder.Append (EncodeStringIdx (NumberDecimalSeparator) + ", ");
|
||||
builder.Append (EncodeStringIdx (NumberGroupSeparator) + ", ");
|
||||
|
||||
@ -111,13 +111,10 @@ namespace Mono.Tools.LocaleBuilder
|
||||
builder.Append (NumberNegativePattern + ", ");
|
||||
|
||||
builder.Append (CurrencyDecimalDigits + ", ");
|
||||
builder.Append (PercentDecimalDigits + ", ");
|
||||
builder.Append (NumberDecimalDigits + ", ");
|
||||
|
||||
AppendGroupSizes (builder, CurrencyGroupSizes);
|
||||
builder.Append (", ");
|
||||
AppendGroupSizes (builder, PercentGroupSizes);
|
||||
builder.Append (", ");
|
||||
AppendGroupSizes (builder, NumberGroupSizes);
|
||||
|
||||
builder.Append ('}');
|
||||
|
Reference in New Issue
Block a user