In my form class(not Base) file generated by:
symfony propel:build-forms
I have:
$this->widgetSchema->setLabel('adres_ulica', 'Ulica');
And in form field has label "Adres Ulica" instead of "Ulica". I try to use:
$this->widgetSchema->setLabels(array(
'adres_ulica' => 'Ulica'));
but it does not work too. What i am doing wrong?