You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Fatal error: Uncaught Twig\Error\SyntaxError: Unknown "__" function in "embed.html.twig" at line 2. in /*/vendor/twig/twig/src/ExpressionParser.php:762
Do I need to add something to twig?
My code is:
use Gettext\Scanner\TwigScanner;
use Gettext\Translations;
use Gettext\Generator\PoGenerator;
$twigScanner = new TwigScanner( Translations::create('pl'));
$twigScanner->setDefaultDomain('pl');
$twigScanner->extractCommentsStartingWith('i18n:', 'Translators:');
$twigScanner->ignoreInvalidFunctions(true);
$twigScanner->scanFile('embed.html.twig');
$generator = new PoGenerator();
foreach ($twigScanner->getTranslations() as $domain => $translations) {
$generator->generateFile($translations, "{$domain}_twig.po");
}
The text was updated successfully, but these errors were encountered:
Got error while scanning twig file:
PHP Fatal error: Uncaught Twig\Error\SyntaxError: Unknown "__" function in "embed.html.twig" at line 2. in /*/vendor/twig/twig/src/ExpressionParser.php:762
Do I need to add something to twig?
My code is:
The text was updated successfully, but these errors were encountered: