【发布时间】:2016-07-26 07:15:28
【问题描述】:
我正在尝试翻译Tab 和TextField,但目前没有翻译。当前设置如下:
语言环境设置为_config.php - 我已刷新。
i18n::set_locale('de_DE');
mysite/lang/de.yml
de:
Page:
FULLNAME: 'Testing this'
CONTACTDETAILS: 'Root.Trying to change to this text'
Page.php
<?php
class Page extends SiteTree {
private static $db = array(
'FullName' => 'Varchar(255)'
);
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->addFieldsToTab(_t('Page.CONTACTDETAILS', 'Root.ContactDetails'), array(
TextField::create('FullName', _t('Page.FULLNAME', 'Full Name'))
));
return $fields;
}
}
但是文本没有被翻译,它只是用英文显示。我做错了什么?
【问题讨论】:
标签: silverstripe