dev/core#55 Fix typos
authorMichael Devery <michael@compucorp.co.uk>
Tue, 15 May 2018 11:02:53 +0000 (12:02 +0100)
committerMichael Devery <michael@compucorp.co.uk>
Tue, 15 May 2018 11:04:14 +0000 (12:04 +0100)
CRM/Custom/Page/Option.php

index 8766e2cb04275e3ae417641d41929c07f2af93f0..15d23aa4153114fabd9fbf6fb4cf64277c0c88ae 100644 (file)
@@ -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);