You are here

public function Translator::trans in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/translation/Translator.php \Symfony\Component\Translation\Translator::trans()

Translates the given message.

Parameters

string $id The message id (may also be an object that can be cast to string):

array $parameters An array of parameters for the message:

string|null $domain The domain for the message or null to use the default:

string|null $locale The locale or null to use the default:

Return value

string The translated string

Throws

\InvalidArgumentException If the locale contains invalid characters

Overrides TranslatorInterface::trans

File

vendor/symfony/translation/Translator.php, line 203

Class

Translator
Translator.

Namespace

Symfony\Component\Translation

Code

public function trans($id, array $parameters = array(), $domain = null, $locale = null) {
  if (null === $domain) {
    $domain = 'messages';
  }
  return strtr($this
    ->getCatalogue($locale)
    ->get((string) $id, $domain), $parameters);
}