mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Merge pull request #53 from nventive/dev/pako/pressure-missing-value
Removed uneeded spaces in localization key for mercury pressures
This commit is contained in:
commit
e35a526aa8
1 changed files with 4 additions and 3 deletions
|
@ -1051,9 +1051,10 @@ namespace CalculatorApp.ViewModel
|
|||
GetLocalizedStringName("UnitName_KiloPascal"),
|
||||
GetLocalizedStringName("UnitAbbreviation_KiloPascal"),
|
||||
3));
|
||||
pressureUnits.PushBack(new OrderedUnit(UnitConverterUnits.Pressure_MillimeterOfMercury,
|
||||
GetLocalizedStringName("UnitName_MillimeterOfMercury "),
|
||||
GetLocalizedStringName("UnitAbbreviation_MillimeterOfMercury "),
|
||||
pressureUnits.PushBack(new OrderedUnit(
|
||||
UnitConverterUnits.Pressure_MillimeterOfMercury,
|
||||
GetLocalizedStringName("UnitName_MillimeterOfMercury"),
|
||||
GetLocalizedStringName("UnitAbbreviation_MillimeterOfMercury"),
|
||||
4));
|
||||
pressureUnits.PushBack(
|
||||
new OrderedUnit(UnitConverterUnits.Pressure_Pascal, GetLocalizedStringName("UnitName_Pascal"), GetLocalizedStringName("UnitAbbreviation_Pascal"), 5));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue