import { PipeTransform } from 'angular2/core'; /** * * Maps a value to a string that pluralizes the value properly. * * ## Usage * * expression | i18nPlural:mapping * * where `expression` is a number and `mapping` is an object that indicates the proper text for * when the `expression` evaluates to 0, 1, or some other number. You can interpolate the actual * value into the text using the `#` sign. * * ## Example * * ``` *