diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-06-06 14:00:25 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-06-06 14:00:25 -0700 |
commit | 07a0a816b11403e25562d11f494f16f03857f14e (patch) | |
tree | 6e03bf8d8f469033cbef519a4e97d2897bef9cf5 /app/Template/project_header/dropdown.php | |
parent | 5064fcd33098e7252690af8a0770f83aadefa059 (diff) |
Reword project settings label
Diffstat (limited to 'app/Template/project_header/dropdown.php')
-rw-r--r-- | app/Template/project_header/dropdown.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/project_header/dropdown.php b/app/Template/project_header/dropdown.php index 83c2b97f..9f13b20f 100644 --- a/app/Template/project_header/dropdown.php +++ b/app/Template/project_header/dropdown.php @@ -1,5 +1,5 @@ <div class="dropdown"> - <a href="#" class="dropdown-menu action-menu"><?= t('Menu') ?> <i class="fa fa-caret-down"></i></a> + <a href="#" class="dropdown-menu action-menu" title="<?= t('Configure this project') ?>"><i class="fa fa-cog"></i><i class="fa fa-caret-down"></i></a> <ul> <?php if ($board_view): ?> <li> @@ -64,7 +64,7 @@ <?php if ($this->user->hasProjectAccess('ProjectEditController', 'show', $project['id'])): ?> <li> - <?= $this->url->icon('cog', t('Settings'), 'ProjectViewController', 'show', array('project_id' => $project['id'])) ?> + <?= $this->url->icon('cog', t('Configure this project'), 'ProjectViewController', 'show', array('project_id' => $project['id'])) ?> </li> <?php endif ?> |