From ef0c580547bd5f813806df610682ab2b8e3cc68e Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Tue, 26 May 2015 13:56:57 +0530 Subject: [PATCH] minor fix --- CRM/Batch/Form/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Batch/Form/Entry.php b/CRM/Batch/Form/Entry.php index 334ff90d69..d5513aa727 100755 --- a/CRM/Batch/Form/Entry.php +++ b/CRM/Batch/Form/Entry.php @@ -290,7 +290,7 @@ class CRM_Batch_Form_Entry extends CRM_Core_Form { foreach ($params['field'] as $key => $value) { foreach($fields as $field => $label) { if (!empty($params['primary_contact_id'][$key]) && empty($value[$field])) { - $errors["field[$key][$field]"] = ts("$label is a required field."); + $errors["field[$key][$field]"] = ts('%1 is a required field.', array(1 => $label)); } } } -- 2.25.1