translate title names; closes #142

This commit is contained in:
Fabian Franz
2017-05-11 19:48:16 +02:00
parent a16242976b
commit c6f23bd523
2 changed files with 2 additions and 2 deletions
@@ -42,7 +42,7 @@ class IndexController extends \OPNsense\Base\IndexController
public function indexAction()
{
// set page title
$this->view->title = "HAProxy Load Balancer";
$this->view->title = gettext("HAProxy Load Balancer");
// include form definitions
$this->view->mainForm = $this->getForm("main");
$this->view->formDialogFrontend = $this->getForm("dialogFrontend");
@@ -37,7 +37,7 @@ class StatisticsController extends \OPNsense\Base\IndexController
{
public function indexAction()
{
$this->view->title = "HAProxy Load Balancer / Statistics";
$this->view->title = gettext("HAProxy Load Balancer / Statistics");
// choose template
$this->view->pick('OPNsense/HAProxy/statistics');
}