l10n: Eliminated STRING_TASK_VALID_RECUR

This commit is contained in:
Paul Beckingham
2018-01-17 21:16:20 -05:00
parent 1fc7dc3951
commit 72383a7d7f
11 changed files with 3 additions and 11 deletions

View File

@@ -368,7 +368,7 @@ Datetime getNextRecurrence (Datetime& current, std::string& period)
std::string::size_type idx = 0;
Duration p;
if (! p.parse (period, idx))
throw std::string (format (STRING_TASK_VALID_RECUR, period));
throw std::string (format ("The recurrence value '{1}' is not valid.", period));
return current + p.toTime_t ();
}