# translations/messages.en.yaml
form.order.ok: 'I want to confirm the order made to %company%'
form.order.ko: 'I want to cancel the order made to %company%'
$builder->add('order', null, [
'choices' => [
'form.order.ok' => true,
'form.order.ko' => false,
],
'choice_translation_parameters' => [
'%company%' => 'ACME Inc.',
],
]);