diff --git a/src/applications/maniphest/controller/ManiphestReportController.php b/src/applications/maniphest/controller/ManiphestReportController.php --- a/src/applications/maniphest/controller/ManiphestReportController.php +++ b/src/applications/maniphest/controller/ManiphestReportController.php @@ -38,8 +38,8 @@ $class = PhabricatorFactApplication::class; if (PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) { - $nav->addLabel(pht('Burnup')); - $nav->addFilter('burn', pht('Burnup Rate')); + $nav->addLabel(pht('Burnup / Burndown')); + $nav->addFilter('burn', pht('Burnup / Burndown Rate')); } $this->view = $nav->selectFilter($this->view, 'user'); @@ -72,10 +72,10 @@ } /** - * Render the "Burnup Rate" on /maniphest/report/burn/. + * Render the 'Burnup / Burndown Rate' on /maniphest/report/burn/. * - * Ironically this is not called for the "Burndown" on /project/reports/$id/ - * as that's handled by PhabricatorProjectReportsController instead. + * The same thing on /project/reports/$id/ is handled by + * PhabricatorProjectReportsController instead. * * @return array */ @@ -113,7 +113,7 @@ ->setProjects($projects) ->buildChartPanel(); - $panel->setName(pht('Burnup Rate')); + $panel->setName(pht('Burnup / Burndown Rate')); $chart_view = id(new PhabricatorDashboardPanelRenderingEngine()) ->setViewer($viewer) diff --git a/src/applications/project/controller/PhabricatorProjectReportsController.php b/src/applications/project/controller/PhabricatorProjectReportsController.php --- a/src/applications/project/controller/PhabricatorProjectReportsController.php +++ b/src/applications/project/controller/PhabricatorProjectReportsController.php @@ -36,7 +36,8 @@ ->setProjects(array($project)) ->buildChartPanel(); - $chart_panel->setName(pht('%s: Burndown', $project->getName())); + $chart_panel->setName(pht('%s: Burnup / Burndown Rate', + $project->getName())); $chart_view = id(new PhabricatorDashboardPanelRenderingEngine()) ->setViewer($viewer)