mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdChart: Renamed 'Remaining' to 'Available', it reads better
This commit is contained in:
parent
99d579f65f
commit
42e4c174a9
1 changed files with 1 additions and 1 deletions
|
@ -529,7 +529,7 @@ static std::string renderSummary (
|
||||||
<< std::setw (13) << std::setfill (' ') << Duration (total_worked).formatHours () << '\n';
|
<< std::setw (13) << std::setfill (' ') << Duration (total_worked).formatHours () << '\n';
|
||||||
|
|
||||||
if (total_remaining >= 0)
|
if (total_remaining >= 0)
|
||||||
out << indent << "Remaining "
|
out << indent << "Available "
|
||||||
<< std::setw (13) << std::setfill (' ') << Duration (total_remaining).formatHours () << '\n';
|
<< std::setw (13) << std::setfill (' ') << Duration (total_remaining).formatHours () << '\n';
|
||||||
|
|
||||||
out << indent << "Total "
|
out << indent << "Total "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue