converted text domain to string instead of constant

This commit is contained in:
Jonathan Labreuille
2016-09-30 09:58:26 +02:00
parent 42202f676a
commit 7fbf84db1f
57 changed files with 365 additions and 366 deletions

View File

@@ -131,9 +131,9 @@ class Populator {
if(Segment::where('type', 'default')->count() === 0) {
$default_segment = Segment::create();
$default_segment->hydrate(array(
'name' => __('My First List', MAILPOET),
'name' => __('My First List', 'mailpoet'),
'description' =>
__('This list is automatically created when you install MailPoet', MAILPOET)
__('This list is automatically created when you install MailPoet', 'mailpoet')
));
$default_segment->save();
}