Skip to content

Commit

Permalink
Fix an untranslated string -- "(forced)" for subtitle track description.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed May 23, 2012
1 parent d5ce98e commit fc07bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/avformatdecoder.cpp
Expand Up @@ -3619,7 +3619,7 @@ QString AvFormatDecoder::GetTrackDesc(uint type, uint trackNo) const

return QObject::tr("Subtitle") + QString(" %1: %2%3")
.arg(trackNo + 1).arg(iso639_key_toName(lang_key))
.arg(forced ? " (forced)" : "");
.arg(forced ? QObject::tr(" (forced)") : "");
}
else
{
Expand Down

0 comments on commit fc07bfd

Please sign in to comment.