add missing tr()s, etc., add some //: comments

This commit is contained in:
Oswald Buddenhagen
2009-04-17 21:11:52 +02:00
parent 9db13e3255
commit 6d5eeb7afb
35 changed files with 102 additions and 97 deletions

View File

@@ -85,9 +85,9 @@ private:
NewSessionInputDialog::NewSessionInputDialog(QStringList sessions)
{
setWindowTitle("New session name");
setWindowTitle(tr("New session name"));
QVBoxLayout *hlayout = new QVBoxLayout(this);
QLabel *label = new QLabel("Enter the name of the new session:", this);
QLabel *label = new QLabel(tr("Enter the name of the new session:"), this);
hlayout->addWidget(label);
m_newSessionLineEdit = new QLineEdit(this);
m_newSessionLineEdit->setValidator(new SessionValidator(this, sessions));