l10n: Eliminated STRING_VIEW_TOO_SMALL

This commit is contained in:
Paul Beckingham 2018-01-17 21:21:44 -05:00
parent 61d4cb2a6e
commit b1a593d27e
10 changed files with 1 additions and 28 deletions

View file

@ -208,7 +208,7 @@ std::string ViewTask::render (std::vector <Task>& data, std::vector <int>& seque
// Not enough for minimum.
else if (overage < 0)
{
context.error (format (STRING_VIEW_TOO_SMALL, sum_minimal + all_extra, _width));
context.error (format ("The report has a minimum width of {1} and does not fit in the available width of {2}.", sum_minimal + all_extra, _width));
widths = minimal;
}