diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-10 16:51:44 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-10 16:51:44 +0200 |
commit | cede5d5434e4e50145daf2413c962a335c13cc99 (patch) | |
tree | 2e967e7c95884f9cbab880ff7aedc72466e9d47a /app/Templates | |
parent | 28ff8dad91c9e3c25f6a3b5398ae15f2a1ef95cd (diff) |
Fix Mysql and Postgresql bug
Diffstat (limited to 'app/Templates')
-rw-r--r-- | app/Templates/event_subtask_create.php | 2 | ||||
-rw-r--r-- | app/Templates/event_subtask_update.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Templates/event_subtask_create.php b/app/Templates/event_subtask_create.php index 81268449..9772d807 100644 --- a/app/Templates/event_subtask_create.php +++ b/app/Templates/event_subtask_create.php @@ -5,7 +5,7 @@ <em><?= Helper\escape($task_title) ?></em><br/> <p><?= Helper\escape($subtask_title) ?> <strong>(<?= Helper\in_list($subtask_status, $subtask_status_list) ?>)</strong></p> <?php if ($subtask_assignee): ?> - <p><?= t('Assigned to %s with estimate of %s/%sh', $subtask_assignee, $subtask_time_spent, $subtask_time_estimated) ?></p> + <p><?= t('Assigned to %s with an estimate of %s/%sh', $subtask_assignee, $subtask_time_spent, $subtask_time_estimated) ?></p> <?php else: ?> <p><?= t('Not assigned, estimate of %sh', $subtask_time_estimated) ?></p> <?php endif ?> diff --git a/app/Templates/event_subtask_update.php b/app/Templates/event_subtask_update.php index 9862f997..70f9d76d 100644 --- a/app/Templates/event_subtask_update.php +++ b/app/Templates/event_subtask_update.php @@ -5,7 +5,7 @@ <em><?= Helper\escape($task_title) ?></em><br/> <p><?= Helper\escape($subtask_title) ?> <strong>(<?= Helper\in_list($subtask_status, $subtask_status_list) ?>)</strong></p> <?php if ($subtask_assignee): ?> - <p><?= t('Assigned to %s with estimate of %s/%sh', $subtask_assignee, $subtask_time_spent, $subtask_time_estimated) ?></p> + <p><?= t('Assigned to %s with an estimate of %s/%sh', $subtask_assignee, $subtask_time_spent, $subtask_time_estimated) ?></p> <?php else: ?> <p><?= t('Not assigned, estimate of %sh', $subtask_time_estimated) ?></p> <?php endif ?> |