Skip to content

Commit

Permalink
Fix an instance of a concatenated translated string which prevents pr…
Browse files Browse the repository at this point in the history
…oper translation.
  • Loading branch information
stuartm committed Jun 5, 2012
1 parent 045e606 commit 59703a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/progdetails.cpp
Expand Up @@ -567,7 +567,7 @@ void ProgDetails::loadPage(void)
if (statusDate.isValid())
s += " " + MythDate::toString(statusDate, MythDate::kDateFull | MythDate::kAddYear);

addItem("MYTHTV_STATUS", QString("MythTV " + tr("Status")), s);
addItem("MYTHTV_STATUS", tr("MythTV Status"), s);

QString recordingRule;
QString lastRecorded;
Expand Down

0 comments on commit 59703a7

Please sign in to comment.