Метки форм ZF2 не переводятся
Я работаю над приложением ZF2 скелет и добавил модуль "Альбом". Мои ярлыки форм не переведены. Что нужно сделать, чтобы ярлыки формы были многоязычными?
Мой код для form/AlbumForm.php
:
class AlbumForm extends Form
{
public function __construct($name = null)
{
parent::__construct('album');
$this->setAttribute('method', 'post');
$this->add(array(
'name' => 'id',
'attributes' => array(
'type' => 'hidden',
),
));
$this->add(array(
'name' => 'artist',
'attributes' => array(
'type' => 'text',
),
'options' => array(
'label' => 'Artist',
),
));
$this->add(array(
'name' => 'title',
'attributes' => array(
'type' => 'text',
),
'options' => array(
'label' => 'Title',
),
));
$this->add(array(
'name' => 'submit',
'attributes' => array(
'type' => 'submit',
'value' => 'Go',
'id' => 'submitbutton',
),
));
}
}
Мой код для view/edit.phtml
:
$form = $this->form;
$form->setAttribute( 'action', $this->url( 'album', array(
'action' => 'edit',
'id' => $this->id
) ) );
$form->prepare();
echo $this->form()->openTag( $form );
echo $this->formHidden( $form->get( 'id' ) );
echo $this->formRow( $form->get( 'title' ) );
echo $this->formRow( $form->get( 'artist' ) );
echo $this->formSubmit( $form->get( 'submit' ) );
echo $this->form()->closeTag();
РЕДАКТИРОВАНИЕ
var_dump()
$ переводчик ($translator = $this->formLabel()->getTranslator();
) дает следующий вывод:
object(Zend\I18n\Translator\Translator)#159 (8) {
["messages":protected]=>
array(0) {
}
["files":protected]=>
array(0) {
}
["patterns":protected]=>
array(1) {
["default"]=>
array(1) {
[0]=>
array(3) {
["type"]=>
string(7) "gettext"
["baseDir"]=>
string(83) "C:\Users\something\Projects\ZF2\code_new\module\Application\config/../language"
["pattern"]=>
string(5) "%s.mo"
}
}
}
["remote":protected]=>
array(0) {
}
["locale":protected]=>
string(5) "es_ES"
["fallbackLocale":protected]=>
NULL
["cache":protected]=>
NULL
["pluginManager":protected]=>
NULL
}
Как вы можете видеть, локаль "es_ES". мой es_ES.po
содержит переводы для меток (Исполнитель и Название) и показывает их правильно в заголовках страницы списка.
Заранее спасибо за помощь.