From 357c7e41586c2b6172883a7ad63fb4d525a87b78 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Fri, 16 Aug 2013 15:44:38 -0700 Subject: [PATCH] Change Birth date labels to Birth Date to match title case used in other labels. --- CRM/Contact/Form/Edit/Demographics.php | 2 +- templates/CRM/Contact/Page/Inline/Demographics.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/Form/Edit/Demographics.php b/CRM/Contact/Form/Edit/Demographics.php index c57a316166..45894313a3 100644 --- a/CRM/Contact/Form/Edit/Demographics.php +++ b/CRM/Contact/Form/Edit/Demographics.php @@ -59,7 +59,7 @@ class CRM_Contact_Form_Edit_Demographics { } $form->addGroup($genderOptions, 'gender_id', ts('Gender')); - $form->addDate('birth_date', ts('Date of birth'), FALSE, array('formatType' => 'birth')); + $form->addDate('birth_date', ts('Date of Birth'), FALSE, array('formatType' => 'birth')); $form->addElement('checkbox', 'is_deceased', NULL, ts('Contact is deceased'), array('onclick' => "showDeceasedDate()")); $form->addDate('deceased_date', ts('Deceased date'), FALSE, array('formatType' => 'birth')); diff --git a/templates/CRM/Contact/Page/Inline/Demographics.tpl b/templates/CRM/Contact/Page/Inline/Demographics.tpl index af271419bf..98d2848a08 100644 --- a/templates/CRM/Contact/Page/Inline/Demographics.tpl +++ b/templates/CRM/Contact/Page/Inline/Demographics.tpl @@ -35,7 +35,7 @@
{$gender_display}
-
{ts}Date of birth{/ts}
+
{ts}Date of Birth{/ts}
{if $birthDateViewFormat} {$birth_date_display|crmDate:$birthDateViewFormat} -- 2.25.1