From: Ben Klang Date: Tue, 8 Jul 2008 15:13:42 +0000 (+0000) Subject: Make column descriptions more clear X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c36bbbb093f8f3dac9bfde095a29118d83c8059a;p=horde.git Make column descriptions more clear Change search form name --- diff --git a/lib/Operator.php b/lib/Operator.php index b9e5dc3fc..827334b0e 100644 --- a/lib/Operator.php +++ b/lib/Operator.php @@ -2,7 +2,7 @@ /** * Operator Base Class. * - * $Horde: incubator/operator/lib/Operator.php,v 1.10 2008/07/08 14:26:12 bklang Exp $ + * $Horde: incubator/operator/lib/Operator.php,v 1.11 2008/07/08 15:13:43 bklang Exp $ * * Copyright 2008 The Horde Project * @@ -50,8 +50,8 @@ class Operator { 'start' => _("Call Start Time"), 'answer' => _("Call Answer Time"), 'end' => _("Call End Time"), - 'duration' => _("Call Duration"), - 'billsec' => _("Billing Time (seconds)"), + 'duration' => _("Call Duration (seconds)"), + 'billsec' => _("Billable Call Duration (seconds)"), 'disposition' => _("Call Disposition"), 'amaflags' => _("AMA Flag"), 'userfield' => _("User Defined Field"), diff --git a/search.php b/search.php index 5434605f5..8d0bcb740 100644 --- a/search.php +++ b/search.php @@ -1,6 +1,6 @@ * @@ -35,7 +35,7 @@ if (!is_numeric($numrows)) { $numrows = 100; } -$form = new SearchCDRForm(_("Search CDR Data"), $vars); +$form = new SearchCDRForm(_("Search Call Detail Records"), $vars); if ($form->isSubmitted() && $form->validate($vars, true)) { $accountcode = $vars->get('accountcode'); $dcontext = $vars->get('dcontext');