Skip to content

Commit c7cbc97

Browse files
committed
remove ambiguities in pounds per gallon abbreviations
1 parent b7da253 commit c7cbc97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

UnitsNet/GeneratedCode/UnitSystem.Default.g.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,12 +800,12 @@ private static readonly ReadOnlyCollection<UnitLocalization> DefaultLocalization
800800
new CulturesForEnumValue((int) DensityUnit.PoundPerImperialGallon,
801801
new[]
802802
{
803-
new AbbreviationsForCulture("en-US", "ppg"),
803+
new AbbreviationsForCulture("en-US", "ppg (imp.)"),
804804
}),
805805
new CulturesForEnumValue((int) DensityUnit.PoundPerUSGallon,
806806
new[]
807807
{
808-
new AbbreviationsForCulture("en-US", "ppg"),
808+
new AbbreviationsForCulture("en-US", "ppg (U.S.)"),
809809
}),
810810
new CulturesForEnumValue((int) DensityUnit.SlugPerCubicFoot,
811811
new[]

UnitsNet/UnitDefinitions/Density.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"Localization": [
171171
{
172172
"Culture": "en-US",
173-
"Abbreviations": [ "ppg" ]
173+
"Abbreviations": [ "ppg (U.S.)" ]
174174
}
175175
]
176176
},
@@ -182,7 +182,7 @@
182182
"Localization": [
183183
{
184184
"Culture": "en-US",
185-
"Abbreviations": [ "ppg" ]
185+
"Abbreviations": [ "ppg (imp.)" ]
186186
}
187187
]
188188
}

0 commit comments

Comments
 (0)