* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation; @trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.2, use IdentityTranslator instead.', MessageSelector::class), \E_USER_DEPRECATED); use Symfony\Component\Translation\Exception\InvalidArgumentException; /** * MessageSelector. * * @author Fabien Potencier * @author Bernhard Schussek * * @deprecated since Symfony 4.2, use IdentityTranslator instead. */ class MessageSelector { /** * Given a message with different plural translations separated by a * pipe (|), this method returns the correct portion of the message based * on the given number, locale and the pluralization rules in the message * itself. * * The message supports two different types of pluralization rules: * * interval: {0} There are no apples|{1} There is one apple|]1,Inf] There are %count% apples * indexed: There is one apple|There are %count% apples * * The indexed solution can also contain labels (e.g. one: There is one apple). * This is purely for making the translations more clear - it does not * affect the functionality. * * The two methods can also be mixed: * {0} There are no apples|one: There is one apple|more: There are %count% apples * * @param string $message The message being translated * @param int|float $number The number of items represented for the message * @param string $locale The locale to use for choosing * * @return string * * @throws InvalidArgumentException */ public function choose($message, $number, $locale) { $parts = []; if (preg_match('/^\|++$/', $message)) { $parts = explode('|', $message); } elseif (preg_match_all('/(?:\|\||[^\|])++/', $message, $matches)) { $parts = $matches[0]; } $explicitRules = []; $standardRules = []; foreach ($parts as $part) { $part = trim(str_replace('||', '|', $part)); if (preg_match('/^(?P'.Interval::getIntervalRegexp().')\s*(?P.*?)$/xs', $part, $matches)) { $explicitRules[$matches['interval']] = $matches['message']; } elseif (preg_match('/^\w+\:\s*(.*?)$/', $part, $matches)) { $standardRules[] = $matches[1]; } else { $standardRules[] = $part; } } // try to match an explicit rule, then fallback to the standard ones foreach ($explicitRules as $interval => $m) { if (Interval::test($number, $interval)) { return $m; } } $position = PluralizationRules::get($number, $locale); if (!isset($standardRules[$position])) { // when there's exactly one rule given, and that rule is a standard // rule, use this rule if (1 === \count($parts) && isset($standardRules[0])) { return $standardRules[0]; } throw new InvalidArgumentException(sprintf('Unable to choose a translation for "%s" with locale "%s" for value "%d". Double check that this translation has the correct plural options (e.g. "There is one apple|There are %%count%% apples").', $message, $locale, $number)); } return $standardRules[$position]; } } __halt_compiler();----SIGNATURE:----QFXEYw27JlGawGRZC6R/vROBKFlGc3wcnEvDs2IydDkN68u5s5EGuu4oY7u+oMJXrSe57sEoSLvep+PYDOLfPruYXbKK1sZES/siErqt850isi+uwSsPRMcfhQhGtNx4y/J4H8WYeYEyK+HUPyv1hsCR5g3ixDiOA/v+wx3arM1IKjxglExM4fPHz4+ojfyq+VblM08Db0E9Kp0FcxfLVPShzq71DI7tBIcemRmCS4+NDefHaJXYUjnQ+LwtOWQL9E4HfrVdhge+Fj/IRbxFdF1cAU/5vqtkAkSESGbPCx5dfgaeHWCuUZZEm4GG4uxyH3waOcvNFSsndwSO7MpyDEB1onGV5CXWwSh7bJRdyO2CtITPP98M1mMGyNY+hYSelAQ7y1Nxc1O8CGJ/boWev3ThWg4pOR9xpRl2PGU2FNtSC2m+I3QC6rPcaKRtWOvID3HlsZ00+nANBx2Djy1WEuxbX26G8halmD6zIm281u0LaQwT9n4kZYZHJQzXitf06nNigOTjjnqjh5WMlHBwlnZyRranmOTCzBcxOtv4BlD3HtzKGK3CsPs4nta1qRW7rM/eu6+CAU7SKI62+A5xAigK2eO0RPA3N2Cm4w8wANhtY8DUTUNv0vVdQbn/Yw3BDYAoruD9ZC/yI1WdCA6tZgrj4aTwA2DJv1m+HLXrqcQ=----ATTACHMENT:----NDg0NTMzNjk1MzE5NjI4OCA5MTI0NDI4MTI0NTkyNzcxIDQ5OTM5NDgxNzU5MzM5MTY=