From: Michael Devery Date: Tue, 15 May 2018 11:02:53 +0000 (+0100) Subject: dev/core#55 Fix typos X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=aa594a793c90c7344d70bf0412f4afacfbe2d00b;p=civicrm-core.git dev/core#55 Fix typos --- diff --git a/CRM/Custom/Page/Option.php b/CRM/Custom/Page/Option.php index 8766e2cb04..15d23aa415 100644 --- a/CRM/Custom/Page/Option.php +++ b/CRM/Custom/Page/Option.php @@ -90,18 +90,18 @@ class CRM_Custom_Page_Option extends CRM_Core_Page { CRM_Core_Action::DISABLE => array( 'name' => ts('Disable'), 'ref' => 'crm-enable-disable', - 'title' => ts('Disable Mutliple Choice Option'), + 'title' => ts('Disable Multiple Choice Option'), ), CRM_Core_Action::ENABLE => array( 'name' => ts('Enable'), 'ref' => 'crm-enable-disable', - 'title' => ts('Enable Mutliple Choice Option'), + 'title' => ts('Enable Multiple Choice Option'), ), CRM_Core_Action::DELETE => array( 'name' => ts('Delete'), 'url' => 'civicrm/admin/custom/group/field/option', 'qs' => 'action=delete&id=%%id%%&fid=%%fid%%', - 'title' => ts('Disable Multiple Choice Option'), + 'title' => ts('Delete Multiple Choice Option'), ), ); } @@ -229,7 +229,7 @@ WHERE option_group_id = %1"; ); if ($isReserved = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $this->_gid, 'is_reserved', 'id')) { - CRM_Core_Error::fatal("You cannot add or edit muliple choice options in a reserved custom field-set."); + CRM_Core_Error::fatal("You cannot add or edit multiple choice options in a reserved custom field-set."); } $optionGroupId = $this->getOptionGroupId($this->_fid);