CRM-13159 add missing period end of sentence and fix unrelated typo spelling in Addre...
authorDave Greenberg <dave@civicrm.org>
Tue, 13 Aug 2013 00:18:29 +0000 (17:18 -0700)
committerDave Greenberg <dave@civicrm.org>
Tue, 13 Aug 2013 00:18:29 +0000 (17:18 -0700)
----------------------------------------
* CRM-13159: relationship.api to accept 'membership_type' as a param
  http://issues.civicrm.org/jira/browse/CRM-13159

CRM/Contact/Form/Edit/Address.php
templates/CRM/Member/Form/Membership.tpl

index 0d7c7afecfef2dc48ac4c8bc46f4252ee5beb6c6..568802461a81e61a64b06db031ab8dbd283e0a1b 100644 (file)
@@ -117,8 +117,8 @@ class CRM_Contact_Form_Edit_Address {
     $elements = array(
       'address_name' => array(ts('Address Name'), $attributes['address_name'], NULL),
       'street_address' => array(ts('Street Address'), $attributes['street_address'], NULL),
-      'supplemental_address_1' => array(ts('Supplmental Address 1'), $attributes['supplemental_address_1'], NULL),
-      'supplemental_address_2' => array(ts('Supplmental Address 2'), $attributes['supplemental_address_2'], NULL),
+      'supplemental_address_1' => array(ts('Supplemental Address 1'), $attributes['supplemental_address_1'], NULL),
+      'supplemental_address_2' => array(ts('Supplemental Address 2'), $attributes['supplemental_address_2'], NULL),
       'city' => array(ts('City'), $attributes['city'], NULL),
       'postal_code' => array(ts('Zip / Postal Code'), array_merge($attributes['postal_code'], array('class' => 'crm_postal_code')), NULL),
       'postal_code_suffix' => array(ts('Postal Code Suffix'), array('size' => 4, 'maxlength' => 12, 'class' => 'crm_postal_code_suffix'), NULL),
index 7c0a2202a0aba7be520c8c107676dd3f5e5c75a8..1854d75aa4810eacfcb96ec085657b2d6074bc5c 100644 (file)
                 relatable = ts(' One contact is ');
               }
 
-              var others = relatable + ts('currently eligible to inherit this relationship');
+              var others = relatable + ts('currently eligible to inherit this relationship.');
               cj('#max_related').siblings('.description').append(others);
             }
           });