From efdb82036def732c7bda618b51db10fdcda028ab Mon Sep 17 00:00:00 2001 From: kurund Date: Fri, 8 Nov 2013 18:48:55 +0530 Subject: [PATCH] added unit for units, CRM-13327 ---------------------------------------- * CRM-13327: Add support for 3 additional event badge formats AND remove Name Badge labels from Label Formats admin http://issues.civicrm.org/jira/browse/CRM-13327 --- CRM/Badge/Form/Layout.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/Badge/Form/Layout.php b/CRM/Badge/Form/Layout.php index dbe4f6da18..8d94465e81 100644 --- a/CRM/Badge/Form/Layout.php +++ b/CRM/Badge/Form/Layout.php @@ -122,13 +122,13 @@ class CRM_Badge_Form_Layout extends CRM_Admin_Form { $attributes = array('readonly'=> true); $this->add('text', 'image_1', ts('Image (top left)'), $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title')); - $this->add('text', 'width_image_1', ts('Width'), array('size' => 6)); - $this->add('text', 'height_image_1', ts('Height'), array('size' => 6)); + $this->add('text', 'width_image_1', ts('Width (mm)'), array('size' => 6)); + $this->add('text', 'height_image_1', ts('Height (mm)'), array('size' => 6)); $this->add('text', 'image_2', ts('Image (top right)'), $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title')); - $this->add('text', 'width_image_2', ts('Width'), array('size' => 6)); - $this->add('text', 'height_image_2', ts('Height'), array('size' => 6)); + $this->add('text', 'width_image_2', ts('Width (mm)'), array('size' => 6)); + $this->add('text', 'height_image_2', ts('Height (mm)'), array('size' => 6)); $this->add('checkbox', 'is_default', ts('Default?')); $this->add('checkbox', 'is_active', ts('Enabled?')); -- 2.25.1