From 3f126e3af74cc8db1d9622bab6f1a487335bcdcf Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Mon, 22 Apr 2019 09:20:28 -0400 Subject: [PATCH] Fix ts() usage in CRM_SMS_Form_Schedule --- CRM/SMS/Form/Schedule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/SMS/Form/Schedule.php b/CRM/SMS/Form/Schedule.php index 82c3e594ff..4a1fdefb4f 100644 --- a/CRM/SMS/Form/Schedule.php +++ b/CRM/SMS/Form/Schedule.php @@ -67,8 +67,8 @@ class CRM_SMS_Form_Schedule extends CRM_Core_Form { $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', '', '
'); -- 2.25.1