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,7 +10,7 @@ class Segment extends Model {
parent::__construct();
$this->addValidations('name', array(
'required' => __('You need to specify a name.')
'required' => __('Please specify a name.')
));
}
@@ -102,7 +102,7 @@ class Segment extends Model {
$wp_segment->hydrate(array(
'name' => __('WordPress Users'),
'description' =>
__('The list containing all of your WordPress users.'),
__('This lists containts all of your WordPress users.'),
'type' => 'wp_users'
));
$wp_segment->save();
@@ -171,7 +171,7 @@ class Segment extends Model {
'AND relation.status = "' . Subscriber::STATUS_SUBSCRIBED . '" ' .
'GROUP BY segments.id) ' .
'UNION ALL ' .
'(SELECT 0 as id, "' . __('Not In List') . '" as name, COUNT(*) as subscribers ' .
'(SELECT 0 as id, "' . __('Not in a List') . '" as name, COUNT(*) as subscribers ' .
'FROM ' . MP_SUBSCRIBERS_TABLE . ' subscribers ' .
'LEFT JOIN ' . MP_SUBSCRIBER_SEGMENT_TABLE . ' relation on relation.subscriber_id = subscribers.id ' .
(($withConfirmedSubscribers) ?