Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.

Reviewed-by: ossi
This commit is contained in:
Leena Miettinen
2010-05-14 15:45:43 +02:00
parent cf250f26c1
commit cf233161fa
55 changed files with 110 additions and 111 deletions

View File

@@ -338,7 +338,7 @@ void MaemoSettingsWidget::deployKey()
const QString &dir
= QFileInfo(currentConfig().server.privateKeyFile).path();
QString publicKeyFileName = QFileDialog::getOpenFileName(this,
tr("Choose public key file"), dir,
tr("Choose Public Key File"), dir,
tr("Public Key Files(*.pub);;All Files (*)"));
if (publicKeyFileName.isEmpty())
return;
@@ -360,7 +360,7 @@ void MaemoSettingsWidget::deployKey()
m_keyDeployer = new MaemoSshRunner(currentConfig().server, command);
connect(m_keyDeployer, SIGNAL(finished()),
this, SLOT(handleDeployThreadFinished()));
m_ui->deployKeyButton->setText(tr("Stop deploying"));
m_ui->deployKeyButton->setText(tr("Stop Deploying"));
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this, SLOT(stopDeploying()));
m_keyDeployer->start();
}