我没有得到它 !..可以请人讲解,如何表单标签翻译? 一个简单的例子将是巨大的。
先感谢您!
类搜索\表格\ CourseSearchForm
...
class CourseSearchForm extends Form {
...
public function __construct(array $cities) {
parent::__construct('courseSearch');
...
$this->add(array(
'name' => 'city',
'type' => 'Zend\Form\Element\Select',
'options' => array(
'label' => 'Stadt',
'value_options' => $this->cities,
'id' => 'searchFormCity',
),
));
...
}
}
视图脚本/module/Search/view/search/search/search-form.phtml
<?php echo $this->form()->openTag($form); ?>
<dl>
...
<dt><label><?php echo $form->get('city')->getLabel(); ?></label></dt>
<dd><?php echo $this->formRow($form->get('city'), null, false, false); ?></dd>
...
</dl>
<?php echo $this->form()->closeTag(); ?>
<!-- The formRow(...) is my MyNamespace\Form\View\Helper (extends Zend\Form\View\Helper\FormRow); the fourth argument of it disables the label. -->
的module/Application/config/module.config.php
被配置:
return array(
'router' => ...
'service_manager' => array(
'factories' => array(
'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
),
),
'translator' => array(
'locale' => 'de_DE',
'translation_file_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
),
'controllers' => ...
'view_manager' => ...
);
我还编辑我的看法和使用FormLabel
视图助手:
<dt><label><?php echo $this->formLabel($form->get('city')); ?></label></dt>
此外,我调试的FormLabel
的地方,在那里使用tranlator(线116-120 ) -似乎是确定。
但它仍然没有工作。
编辑
的(试验)项的标签,我加入到de_DE.po
文件手动,被tranlated。 该ZF2端问题实际上,我是用$form->get('city')->getLabel()
代替$this->formlabel($form->get('city'))
在日视图脚本。
问题是现在,该标签不添加到de_DE.po
文件。 但它不是一个问题ZF2了,所以我接受鲁本的答案,并打开一个新的poEdit的问题。