/**
  * Translates the given choice message by choosing a translation according to a number.
  *
  * @param string $id         The message id
  * @param int    $number     The number to use to find the indice of the message
  * @param array  $parameters An array of parameters for the message
  * @param string $domain     The domain for the message
  * @param string $locale     The locale
  *
  * @return string The translated string
  */
 public function transChoice($id, $number, array $parameters = array(), $domain = 'messages', $locale = null)
 {
     return $this->application->transChoice($id, $number, $parameters, $domain, $locale);
 }