Fix translation of legend in task status indicator chart
FEA: ItEr76S04BugFixing
This commit is contained in:
parent
98d3152631
commit
a501d5307d
1 changed files with 2 additions and 1 deletions
|
|
@ -264,7 +264,8 @@ public class DashboardController extends GenericForwardComposer {
|
|||
|
||||
private String statusLegend(TaskStatusEnum status,
|
||||
Map<TaskStatusEnum, Integer> taskStatus) {
|
||||
return status + String.format(_(" (%d tasks)"), taskStatus.get(status));
|
||||
return _(status.toString())
|
||||
+ String.format(_(" (%d tasks)"), taskStatus.get(status));
|
||||
}
|
||||
|
||||
private void renderTaskStatus() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue