Skip to content

Commit

Permalink
Improve the translatability of a string.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed May 13, 2013
1 parent 526e890 commit b3097d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -11474,9 +11474,9 @@ bool TV::MenuDisplayItem(const MenuItemContext &c)
QString name = CardUtil::GetDisplayName(inputs[i].inputid);
if (name.isEmpty())
{
name = tr("C", "Card") + ":" +
QString::number(*it) + " " +
tr("I", "Input") + ":" + inputs[i].name;
//: Playback OSD menu - Live TV input selection
name = tr("C:%1 I:%2", "C=CardID, I=InputName")
.arg(QString::number(*it)).arg(inputs[i].name);
}

QString action = prefix +
Expand Down

0 comments on commit b3097d6

Please sign in to comment.