l10n: Eliminated STRING_ERROR_BAD_STATUS

This commit is contained in:
Paul Beckingham
2018-01-20 13:57:44 -05:00
parent 92ecc4d7fd
commit 977e2a3c35
10 changed files with 1 additions and 10 deletions

View File

@@ -152,7 +152,7 @@ Task::status Task::textToStatus (const std::string& input)
else if (input[0] == 'r') return Task::recurring;
else if (input[0] == 'w') return Task::waiting;
throw format (STRING_ERROR_BAD_STATUS, input);
throw format ("The status '{1}' is not valid.", input);
}
////////////////////////////////////////////////////////////////////////////////