Add translation to jQPlot title

This commit is contained in:
Asturyan
2014-03-21 11:52:06 +01:00
parent e402fe051f
commit 553022ec58

View File

@@ -45,7 +45,7 @@ class HomeController extends BaseAdminController
$data = new \stdClass();
$data->title = "Stats on " . $this->getRequest()->query->get('month', date('m')) . "/" . $this->getRequest()->query->get('year', date('Y'));
$data->title = $this->getTranslator()->trans("Stats on %month/%year", array('%month' => $this->getRequest()->query->get('month', date('m')), '%year' => $this->getRequest()->query->get('year', date('Y'))));
/* sales */
$saleSeries = new \stdClass();