From: jitendrapurohit Date: Tue, 26 May 2015 08:26:57 +0000 (+0530) Subject: minor fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ef0c580547bd5f813806df610682ab2b8e3cc68e;p=civicrm-core.git minor fix --- 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)); } } }