diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-07 23:04:35 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-07 23:04:35 -0400 |
commit | 1a1e5e3d933a8d7fff1e6cc15504378b9e09397f (patch) | |
tree | ef6b7f35e0f9ef42402f01d5fd59ce1620c4f448 /app/Template | |
parent | 06dd98afe870c650ce98358bba5214f1e8b5028a (diff) |
Sync translations
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/notification/task_overdue.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/notification/task_overdue.php b/app/Template/notification/task_overdue.php index ee2ff379..914e212a 100644 --- a/app/Template/notification/task_overdue.php +++ b/app/Template/notification/task_overdue.php @@ -2,7 +2,7 @@ <table style="font-size: .8em; table-layout: fixed; width: 100%; border-collapse: collapse; border-spacing: 0; margin-bottom: 20px;" cellpadding=5 cellspacing=1> <tr style="background: #fbfbfb; text-align: left; padding-top: .5em; padding-bottom: .5em; padding-left: 3px; padding-right: 3px;"> - <th style="border: 1px solid #eee;"><?= t('ID') ?></th> + <th style="border: 1px solid #eee;"><?= t('Id') ?></th> <th style="border: 1px solid #eee;"><?= t('Title') ?></th> <th style="border: 1px solid #eee;"><?= t('Due date') ?></th> <th style="border: 1px solid #eee;"><?= t('Project') ?></th> @@ -23,7 +23,7 @@ <td style="border: 1px solid #eee;"><?= $task['project_name'] ?></td> <td style="border: 1px solid #eee;"> <?php if ($task['assignee_username']): ?> - <?= t('%s', $task['assignee_name'] ?: $task['assignee_username']) ?> + <?= $this->e($task['assignee_name'] ?: $task['assignee_username']) ?> <?php endif ?> </td> </tr> |