diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/column_move_restriction/create.php | 2 | ||||
-rw-r--r-- | app/Template/project_role/show.php | 7 |
2 files changed, 3 insertions, 6 deletions
diff --git a/app/Template/column_move_restriction/create.php b/app/Template/column_move_restriction/create.php index 69a75ce0..8d161c3e 100644 --- a/app/Template/column_move_restriction/create.php +++ b/app/Template/column_move_restriction/create.php @@ -19,6 +19,6 @@ <?= $this->url->link(t('cancel'), 'ProjectRoleController', 'show', array(), false, 'close-popover') ?> </div> - <p class="alert alert-info"><?= t('People belonging to this role won\'t be able to move tasks between the source and the destination column.') ?></p> + <p class="alert alert-info"><?= t('People belonging to this role will be able to move tasks only between the source and the destination column.') ?></p> </form> </section> diff --git a/app/Template/project_role/show.php b/app/Template/project_role/show.php index 2114a1c9..5fbd413b 100644 --- a/app/Template/project_role/show.php +++ b/app/Template/project_role/show.php @@ -16,7 +16,7 @@ <tr> <th> <div class="dropdown"> - <a href="#" class="dropdown-menu"><?= t('Column restrictions for the role "%s"', $role['role']) ?> <i class="fa fa-caret-down"></i></a> + <a href="#" class="dropdown-menu"><?= t('Restrictions for the role "%s"', $role['role']) ?> <i class="fa fa-caret-down"></i></a> <ul> <li> <i class="fa fa-plus fa-fw" aria-hidden="true"></i> @@ -41,10 +41,7 @@ <?php foreach ($role['restrictions'] as $restriction): ?> <tr> <td> - <i class="fa fa-ban fa-fw" aria-hidden="true"></i> - <?= $this->text->e($restriction['src_column_title']) ?> - <i class="fa fa-arrow-right fa-fw" aria-hidden="true"></i> - <?= $this->text->e($restriction['dst_column_title']) ?> + <?= t('Moving task from the column "%s" to "%s" is permitted', $restriction['src_column_title'], $restriction['dst_column_title']) ?> </td> <td> <i class="fa fa-trash-o fa-fw" aria-hidden="true"></i> |