June 8 2016 Copy review

This commit is contained in:
Kiefer Covia
2016-06-08 17:02:50 +02:00
parent a355228b93
commit 08e6430c7d
25 changed files with 62 additions and 62 deletions

View File

@ -10,10 +10,10 @@ class NewsletterTemplate extends Model {
parent::__construct();
$this->addValidations('name', array(
'required' => __('You need to specify a name.')
'required' => __('Please specify a name.')
));
$this->addValidations('body', array(
'required' => __('Template body cannot be empty.')
'required' => __('The template body cannot be empty.')
));
}