翻译Zend表单标签

时间:2014-09-20 08:27:39

标签: php zend-framework localization translation

我无法在Zend中获得标签翻译工作。我仍然可以在视图中翻译字符串。

在module.config.php文件中,我有以下内容:

'service_manager' => array(
    'factories' => array(
        'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
),
'translator' => array(
    'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type' => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern' => '%s.mo',
            ),
        ),
),

在Module.php文件中,我询问用户来自数据库并将其设置为语言var:

$langTableGateway = new \Zend\Db\TableGateway\TableGateway('users', $dbAdapter);
$this->select = new Select();
$this->select->from('users')
             ->where(array('id' => $userdata['user_id']));
$resultSet = $langTableGateway->selectWith($this->select);
$row = $resultSet->current();        
$user_lang = $row->language;
$e->getViewModel()->setVariable('user_lang', $user_lang);

在控制器中我有以下内容:

    public function indexAction() {

            $loc = $this->getServiceLocator();
            $translator = $loc->get('translator');
            $loc->get('ViewHelperManager')->get('translate')
                                          ->setTranslator($translator);
...

使用$this->translate('data');

成功翻译视图中的字符串

我如何更改表单文件以便标签也被翻译?现在我有:

class ItemsForm extends Form {

    public $itemsTable;
    public $list;

    public function __construct($name = null) {

        // we want to ignore the name passed
        parent::__construct('items');


        $this->setAttribute('method', 'post')
                ->setAttribute('enctype', 'multipart/form-data');

        $this->add(array(
            'name' => 'id',
            'attributes' => array(
                'type' => 'hidden',
            ),
        ));

        $this->add(array(
            'name' => 'target',
            'attributes' => array(
                'type' => 'hidden',
            ),
        ));


        $this->add(array(
            'name' => 'title',
            'attributes' => array(
                'type' => 'text',
                'id' => 'title',
                'class' => 'span12',
            ),
            'options' => array(
                'label' => _('Item title'),
            ),
        ));

奇怪的是,如果我手动更改" module.config.php"文件区域设置为' fi_FI'形式翻译工作。所以我认为问题是在" Module.php"中设置用户语言。或者在控制器文件中不会影响表单。

0 个答案:

没有答案