From aa594a793c90c7344d70bf0412f4afacfbe2d00b Mon Sep 17 00:00:00 2001 From: Michael Devery Date: Tue, 15 May 2018 12:02:53 +0100 Subject: [PATCH] dev/core#55 Fix typos --- CRM/Custom/Page/Option.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.25.1