Skip to content

Commit

Permalink
Merge pull request #14111 from mlutfy/sms-ts
Browse files Browse the repository at this point in the history
Fix ts() usage in CRM_SMS_Form_Schedule
  • Loading branch information
seamuslee001 authored Apr 22, 2019
2 parents c1c1e89 + 3f126e3 commit 33e3381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/SMS/Form/Schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ public function buildQuickform() {
$this->setAttribute('autocomplete', 'off');

$sendOptions = [
$this->createElement('radio', NULL, NULL, 'Send immediately', 'send_immediate', ['id' => 'send_immediate', 'style' => 'margin-bottom: 10px;']),
$this->createElement('radio', NULL, NULL, 'Send at:', 'send_later', ['id' => 'send_later']),
$this->createElement('radio', NULL, NULL, ts('Send immediately'), 'send_immediate', ['id' => 'send_immediate', 'style' => 'margin-bottom: 10px;']),
$this->createElement('radio', NULL, NULL, ts('Send at:'), 'send_later', ['id' => 'send_later']),
];
$this->addGroup($sendOptions, 'send_option', '', '<br>');

Expand Down

0 comments on commit 33e3381

Please sign in to comment.