* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Silex\Application; /** * Translation trait. * * @author Fabien Potencier */ trait TranslationTrait { /** * Translates the given message. * * @param string $id The message id * @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 trans($id, array $parameters = [], $domain = 'messages', $locale = null) { return $this['translator']->trans($id, $parameters, $domain, $locale); } /** * 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 = [], $domain = 'messages', $locale = null) { return $this['translator']->transChoice($id, $number, $parameters, $domain, $locale); } }