Skip to content

Commit

Permalink
Clarify translated error strings for mythfilldatabase too, signed off…
Browse files Browse the repository at this point in the history
… by Nicholas Riendeau on behalf of the translation team.
  • Loading branch information
stuartm committed Jul 31, 2012
1 parent 71ca47f commit a7f980f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/programs/mythfilldatabase/filldata.cpp
Expand Up @@ -454,14 +454,14 @@ bool FillData::GrabData(Source source, int offset, QDate *qCurrentDate)
if (systemcall_status == GENERIC_EXIT_KILLED)
{
interrupted = true;
status = QObject::tr("FAILED: xmltv ran but was interrupted.");
status = QObject::tr("FAILED: XMLTV grabber ran but was interrupted.");
}
else
{
status = QObject::tr("FAILED: xmltv returned error code %1.")
status = QObject::tr("FAILED: XMLTV grabber returned error code %1.")
.arg(systemcall_status);
LOG(VB_GENERAL, LOG_ERR, LOC +
QString("xmltv grabber returned error code %1")
QString("XMLTV grabber returned error code %1")
.arg(systemcall_status));
}
}
Expand Down

0 comments on commit a7f980f

Please sign in to comment.