diff options
author | Andrew Engelbrecht <ae@n0r.co> | 2018-05-10 22:16:06 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-05-11 10:06:52 -0700 |
commit | 1a7e26f20ab425e10dced4a249db5a3cb0fc26bc (patch) | |
tree | fea1eb30ef09f1a2714943609b708da5d8002fd3 | |
parent | eafaa4b03770a73080520952112905eb8135a62f (diff) |
translate time string in another template
-rw-r--r-- | app/Template/notification/subtask_create.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/notification/subtask_create.php b/app/Template/notification/subtask_create.php index 17271724..094ac543 100644 --- a/app/Template/notification/subtask_create.php +++ b/app/Template/notification/subtask_create.php @@ -9,7 +9,7 @@ <?php if (! empty($subtask['time_estimated'])): ?> <li> <?= t('Time tracking:') ?> - <strong><?= $this->text->e($subtask['time_estimated']).'h' ?></strong> <?= t('estimated') ?> + <?= t('%sh estimated', n($subtask['time_estimated'])) ?> </li> <?php endif ?> </ul> |