From 2dc3fbdc693c89b169d54bdb9d88eaa0221b1b6d Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Mon, 12 Aug 2013 17:18:29 -0700 Subject: [PATCH] CRM-13159 add missing period end of sentence and fix unrelated typo spelling in Address.php ---------------------------------------- * 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 | 4 ++-- templates/CRM/Member/Form/Membership.tpl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Contact/Form/Edit/Address.php b/CRM/Contact/Form/Edit/Address.php index 0d7c7afecf..568802461a 100644 --- a/CRM/Contact/Form/Edit/Address.php +++ b/CRM/Contact/Form/Edit/Address.php @@ -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), diff --git a/templates/CRM/Member/Form/Membership.tpl b/templates/CRM/Member/Form/Membership.tpl index 7c0a2202a0..1854d75aa4 100644 --- a/templates/CRM/Member/Form/Membership.tpl +++ b/templates/CRM/Member/Form/Membership.tpl @@ -685,7 +685,7 @@ 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); } }); -- 2.25.1