From 73708df6e51cb955160c0bf7f336f06d63d90761 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 15 Nov 2014 17:48:03 -0500 Subject: [PATCH] CRM-15603 - Standardize capitalization of 'Number of Items' --- CRM/Batch/Form/Batch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Batch/Form/Batch.php b/CRM/Batch/Form/Batch.php index 31dd314599..c215a7f2e4 100644 --- a/CRM/Batch/Form/Batch.php +++ b/CRM/Batch/Form/Batch.php @@ -75,7 +75,7 @@ class CRM_Batch_Form_Batch extends CRM_Admin_Form { } $this->add('textarea', 'description', ts('Description'), $attributes['description']); - $this->add('text', 'item_count', ts('Number of items'), $attributes['item_count'], TRUE); + $this->add('text', 'item_count', ts('Number of Items'), $attributes['item_count'], TRUE); $this->add('text', 'total', ts('Total Amount'), $attributes['total'], TRUE); } -- 2.25.1