Recurring tasks (#847): update translations
This commit is contained in:
@@ -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 ?>
|
||||
|
||||
Reference in New Issue
Block a user