Skip to content

Commit

Permalink
Merge pull request #18 from Tirael/master
Browse files Browse the repository at this point in the history
Added temperature localization
Fix #15
  • Loading branch information
angularsen committed Nov 19, 2013
2 parents f158efb + 9e8126b commit 101e243
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Src/UnitsNet/UnitSystem.cs
Expand Up @@ -274,6 +274,16 @@ private void CreateRussian()
// RotationalSpeed
MapUnitToAbbreviation(Unit.RevolutionPerSecond, "об/с");
MapUnitToAbbreviation(Unit.RevolutionPerMinute, "об/мин");

// Temperature
MapUnitToAbbreviation(Unit.Kelvin, "K");
MapUnitToAbbreviation(Unit.DegreeCelsius, "°C");
MapUnitToAbbreviation(Unit.DegreeDelisle, "°De");
MapUnitToAbbreviation(Unit.DegreeFahrenheit, "°F");
MapUnitToAbbreviation(Unit.DegreeNewton, "°N");
MapUnitToAbbreviation(Unit.DegreeRankine, "°R");
MapUnitToAbbreviation(Unit.DegreeReaumur, "°Ré");
MapUnitToAbbreviation(Unit.DegreeRoemer, "°Rø");
}

private void CreateCultureInvariants()
Expand Down

0 comments on commit 101e243

Please sign in to comment.