Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.22.202
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
symfony /
translation /
Delete
Unzip
Name
Size
Permission
Date
Action
Catalogue
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Command
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
DataCollector
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
DependencyInjection
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Dumper
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Exception
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Extractor
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Formatter
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Loader
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Reader
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Resources
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Tests
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Util
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
Writer
[ DIR ]
drwxr-xr-x
2018-11-27 09:00
.gitignore
34
B
-rw-r--r--
2018-11-27 09:00
CHANGELOG.md
4.32
KB
-rw-r--r--
2018-11-27 09:00
DataCollectorTranslator.php
5.22
KB
-rw-r--r--
2018-11-27 09:00
IdentityTranslator.php
1.9
KB
-rw-r--r--
2018-11-27 09:00
Interval.php
3
KB
-rw-r--r--
2018-11-27 09:00
LICENSE
1.04
KB
-rw-r--r--
2018-11-27 09:00
LoggingTranslator.php
4.5
KB
-rw-r--r--
2018-11-27 09:00
MessageCatalogue.php
8.05
KB
-rw-r--r--
2018-11-27 09:00
MessageCatalogueInterface.php
3.6
KB
-rw-r--r--
2018-11-27 09:00
MessageSelector.php
3.58
KB
-rw-r--r--
2018-11-27 09:00
MetadataAwareInterface.php
1.51
KB
-rw-r--r--
2018-11-27 09:00
PluralizationRules.php
6.37
KB
-rw-r--r--
2018-11-27 09:00
README.md
516
B
-rw-r--r--
2018-11-27 09:00
Translator.php
14.73
KB
-rw-r--r--
2018-11-27 09:00
TranslatorBagInterface.php
802
B
-rw-r--r--
2018-11-27 09:00
TranslatorInterface.php
2.31
KB
-rw-r--r--
2018-11-27 09:00
composer.json
1.5
KB
-rw-r--r--
2018-11-27 09:00
phpunit.xml.dist
838
B
-rw-r--r--
2018-11-27 09:00
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * 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 <fabien@symfony.com> * @author Bernhard Schussek <bschussek@gmail.com> * * @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 = array(); if (preg_match('/^\|++$/', $message)) { $parts = explode('|', $message); } elseif (preg_match_all('/(?:\|\||[^\|])++/', $message, $matches)) { $parts = $matches[0]; } $explicitRules = array(); $standardRules = array(); foreach ($parts as $part) { $part = trim(str_replace('||', '|', $part)); if (preg_match('/^(?P<interval>'.Interval::getIntervalRegexp().')\s*(?P<message>.*?)$/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]; } }