CmdChart: Renamed 'Remaining' to 'Available', it reads better

This commit is contained in:
Paul Beckingham 2016-05-21 20:41:07 -05:00
parent 99d579f65f
commit 42e4c174a9

View file

@ -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 "