diff --git a/application/controllers/ConfigController.php b/application/controllers/ConfigController.php index 9602396ed..e240777dd 100644 --- a/application/controllers/ConfigController.php +++ b/application/controllers/ConfigController.php @@ -121,7 +121,8 @@ class ConfigController extends ActionController // @TODO(el): This seems not natural to me. Module configuration should have its own controller. $this->view->tabs = Widget::create('tabs') ->add('modules', array( - 'title' => $this->translate('Modules'), + 'label' => $this->translate('Modules'), + 'title' => $this->translate('List intalled modules'), 'url' => 'config/modules' )) ->activate('modules'); diff --git a/application/controllers/DashboardController.php b/application/controllers/DashboardController.php index 9e7b482a8..6df92e892 100644 --- a/application/controllers/DashboardController.php +++ b/application/controllers/DashboardController.php @@ -249,8 +249,9 @@ class DashboardController extends ActionController $this->view->tabs->add( 'Add', array( - 'title' => '+', - 'url' => Url::fromPath('dashboard/new-dashlet') + 'label' => '+', + 'title' => 'Add a dashlet to an existing or new dashboard', + 'url' => Url::fromPath('dashboard/new-dashlet') ) ); $this->view->dashboard = $this->dashboard; diff --git a/modules/doc/application/controllers/StyleController.php b/modules/doc/application/controllers/StyleController.php index 8e21a6275..8661d024a 100644 --- a/modules/doc/application/controllers/StyleController.php +++ b/modules/doc/application/controllers/StyleController.php @@ -24,14 +24,15 @@ class Doc_StyleController extends Controller return Widget::create('tabs')->add( 'guide', array( - 'title' => $this->translate('Style Guide'), - 'url' => 'doc/style/guide' + 'label' => $this->translate('Style Guide'), + 'url' => 'doc/style/guide' ) )->add( 'font', array( - 'title' => $this->translate('Icons'), - 'url' => 'doc/style/font' + 'label' => $this->translate('Icons'), + 'title' => $this->translate('List all available icons'), + 'url' => 'doc/style/font' ) ); }