UI text: fix capitalization and unify message style

Change-Id: Ib5e24e6d697e5ce9c3960adecee5b015f7dee450
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
Leena Miettinen
2012-10-01 10:08:24 +02:00
parent 28c0929f9e
commit cd807f974d

View File

@@ -106,7 +106,7 @@ void SshKeyCreationDialog::saveKeys()
{ {
const QString parentDir = QFileInfo(privateKeyFilePath()).dir().path(); const QString parentDir = QFileInfo(privateKeyFilePath()).dir().path();
if (!QDir::root().mkpath(parentDir)) { if (!QDir::root().mkpath(parentDir)) {
QMessageBox::critical(this, tr("Failure To Save Key File"), QMessageBox::critical(this, tr("Cannot Save Key File"),
tr("Failed to create directory: '%1'.").arg(parentDir)); tr("Failed to create directory: '%1'.").arg(parentDir));
return; return;
} }
@@ -114,7 +114,7 @@ void SshKeyCreationDialog::saveKeys()
QFile privateKeyFile(privateKeyFilePath()); QFile privateKeyFile(privateKeyFilePath());
if (!privateKeyFile.open(QIODevice::WriteOnly) if (!privateKeyFile.open(QIODevice::WriteOnly)
|| !privateKeyFile.write(m_keyGenerator->privateKey())) { || !privateKeyFile.write(m_keyGenerator->privateKey())) {
QMessageBox::critical(this, tr("Saving Private Key File failed"), QMessageBox::critical(this, tr("Cannot Save Private Key File"),
tr("The private key file could not be saved: %1").arg(privateKeyFile.errorString())); tr("The private key file could not be saved: %1").arg(privateKeyFile.errorString()));
return; return;
} }
@@ -123,7 +123,7 @@ void SshKeyCreationDialog::saveKeys()
QFile publicKeyFile(publicKeyFilePath()); QFile publicKeyFile(publicKeyFilePath());
if (!publicKeyFile.open(QIODevice::WriteOnly) if (!publicKeyFile.open(QIODevice::WriteOnly)
|| !publicKeyFile.write(m_keyGenerator->publicKey())) { || !publicKeyFile.write(m_keyGenerator->publicKey())) {
QMessageBox::critical(this, tr("Saving Public Key File failed"), QMessageBox::critical(this, tr("Cannot Save Public Key File"),
tr("The public key file could not be saved: %1").arg(publicKeyFile.errorString())); tr("The public key file could not be saved: %1").arg(publicKeyFile.errorString()));
return; return;
} }