Skip to content

Commit

Permalink
Translation context changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Riendeau committed Aug 9, 2013
1 parent 9554e88 commit 2f6fa49
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mythtv/libs/libmythtv/channelscan/paneexistingscanimport.h
Expand Up @@ -40,12 +40,14 @@

class PaneExistingScanImport : public VerticalConfigurationGroup
{
Q_DECLARE_TR_FUNCTIONS(PaneExistingScanImport)

public:
PaneExistingScanImport() :
VerticalConfigurationGroup(false,false,true,false),
sourceid(0), scanSelect(new TransComboBoxSetting())
{
scanSelect->setLabel(QObject::tr("Scan to Import"));
scanSelect->setLabel(tr("Scan to Import"));
addChild(scanSelect);
}

Expand All @@ -64,7 +66,7 @@ class PaneExistingScanImport : public VerticalConfigurationGroup
QString scanDate = MythDate::toString(
scans[i].scandate, MythDate::kDateTimeFull);
QString proc = (scans[i].processed) ?
QObject::tr("processed") : QObject::tr("unprocessed");
tr("processed") : tr("unprocessed");

scanSelect->addSelection(
QString("%1 %2").arg(scanDate).arg(proc),
Expand Down

0 comments on commit 2f6fa49

Please sign in to comment.