From 945ddec314f39dbf93f6e125032e3329749bf301 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Mon, 3 Aug 2015 21:36:42 -0400 Subject: [PATCH] CRM-10836 - Change 'Is Deceased' to 'Deceased' --- CRM/Contact/Import/Parser/Contact.php | 2 +- api/v3/examples/Contact/GetFieldsOptions.php | 2 +- xml/schema/Contact/Contact.xml | 2 +- xml/schema/Contact/Individual.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/Contact/Import/Parser/Contact.php b/CRM/Contact/Import/Parser/Contact.php index d1785ed72b..a16b44f9a5 100644 --- a/CRM/Contact/Import/Parser/Contact.php +++ b/CRM/Contact/Import/Parser/Contact.php @@ -1356,7 +1356,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser { case 'is_deceased': if (CRM_Utils_String::strtoboolstr($value) === FALSE) { - self::addToErrorMsg(ts('Is Deceased'), $errorMessage); + self::addToErrorMsg(ts('Deceased'), $errorMessage); } break; diff --git a/api/v3/examples/Contact/GetFieldsOptions.php b/api/v3/examples/Contact/GetFieldsOptions.php index d45717fe37..470b29bcaf 100644 --- a/api/v3/examples/Contact/GetFieldsOptions.php +++ b/api/v3/examples/Contact/GetFieldsOptions.php @@ -577,7 +577,7 @@ function contact_getfields_expectedresult() { 'is_deceased' => array( 'name' => 'is_deceased', 'type' => 16, - 'title' => 'Is Deceased', + 'title' => 'Deceased', 'import' => TRUE, 'where' => 'civicrm_contact.is_deceased', 'headerPattern' => '/i(s\\s)?d(eceased)$/i', diff --git a/xml/schema/Contact/Contact.xml b/xml/schema/Contact/Contact.xml index 9383bfb9f8..b7b7a629cb 100644 --- a/xml/schema/Contact/Contact.xml +++ b/xml/schema/Contact/Contact.xml @@ -672,7 +672,7 @@ is_deceased - Is Deceased + Deceased true true /i(s\s)?d(eceased)$/i diff --git a/xml/schema/Contact/Individual.xml b/xml/schema/Contact/Individual.xml index 552d46f11a..007d5b5275 100644 --- a/xml/schema/Contact/Individual.xml +++ b/xml/schema/Contact/Individual.xml @@ -181,7 +181,7 @@ is_deceased - Is Deceased + Deceased true true /i(s\s)?d(eceased)$/i -- 2.25.1