CRM-15603 - Standardize capitalization of 'Number of Items'
authorColeman Watts <coleman@civicrm.org>
Sat, 15 Nov 2014 22:48:03 +0000 (17:48 -0500)
committerColeman Watts <coleman@civicrm.org>
Sun, 16 Nov 2014 13:41:36 +0000 (08:41 -0500)
CRM/Batch/Form/Batch.php

index 31dd3145994a04c0097df60c824581fbf1ee1f2c..c215a7f2e487013dc50e37f0db63e19e417f9dd2 100644 (file)
@@ -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);
   }