diff --git a/CRM/SMS/Form/Schedule.php b/CRM/SMS/Form/Schedule.php index 82c3e594ff90..4a1fdefb4fe5 100644 --- a/CRM/SMS/Form/Schedule.php +++ b/CRM/SMS/Form/Schedule.php @@ -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', '', '
');