diff --git a/Civi/FormProcessor/OutputHandler/FormatOutput.php b/Civi/FormProcessor/OutputHandler/FormatOutput.php index 9098933be25e346f90fb605ad00f7e23f2ec0d00..2d038d1e3f5b0992a0dfafdf6514b81800df630c 100644 --- a/Civi/FormProcessor/OutputHandler/FormatOutput.php +++ b/Civi/FormProcessor/OutputHandler/FormatOutput.php @@ -58,7 +58,7 @@ * @return string */ public function getLabel() { - return E::ts('Formatted output'); + return E::ts('Decide what to send'); } } diff --git a/Civi/FormProcessor/OutputHandler/OutputAllActionOutput.php b/Civi/FormProcessor/OutputHandler/OutputAllActionOutput.php index 3899237d4f85aae928b3ce1603defad93f8da56b..eb65ff51a3c21f9bd91512c31aba14e425334b89 100644 --- a/Civi/FormProcessor/OutputHandler/OutputAllActionOutput.php +++ b/Civi/FormProcessor/OutputHandler/OutputAllActionOutput.php @@ -4,31 +4,31 @@ * @author Jaap Jansma (CiviCooP) <jaap.jansma@civicoop.org> * @license http://www.gnu.org/licenses/agpl-3.0.html */ - + namespace Civi\FormProcessor\OutputHandler; - + use \Civi\FormProcessor\Config\ConfigurationBag; use \Civi\FormProcessor\Config\Specification; use \Civi\FormProcessor\Config\SpecificationBag; use \Civi\FormProcessor\OutputHandler\AbstractOutputHandler; use \Civi\FormProcessor\DataBag; - + use CRM_FormProcessor_ExtensionUtil as E; - + class OutputAllActionOutput extends AbstractOutputHandler { - + /** * Get the configuration specification - * + * * @return SpecificationBag */ public function getConfigurationSpecification() { return new SpecificationBag(); } - + /** * Convert the action data to output data. - * + * * @param DataBag $dataBag * @return array */ @@ -41,20 +41,20 @@ $actionData['action'] = $action->title; $actionData['output'] = $dataBag->getActionData($action); if (!is_array($actionData['output'])) { - $actionData['output'] = array(); - } + $actionData['output'] = array(); + } $output['action'][] = $actionData; } return $output; } - + /** * Returns the label of the output handler. - * + * * @return string */ public function getLabel() { - return E::ts('Output all the output from all the actions'); + return E::ts('Send everything'); } - - } \ No newline at end of file + + }