diff --git a/module/task/model.php b/module/task/model.php
index 85a54feb54..58b153dbbe 100644
--- a/module/task/model.php
+++ b/module/task/model.php
@@ -2963,13 +2963,13 @@ class taskModel extends model
$storyChanged ? print("{$this->lang->story->changed}") : print(" " . $this->processStatus('task', $task) . "");
break;
case 'estimate':
- echo round($task->estimate, 1);
+ echo round($task->estimate, 1) . ' ' . $this->lang->hourCommon;
break;
case 'consumed':
- echo round($task->consumed, 1);
+ echo round($task->consumed, 1) . ' ' . $this->lang->hourCommon;
break;
case 'left':
- echo round($task->left, 1);
+ echo round($task->left, 1) . ' ' . $this->lang->hourCommon;
break;
case 'progress':
echo "{$task->progress}%";