Extended translation support

Added possibility to translate 'Options' field label in comment CMS fields. 
Fixed Name field label trying to get non-existent 'AuthorName' field label (see line 193).
This commit is contained in:
Janne Klouman 2016-06-10 16:04:03 +02:00 committed by GitHub
parent 6822ecd669
commit 821a6dc383
1 changed files with 2 additions and 2 deletions

View File

@ -576,7 +576,7 @@ class Comment extends DataObject
->obj('Created')
->scaffoldFormField($this->fieldLabel('Created'))
->performReadonlyTransformation(),
TextField::create('Name', $this->fieldLabel('AuthorName')),
TextField::create('Name', $this->fieldLabel('Name')),
$commentField::create('Comment', $this->fieldLabel('Comment')),
EmailField::create('Email', $this->fieldLabel('Email')),
TextField::create('URL', $this->fieldLabel('URL')),
@ -584,7 +584,7 @@ class Comment extends DataObject
CheckboxField::create('Moderated', $this->fieldLabel('Moderated')),
CheckboxField::create('IsSpam', $this->fieldLabel('IsSpam')),
))
->setTitle('Options')
->setTitle(_t('Comment.OPTIONS', 'Options'))
->setDescription(_t(
'Comment.OPTION_DESCRIPTION',
'Unmoderated and spam comments will not be displayed until approved'