I am showing timedate select box by this code
public function configureFormFields(FormMapper $formMapper)
{
$formMapper
->with('General')
->add('toDate',null,array(
'widget' => 'choice');
however it uses english name for month label,such as Jan,Feb,Mar...
I want to use number instead of english label.
How can I do?