diff options
Diffstat (limited to 'app/Template/task')
-rw-r--r-- | app/Template/task/recurring_info.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/task/recurring_info.php b/app/Template/task/recurring_info.php index 2a283337..897f6207 100644 --- a/app/Template/task/recurring_info.php +++ b/app/Template/task/recurring_info.php @@ -2,7 +2,7 @@ <?php if ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PENDING): ?> <li><?= t('Recurrent task is scheduled to be generated') ?></li> <?php elseif ($task['recurrence_status'] == \Model\Task::RECURRING_STATUS_PROCESSED): ?> - <li><?= t('Recurrent task has been generated') ?> + <li><?= t('Recurrent task has been generated:') ?> <ul> <li> <?= t('Trigger to generate recurrent task: ') ?><strong><?= $this->e($recurrence_trigger_list[$task['recurrence_trigger']]) ?></strong> @@ -23,13 +23,13 @@ <?php if ($task['recurrence_parent'] || $task['recurrence_child']): ?> <?php if ($task['recurrence_parent']): ?> <li> - <?= t('Recurrent task created by: ') ?> + <?= t('This task has been created by: ') ?> <?= $this->a('#'.$task['recurrence_parent'], 'task', 'show', array('task_id' => $task['recurrence_parent'], 'project_id' => $task['project_id'])) ?> </li> <?php endif ?> <?php if ($task['recurrence_child']): ?> <li> - <?= t('Created recurrent task: ') ?> + <?= t('This task has created this child task: ') ?> <?= $this->a('#'.$task['recurrence_child'], 'task', 'show', array('task_id' => $task['recurrence_child'], 'project_id' => $task['project_id'])) ?> </li> <?php endif ?> |