Fix spelling and capitalization of Contact ID and External ID
authorColeman Watts <coleman@civicrm.org>
Thu, 14 Aug 2014 20:28:21 +0000 (21:28 +0100)
committerColeman Watts <coleman@civicrm.org>
Thu, 14 Aug 2014 20:28:21 +0000 (21:28 +0100)
35 files changed:
CRM/Campaign/Form/Campaign.php
CRM/Contact/Form/Edit/Household.php
CRM/Contact/Form/Edit/Individual.php
CRM/Contact/Form/Edit/Organization.php
CRM/Contact/Form/Merge.php
CRM/Contact/Form/Search/Custom/ContribSYBNT.php
CRM/Contact/Form/Search/Custom/ContributionAggregate.php
CRM/Contact/Form/Search/Custom/DateAdded.php
CRM/Contact/Form/Search/Custom/EmployerListing.php
CRM/Contact/Form/Search/Custom/FullText.php
CRM/Contact/Form/Search/Custom/Group.php
CRM/Contact/Form/Search/Custom/MultipleValues.php
CRM/Contact/Form/Search/Custom/PostalMailing.php
CRM/Contact/Form/Search/Custom/PriceSet.php
CRM/Contact/Form/Search/Custom/RandomSegment.php
CRM/Contact/Form/Search/Custom/Sample.php
CRM/Contact/Form/Search/Custom/TagContributions.php
CRM/Contact/Form/Search/Custom/ZipCodeRange.php
CRM/Contact/Form/Task/Batch.php
CRM/Contact/Import/Parser/Contact.php
CRM/Contact/Selector.php
CRM/Contribute/Import/Form/MapField.php
CRM/Event/Import/Form/MapField.php
CRM/Pledge/Selector/Search.php
CRM/Upgrade/3.1.alpha1.msg_template/message_templates/contribution_dupalert_html.tpl
CRM/Upgrade/3.1.alpha1.msg_template/message_templates/contribution_dupalert_text.tpl
CRM/Upgrade/3.1.alpha2.msg_template/message_templates/contribution_dupalert_html.tpl
CRM/Upgrade/4.4.alpha1.msg_template/message_templates/contribution_dupalert_html.tpl
CRM/Upgrade/4.4.alpha1.msg_template/message_templates/contribution_dupalert_text.tpl
CRM/Utils/DeprecatedUtils.php
tests/extensions/test.extension.manager.searchtest/main.php
tools/extensions/org.civicrm.search.multivalue/MultiValue.php
xml/schema/Campaign/Campaign.xml
xml/templates/message_templates/contribution_dupalert_html.tpl
xml/templates/message_templates/contribution_dupalert_text.tpl

index dcfc4088787587520a5124e127941d7b141d7faf..e29457c3fc3d2daa5fee7018a4017f8abb079d2c 100644 (file)
@@ -240,8 +240,8 @@ class CRM_Campaign_Form_Campaign extends CRM_Core_Form {
     // add campaign status
     $this->addSelect('status_id');
 
-    // add External Identifire Element
-    $this->add('text', 'external_identifier', ts('External Id'),
+    // add External Identifier Element
+    $this->add('text', 'external_identifier', ts('External ID'),
       CRM_Core_DAO::getAttribute('CRM_Campaign_DAO_Campaign', 'external_identifier'), FALSE
     );
 
index e38294250a3d9177dcd3b19f55f5e49c30acbb06..41af922c220062679d0439ad8937daa8f886c33b 100644 (file)
@@ -68,7 +68,7 @@ class CRM_Contact_Form_Edit_Household {
     }
 
     if ( !$inlineEditMode ) {
-      $form->add('text', 'external_identifier', ts('External Id'), $attributes['external_identifier'], FALSE);
+      $form->add('text', 'external_identifier', ts('External ID'), $attributes['external_identifier'], FALSE);
       $form->addRule('external_identifier',
         ts('External ID already exists in Database.'),
         'objectExists',
index 8df832970ca9c33cab91e0d9ab13eb3a7824f4a6..f8a2f2d7ba38b713fec422333728cb130261df56 100644 (file)
@@ -128,7 +128,7 @@ class CRM_Contact_Form_Edit_Individual {
       $form->assign('checkSimilar', $checkSimilar);
 
       //External Identifier Element
-      $form->add('text', 'external_identifier', ts('External Id'),
+      $form->add('text', 'external_identifier', ts('External ID'),
         CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'external_identifier'), FALSE
       );
 
index 57465feaf0fdaefe38bc36bbd823faf7fdbf5634..58e4be19d77654c352cd4843aec862d48a514383 100644 (file)
@@ -77,7 +77,7 @@ class CRM_Contact_Form_Edit_Organization {
     }
 
     if ( !$inlineEditMode ) {
-      $form->add('text', 'external_identifier', ts('External Id'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'external_identifier'), FALSE);
+      $form->add('text', 'external_identifier', ts('External ID'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'external_identifier'), FALSE);
       $form->addRule('external_identifier',
         ts('External ID already exists in Database.'),
         'objectExists',
index 7339871684ef494c7e373b9fe13ed37a6894a0c0..f87eeeb22c6ff5168b3dad3785cb5d702d19a706 100644 (file)
@@ -334,7 +334,10 @@ class CRM_Contact_Form_Merge extends CRM_Core_Form {
 
     CRM_Dedupe_Merger::moveAllBelongings($this->_cid, $this->_oid, $formValues);
 
-    CRM_Core_Session::setStatus(ts('Contact id %1 has been updated and contact id %2 has been deleted.', array(1 => $this->_cid, 2 => $this->_oid)), ts('Contacts Merged'), 'success');
+    $name = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_cid, 'display_name');
+    $message = '<ul><li>' . ts('%1 has been updated.', array(1 => $name)) . '</li><li>' . ts('Contact ID %1 has been deleted.', array(1 => $this->_oid)) . '</li></ul>';
+    CRM_Core_Session::setStatus($message, ts('Contacts Merged'), 'success');
+
     $url = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->_cid}");
     if (!empty($formValues['_qf_Merge_submit'])) {
       $listParamsURL = "reset=1&action=update&rgid={$this->_rgid}";
index 91775a4948214ed404f58b55b2c1b5d48637f3e6..fc698bb68844917c5ca8bce4cca5239e2a43b522 100644 (file)
@@ -45,7 +45,7 @@ class CRM_Contact_Form_Search_Custom_ContribSYBNT implements CRM_Contact_Form_Se
     $this->_permissionedComponent = 'CiviContribute';
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Name') => 'display_name',
       ts('Donation Count') => 'donation_count',
       ts('Donation Amount') => 'donation_amount',
index 3cab0ced25ae6e2061d00d780a18b6e79359b137..9c953cf033ae40da436011620bd6d90a8a4cd20a 100644 (file)
@@ -47,7 +47,7 @@ class CRM_Contact_Form_Search_Custom_ContributionAggregate implements CRM_Contac
      */
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Name') => 'sort_name',
       ts('Donation Count') => 'donation_count',
       ts('Donation Amount') => 'donation_amount',
index f0565c0bfdd7f91364fe5ee0fc5dce99ba151b8d..ec7f5e1632e134c37fa1a07e7e75b42efaf85b11 100644 (file)
@@ -46,7 +46,7 @@ class CRM_Contact_Form_Search_Custom_DateAdded extends CRM_Contact_Form_Search_C
     $this->_excludeGroups = CRM_Utils_Array::value('excludeGroups', $formValues, array());
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
       ts('Date Added') => 'date_added',
index ca42ad05a22876c2ca1d0d46a6e9401929c20768..79b5a77b4e674e152ed7abc1ce9742a5a5ff0c16 100644 (file)
@@ -46,7 +46,7 @@ class CRM_Contact_Form_Search_Custom_EmployerListing implements CRM_Contact_Form
      * Define the columns for search result rows
      */
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Individual Name') => 'sort_name',
       ts('Individual State') => 'indState',
       ts('Employer') => 'employer',
index 634f4da0becd214ef99c4e56871da4fafab5ea1f..065e9b2c6cb53767c799070421ee70d106922e66 100644 (file)
@@ -346,7 +346,7 @@ WHERE      t.table_name = 'Activity' AND
    */
   function &columns() {
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Name') => 'sort_name',
     );
 
index fa25d7df5d68536c65634265128f08177f0b4614..ae65bd301530d7c28a9f118354a63fab85d4942a 100644 (file)
@@ -51,7 +51,7 @@ class CRM_Contact_Form_Search_Custom_Group
   function __construct(&$formValues) {
     $this->_formValues = $formValues;
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
       ts('Group Name') => 'gname',
index df3b9e92b10fe533a5728ccce90c05a2c1087471..02a3d2985259a7e7b8066803b4ee9445fdb46e25 100644 (file)
@@ -54,7 +54,7 @@ class CRM_Contact_Form_Search_Custom_MultipleValues extends CRM_Contact_Form_Sea
     $this->_tag = CRM_Utils_Array::value('tag', $this->_formValues);
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
     );
index 09b36e36a5ee95c2329fecae220080e8452183e6..066a5d4a9e81f4cf55deab1c3b6ddc08a8db7a95 100644 (file)
@@ -40,7 +40,7 @@ class CRM_Contact_Form_Search_Custom_PostalMailing extends CRM_Contact_Form_Sear
     parent::__construct($formValues);
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Address') => 'address',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
index f648fb37309b67143830caf2ff3e811cc87c63a5..9fef7ee4924000af5f04a0f812bddf246f0954e3 100644 (file)
@@ -223,7 +223,7 @@ AND    p.entity_id    = e.id
 
   function setColumns() {
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Participant Id') => 'participant_id',
       ts('Name') => 'display_name',
     );
index 2d5223ec251b5f9b4bf76e08efbbb1bb06f205fc..6c01285304260a9ac9f8fa1d706729cacc7f9815 100644 (file)
@@ -43,7 +43,7 @@ class CRM_Contact_Form_Search_Custom_RandomSegment extends CRM_Contact_Form_Sear
     parent::__construct($formValues);
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
       ts('Email') => 'email',
index f811a58f81a2f8009826f060701770bbe2142a08..cbe50a0085ac5fb3b448a0c31da1171d4e6db6f2 100644 (file)
@@ -49,7 +49,7 @@ class CRM_Contact_Form_Search_Custom_Sample extends CRM_Contact_Form_Search_Cust
     }
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
       ts('State') => 'state_province',
index ac6f6bdfc3f02ed043210e320509813cb0a5ebe3..91e09f135595058f1b7f508962b9d9a8ed544acf 100644 (file)
@@ -48,7 +48,7 @@ class CRM_Contact_Form_Search_Custom_TagContributions implements CRM_Contact_For
      * Define the columns for search result rows
      */
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Full Name') => 'sort_name',
       ts('First Name') => 'first_name',
       ts('Last Name') => 'last_name',
index 788dbaa474a28d8101bf04d490e3e9586d7ae83e..b5d580f7e7fa6775f4f0c8febbce2fbeb10b09a8 100644 (file)
@@ -40,7 +40,7 @@ class CRM_Contact_Form_Search_Custom_ZipCodeRange extends CRM_Contact_Form_Searc
     parent::__construct($formValues);
 
     $this->_columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Name') => 'sort_name',
       ts('Email') => 'email',
       ts('Zip') => 'postal_code',
index ee546c7343fd4a4c22796618d06628a2f7897069..9746fbf9fb1d0f42633da40ff631cbe804be338f 100644 (file)
@@ -234,7 +234,7 @@ class CRM_Contact_Form_Task_Batch extends CRM_Contact_Form_Task {
       foreach ($field as $fieldName => $fieldValue) {
         if ($fieldName == 'external_identifier') {
           if (in_array($fieldValue, $externalIdentifiers)) {
-            $errors["field[$componentId][external_identifier]"] = ts('Duplicate value for External Identifier.');
+            $errors["field[$componentId][external_identifier]"] = ts('Duplicate value for External ID.');
           }
           else {
             $externalIdentifiers[$componentId] = $fieldValue;
index 3ac73d139926500d5e97b3a07ccbfadd6e650fb3..0bfc66655d8b63fb2612662a25cda9a0f81e771c 100644 (file)
@@ -380,7 +380,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser {
       /* If it's a dupe,external Identifier  */
 
       if ($externalDupe = CRM_Utils_Array::value($externalID, $this->_allExternalIdentifiers)) {
-        $errorMessage = ts('External Identifier conflicts with record %1', array(1 => $externalDupe));
+        $errorMessage = ts('External ID conflicts with record %1', array(1 => $externalDupe));
         array_unshift($values, $errorMessage);
         $importRecordParams = array(
           $statusFieldName => 'ERROR',
@@ -487,7 +487,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser {
 
       if ($internalCid = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $params['external_identifier'], 'id', 'external_identifier')) {
         if ($internalCid != CRM_Utils_Array::value('id', $params)) {
-          $errorMessage = ts('External Identifier already exists in database.');
+          $errorMessage = ts('External ID already exists in Database.');
           array_unshift($values, $errorMessage);
           $importRecordParams = array(
             $statusFieldName => 'ERROR',
index 7c9b3b6beca0955939143bffc2b8ba1670e94c49..7d78e694598f1c8c1010caa56d71d38afd90a365 100644 (file)
@@ -358,7 +358,7 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
     }
 
     if ($output == CRM_Core_Selector_Controller::EXPORT) {
-      $csvHeaders = array(ts('Contact Id'), ts('Contact Type'));
+      $csvHeaders = array(ts('Contact ID'), ts('Contact Type'));
       foreach ($this->getColHeads($action, $output) as $column) {
         if (array_key_exists('name', $column)) {
           $csvHeaders[] = $column['name'];
index f7664ff8758a6edd6d0cca7605aae87ef3f892ea..fbf8c3d9b2677e2ac38cfedcdd76bc85ff5bee33 100644 (file)
@@ -200,7 +200,7 @@ class CRM_Contribute_Import_Form_MapField extends CRM_Import_Form_MapField {
     $fieldsArray = CRM_Dedupe_BAO_Rule::dedupeRuleFields($ruleParams);
 
     $softCreditFields['contact_id'] = ts('Contact ID');
-    $softCreditFields['external_identifier'] = ts('External Identifier');
+    $softCreditFields['external_identifier'] = ts('External ID');
     $softCreditFields['email'] = ts('Email');
 
     $sel2['soft_credit'] = $softCreditFields;
index d627202322a54aa7294e6ffe8e478e7a2dd405c9..43f78d1066924a58ef6485fc530d2629a2d713b0 100644 (file)
@@ -339,7 +339,7 @@ class CRM_Event_Import_Form_MapField extends CRM_Import_Form_MapField {
             }
             else {
               $errors['_qf_default'] .= ts('Missing required contact matching fields.') . " $fieldMessage " . ts('(Sum of all weights should be greater than or equal to threshold: %1).', array(
-                1 => $threshold)) . ' ' . ts('Or Provide Contact Id or External Identifier.') . '<br />';
+                1 => $threshold)) . ' ' . ts('Or Provide Contact ID or External ID.') . '<br />';
             }
           }
           elseif (!in_array('event_title', $importKeys)) {
index 9fd91973a47b986c65c5342274ff6692af4185c1..1c1aaf0327b7697418fdbaa3da893297b7d81032 100644 (file)
@@ -438,7 +438,7 @@ class CRM_Pledge_Selector_Search extends CRM_Core_Selector_Base {
 
       if (!$this->_single) {
         $pre = array(
-          array('desc' => ts('Contact Id')),
+          array('desc' => ts('Contact ID')),
           array(
             'name' => ts('Name'),
             'sort' => 'sort_name',
index 80c53decdf91765c21544cfb454881ec48ef5af8..7b97164c1fd66593db3f5b92188b5b5e136e77e7 100644 (file)
@@ -47,7 +47,7 @@ Duplicate Matching Rules for your site.{/ts}</p>
      </tr>
      <tr>
       <td {$labelStyle}>
-       {ts}Organization Contact Id{/ts}
+       {ts}Organization Contact ID{/ts}
       </td>
       <td {$valueStyle}>
        {$onBehalfID}
index 16cb47dfe86201bd33c9aa3dc5a481ffa445dafb..41af7bc178108915b5497a74457d3b29b4d9a586 100644 (file)
@@ -4,7 +4,7 @@ Duplicate Matching Rules for your site.{/ts}
 
 {ts}Organization Name{/ts}: {$onBehalfName}
 {ts}Organization Email{/ts}: {$onBehalfEmail}
-{ts}Organization Contact Id{/ts}: {$onBehalfID}
+{ts}Organization Contact ID{/ts}: {$onBehalfID}
 
 {ts}If you think this may be a duplicate contact which should be merged with an existing record -
 Go to "CiviCRM >> Administer CiviCRM >> Find and Merge Duplicate Contacts". Use the strict
index f94304adf9abc35975d83c07ce89f25c2d819e95..8851ca61abd0d2853a61b3a36935a4a0d25d17a8 100644 (file)
@@ -47,7 +47,7 @@ Duplicate Matching Rules for your site.{/ts}</p>
      </tr>
      <tr>
       <td {$labelStyle}>
-       {ts}Organization Contact Id{/ts}
+       {ts}Organization Contact ID{/ts}
       </td>
       <td {$valueStyle}>
        {$onBehalfID}
index 774863dcedf8d7ac8b287aa6f9fcc77a80b72aab..c5ac3109c4ffd355059850e8f15486e8762f9329 100644 (file)
@@ -47,7 +47,7 @@ Duplicate Matching Rules for your site.{/ts}</p>
      </tr>
      <tr>
       <td {$labelStyle}>
-       {ts}Organization Contact Id{/ts}
+       {ts}Organization Contact ID{/ts}
       </td>
       <td {$valueStyle}>
        {$onBehalfID}
index f1784809078f08136078eb532a022446e915ef53..217c0536a1610606287e204e1d85b1811037b72b 100644 (file)
@@ -4,7 +4,7 @@ Duplicate Matching Rules for your site.{/ts}
 
 {ts}Organization Name{/ts}: {$onBehalfName}
 {ts}Organization Email{/ts}: {$onBehalfEmail}
-{ts}Organization Contact Id{/ts}: {$onBehalfID}
+{ts}Organization Contact ID{/ts}: {$onBehalfID}
 
 {ts}If you think this may be a duplicate contact which should be merged with an existing record -
 Go to "Contacts >> Find and Merge Duplicate Contacts". Use the strict
index 9ec53a73ad9a08fc77ba6051b7b346a40cc2e8fe..4ec6275a363a9e75ca8b2c090152e23eb71a5a17 100644 (file)
@@ -415,7 +415,9 @@ function _civicrm_api3_deprecated_formatted_param($params, &$values, $create = F
               $contact->external_identifier = $externalId;
               $errorMsg = NULL;
               if (!$contact->find(TRUE)) {
-                $errorMsg = $contactId ? ts("Soft Credit ContactID - $contactId doesn't exist. Row was skipped.") : ts("Provided Soft Credit External Identifier - $externalIddoesn't exist. Row was skipped.");
+                $field = $contactId ? ts('Contact ID') : ts('External ID');
+                $errorMsg = ts("Soft Credit %1 - %2 doesn't exist. Row was skipped.",
+                  array(1 => $field, 2 => $contactId ? $contactId : $externalId));
               }
 
               if ($errorMsg) {
index f3e195f2723ee7849d955b1cffc422a73cb7e262..d0e7907dbd7f2eefd1b56c47b952b204f80215fd 100644 (file)
@@ -67,7 +67,7 @@ class test_extension_manager_searchtest extends CRM_Contact_Form_Search_Custom_B
   function &columns() {
     // return by reference
     $columns = array(
-      ts('Contact Id') => 'contact_id',
+      ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
       ts('State') => 'state_province',
index 4fafd0cc3745450bfcab1f41a47ecde65fa70264..8b0d1b07b7e1c8d0ec5c54647c8e05d1f87d1817 100644 (file)
@@ -56,7 +56,7 @@ class org_civicrm_search_multivalue extends CRM_Contact_Form_Search_Custom_Basei
       NULL, -1
     );
 
-    $this->_columns = array(ts('Contact Id') => 'contact_id',
+    $this->_columns = array(ts('Contact ID') => 'contact_id',
       ts('Contact Type') => 'contact_type',
       ts('Name') => 'sort_name',
     );
index 0974667f1aeefb00953b2e8f769440a065c89137..72a627fdcb9157c2dcd7299af235fca503da23e5 100644 (file)
   <field>
        <name>external_identifier</name>
        <type>varchar</type>
-       <title>Campaign External Identifier</title>
+       <title>Campaign External ID</title>
        <length>32</length>
        <headerPattern>/external\s?id/i</headerPattern>
        <dataPattern>/^\d{11,}$/</dataPattern>
index 774863dcedf8d7ac8b287aa6f9fcc77a80b72aab..c5ac3109c4ffd355059850e8f15486e8762f9329 100644 (file)
@@ -47,7 +47,7 @@ Duplicate Matching Rules for your site.{/ts}</p>
      </tr>
      <tr>
       <td {$labelStyle}>
-       {ts}Organization Contact Id{/ts}
+       {ts}Organization Contact ID{/ts}
       </td>
       <td {$valueStyle}>
        {$onBehalfID}
index f1784809078f08136078eb532a022446e915ef53..217c0536a1610606287e204e1d85b1811037b72b 100644 (file)
@@ -4,7 +4,7 @@ Duplicate Matching Rules for your site.{/ts}
 
 {ts}Organization Name{/ts}: {$onBehalfName}
 {ts}Organization Email{/ts}: {$onBehalfEmail}
-{ts}Organization Contact Id{/ts}: {$onBehalfID}
+{ts}Organization Contact ID{/ts}: {$onBehalfID}
 
 {ts}If you think this may be a duplicate contact which should be merged with an existing record -
 Go to "Contacts >> Find and Merge Duplicate Contacts". Use the strict