public function TranslatorInterface::transChoice in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/TranslatorInterface.php \Symfony\Component\Translation\TranslatorInterface::transChoice()
Translates the given choice message by choosing a translation according to a number.
Parameters
string $id The message id (may also be an object that can be cast to string):
int $number The number to use to find the indice of the message:
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
6 methods override TranslatorInterface::transChoice()
- DataCollectorTranslator::transChoice in vendor/
symfony/ translation/ DataCollectorTranslator.php - Translates the given choice message by choosing a translation according to a number.
- DefaultTranslator::transChoice in vendor/
symfony/ validator/ DefaultTranslator.php - Interpolates the given choice message by choosing a variant according to a number.
- DrupalTranslator::transChoice in core/
lib/ Drupal/ Core/ Validation/ DrupalTranslator.php - Translates the given choice message by choosing a translation according to a number.
- IdentityTranslator::transChoice in vendor/
symfony/ translation/ IdentityTranslator.php - Translates the given choice message by choosing a translation according to a number.
- LoggingTranslator::transChoice in vendor/
symfony/ translation/ LoggingTranslator.php - Translates the given choice message by choosing a translation according to a number.
File
- vendor/
symfony/ translation/ TranslatorInterface.php, line 48
Class
- TranslatorInterface
- TranslatorInterface.
Namespace
Symfony\Component\TranslationCode
public function transChoice($id, $number, array $parameters = array(), $domain = null, $locale = null);