I\'m using a class form in Symfony2 Beta3 as follows:
namespace Partners\\FrontendBundle\\Form; use Symfony\\Component\\Form\\AbstractType; use Symfony\\Com
In symfony 2.7, using the choice_label argument, you can specify the translation domain like this:
'choice_label' => 'typeName', 'choice_translation_domain' => 'messages',
Without specifying the domain, options are not translated.