Get human readable name for BuiltInParameterGroup enumeration values

c#, revit, revit-api

Solution

I found this post on the Autodesk forums that shows how to use the `LabelUtils` class.

string humanReadableGroup = 
  LabelUtils.GetLabelFor(BuiltInParameterGroup.PG_MATERIALS);

Problem

Using the Revit API is there a way to get the human readable version of the `BuiltInParameterGroup` enumeration values (Dimensions, Materials and Finishes, etc)?

Original source