Skip to content

Commit

Permalink
Remove the concatenation to permit proper translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Riendeau committed Jul 1, 2012
1 parent aad4f63 commit e9a7a13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythplugins/mythgame/mythgame/gameui.cpp
Expand Up @@ -267,8 +267,8 @@ void GameUI::itemClicked(MythUIButtonListItem*)
}
else
{
QString msg = tr("Choose System for") +
":\n" + node->getString();
QString msg = QString(tr("Choose System for:\n%1"))
.arg(node->getString());
MythScreenStack *popupStack = GetMythMainWindow()->
GetStack("popup stack");
MythDialogBox *chooseSystemPopup = new MythDialogBox(
Expand Down

0 comments on commit e9a7a13

Please sign in to comment.