One Hat Cyber Team
Your IP :
3.141.46.189
Server IP :
104.21.64.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
db.gftag.com
/
libraries
/
classes
/
Twig
/
Edit File:
I18nExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Twig\Extensions\I18nExtension as TwigI18nExtension; use PhpMyAdmin\Twig\Extensions\Node\TransNode; use Twig\TwigFilter; class I18nExtension extends TwigI18nExtension { public function __construct() { TransNode::$notesLabel = '// l10n: '; TransNode::$enableMoTranslator = true; } /** * Returns a list of filters to add to the existing list. * * @return TwigFilter[] */ public function getFilters() { return [ // This is just a performance override new TwigFilter('trans', '_gettext'), ]; } }
Simpan