私はそれを得ていません! ..誰かがフォームラベルを翻訳する方法を説明してもらえますか? 簡単な例は素晴らしいでしょう。
前もって感謝します!
クラス検索\フォーム\コース検索フォーム
...
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
、翻訳者が使用されている場所 (行116-120 ) でデバッグしましたが、問題ないようです。
しかし、それはまだ機能していません。
編集
de_DE.po
手動でファイルに追加したラベルの (テスト) アイテムが翻訳されます。ZF2 側の問題は、実際にはビュー スクリプト$form->get('city')->getLabel()
の代わりに使用していたものでした。$this->formlabel($form->get('city'))
問題は、ラベルがde_DE.po
ファイルに追加されていないことです。しかし、これはもう ZF2 の問題ではないので、Ruben の回答を受け入れて、新しい Poedit の質問を開きました。