Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
A few more tr()'s in system status stuff.
git-svn-id: http://svn.mythtv.org/svn/trunk@4383 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Thor Sigvaldason committed Sep 9, 2004
1 parent fca9f38 commit ac7e0fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mythtv/programs/mythfrontend/statusbox.cpp
Expand Up @@ -569,14 +569,14 @@ void StatusBox::doTunerStatus()

gContext->SendReceiveStringList(strlist);

QString Status = QString("Tuner %1 ").arg(cardid);
QString Status = QString(tr("Tuner %1 ")).arg(cardid);
if (strlist[0].toInt()==kState_WatchingLiveTV)
Status += "is watching live TV";
Status += tr("is watching live TV");
else if (strlist[0].toInt()==kState_RecordingOnly ||
strlist[0].toInt()==kState_WatchingRecording)
Status += "is recording";
Status += tr("is recording");
else
Status += "is not recording";
Status += tr("is not recording");

contentLines[count] = Status;
contentDetail[count] = Status;
Expand Down

0 comments on commit ac7e0fa

Please sign in to comment.