diff --git a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php index 691cdb6788..bcc119fee8 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php @@ -63,11 +63,13 @@ class ChoiceType extends AbstractType // The user can check 0 or more checkboxes. If required // is true, he is required to check all of them. 'required' => false, + 'translation_domain' => $options['translation_domain'], )); } else { $builder->add((string) $choice, 'radio', array( 'value' => $choice, 'label' => $value, + 'translation_domain' => $options['translation_domain'], )); } }