Skip to content

Commit

Permalink
Replace concatenated string so it can be more easily translated.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Dec 4, 2012
1 parent 56c668c commit 901a1f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/customedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ void CustomEdit::loadClauses()
new MythUIButtonListItem(m_clauseList, rule.title,
qVariantFromValue(rule));

rule.title = QString(tr("Category type") +
" ('movie', 'series', 'sports' " + tr("or") + " 'tvshow')");
rule.title = tr("Category type (%1)", "List of hardcoded category types")
.arg("'movie', 'series', 'sports', 'tvshow'");
rule.subtitle.clear();
rule.description = "program.category_type = 'sports' ";
new MythUIButtonListItem(m_clauseList, rule.title,
Expand Down

0 comments on commit 901a1f8

Please sign in to comment.