Improve wording of the menu to close all tasks in a given column/swimlane

Fixes #4740
This commit is contained in:
Frédéric Guillot
2023-03-28 20:27:02 -07:00
committed by Frédéric Guillot
parent 3bc4cc8291
commit de7c1bf16b
37 changed files with 37 additions and 37 deletions

View File

@@ -44,7 +44,7 @@
<?php if ($column['nb_tasks'] > 0 && $this->projectRole->canChangeTaskStatusInColumn($column['project_id'], $column['id'])): ?>
<li>
<?= $this->modal->confirm('close', t('Close all tasks of this column'), 'BoardPopoverController', 'confirmCloseColumnTasks', array('project_id' => $column['project_id'], 'column_id' => $column['id'], 'swimlane_id' => $swimlane['id'])) ?>
<?= $this->modal->confirm('close', t('Close all tasks in this column and this swimlane'), 'BoardPopoverController', 'confirmCloseColumnTasks', array('project_id' => $column['project_id'], 'column_id' => $column['id'], 'swimlane_id' => $swimlane['id'])) ?>
</li>
<?php endif ?>
</ul>