~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to ktimetracker/idletimedetector.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2011-09-30 19:24:36 UTC
  • mfrom: (0.2.16)
  • Revision ID: package-import@ubuntu.com-20110930192436-ky7p9qgd4rbo28dk
Tags: 4:4.7.1+git110930-0ubuntu1
Update to current KDE 4.7 branch head, commit cfc4f38c

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
        QVBoxLayout *lay1 = new QVBoxLayout(wid);
111
111
        QHBoxLayout *lay2 = new QHBoxLayout();
112
112
        lay1->addLayout(lay2);
113
 
        QString idlemsg=QString( "Desktop has been idle since %1. What do you want to do ?" ).arg(backThen);
 
113
        QString idlemsg=i18n( "Desktop has been idle since %1. What do you want to do ?", backThen);
114
114
        QLabel *label = new QLabel( idlemsg, wid );
115
115
        lay2->addWidget( label );
116
116
        connect( dialog , SIGNAL(cancelClicked()) , this , SLOT(revert()) );