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

@ -17,7 +17,7 @@ class Setting extends Model {
parent::__construct();
$this->addValidations('name', array(
'required' => __('You need to specify a name.')
'required' => __('Please specify a name.')
));
}
@ -41,7 +41,7 @@ class Setting extends Model {
'signup_confirmation' => array(
'enabled' => true,
'subject' => sprintf(__('Confirm your subscription to %1$s'), get_option('blogname')),
'body' => __("Hello!\n\nHurray! You've subscribed to our site.\n\nWe need you to activate your subscription to the list(s): [lists_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nThe team!")
'body' => __("Hello!\n\nHurray! You've subscribed to our site.\n\nPlease confirm your subscription to the list(s): [lists_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nThe team!")
)
);
}