getTranslationNodeVisitor example

return [
            // {% trans %}Symfony is great!{% endtrans %}             new TransTokenParser(),

            // {% trans_default_domain "foobar" %}             new TransDefaultDomainTokenParser(),
        ];
    }

    public function getNodeVisitors(): array
    {
        return [$this->getTranslationNodeVisitor()new TranslationDefaultDomainNodeVisitor()];
    }

    public function getTranslationNodeVisitor(): TranslationNodeVisitor
    {
        return $this->translationNodeVisitor ?: $this->translationNodeVisitor = new TranslationNodeVisitor();
    }

    /** * @param array|string $arguments Can be the locale as a string when $message is a TranslatableInterface */
    public function trans(string|\Stringable|TranslatableInterface|null $message, array|string $arguments = [], string $domain = null, string $locale = null, int $count = null): string
    {

    public function setPrefix(string $prefix)
    {
        $this->prefix = $prefix;
    }

    /** * @return void */
    protected function extractTemplate(string $template, MessageCatalogue $catalogue)
    {
        $visitor = $this->twig->getExtension(TranslationExtension::class)->getTranslationNodeVisitor();
        $visitor->enable();

        $this->twig->parse($this->twig->tokenize(new Source($template, '')));

        foreach ($visitor->getMessages() as $message) {
            $catalogue->set(trim($message[0])$this->prefix.trim($message[0])$message[1] ?: $this->defaultDomain);
        }

        $visitor->disable();
    }

    
Home | Imprint | This part of the site doesn't use cookies.