Skip to content

Commit

Permalink
Merge pull request #11535 from mattwire/CRM-21669_emailsendnow_wording
Browse files Browse the repository at this point in the history
CRM-21669 Consistent wording of Email - Send Now task
  • Loading branch information
eileenmcnaughton authored Jan 17, 2018
2 parents c728dfc + 21d0164 commit 543414a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CRM/Activity/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ public static function &tasks() {
'result' => FALSE,
),
5 => array(
'title' => ts('Email - send now'),
'title' => ts('Email - send now (to %1 or less)', array(
1 => Civi::settings()
->get('simple_mail_limit'),
)),
'class' => array(
'CRM_Activity_Form_Task_PickOption',
'CRM_Activity_Form_Task_Email',
Expand Down
5 changes: 4 additions & 1 deletion CRM/Contribute/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ public static function tasks() {
'result' => TRUE,
),
5 => array(
'title' => ts('Email - send now'),
'title' => ts('Email - send now (to %1 or less)', array(
1 => Civi::settings()
->get('simple_mail_limit'),
)),
'class' => 'CRM_Contribute_Form_Task_Email',
'result' => TRUE,
),
Expand Down
5 changes: 4 additions & 1 deletion CRM/Event/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ public static function &tasks() {
'result' => FALSE,
),
6 => array(
'title' => ts('Email - send now'),
'title' => ts('Email - send now (to %1 or less)', array(
1 => Civi::settings()
->get('simple_mail_limit'),
)),
'class' => 'CRM_Event_Form_Task_Email',
'result' => TRUE,
),
Expand Down
5 changes: 4 additions & 1 deletion CRM/Member/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ public static function &tasks() {
'result' => FALSE,
),
4 => array(
'title' => ts('Email - send now'),
'title' => ts('Email - send now (to %1 or less)', array(
1 => Civi::settings()
->get('simple_mail_limit'),
)),
'class' => 'CRM_Member_Form_Task_Email',
'result' => TRUE,
),
Expand Down

0 comments on commit 543414a

Please sign in to comment.