**Description** Based on this PR: https://github.com/symfony/symfony/pull/28635 I am trying to do the following: ``` ->add('confirmedAgb', CheckboxType::class, [ 'label' => 'some.label', 'label_translation_parameters' => [ '%start_link%' => '<a href="https://www.de" target="_blank">', '%end_link' => '</a>' ], ]) ``` but the result is `<a href="https://www.de" target="_blank"> link </a> here` This function is great but it's missing this important piece. Thanks.