aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2017-01-18 14:36:12 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2017-01-18 13:41:38 +0000
commitf446fdc077da832cca65203d5cb5a5191d602996 (patch)
treec47a433c8fef4a7be96b93afa9acefcdd623b935
parentaa7d1ec296501c7ca6956d9532769f64735da2a8 (diff)
Fixing capitalisation of titles
Change-Id: I6a915cc69fe1cf6630d1a9a0fdb6b7a8d39b306c Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--src/plugins/android/androidcreatekeystorecertificate.cpp2
-rw-r--r--src/plugins/autotest/testresultspane.cpp2
-rw-r--r--src/plugins/scxmleditor/common/mainwidget.cpp2
-rw-r--r--tests/manual/ssh/sftpfsmodel/window.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/android/androidcreatekeystorecertificate.cpp b/src/plugins/android/androidcreatekeystorecertificate.cpp
index 317f8f22125..dd2906e5754 100644
--- a/src/plugins/android/androidcreatekeystorecertificate.cpp
+++ b/src/plugins/android/androidcreatekeystorecertificate.cpp
@@ -152,7 +152,7 @@ void AndroidCreateKeystoreCertificate::on_buttonBox_accepted()
if (!validateUserInput())
return;
- m_keystoreFilePath = Utils::FileName::fromString(QFileDialog::getSaveFileName(this, tr("Keystore file name"),
+ m_keystoreFilePath = Utils::FileName::fromString(QFileDialog::getSaveFileName(this, tr("Keystore Filename"),
QDir::homePath() + QLatin1String("/android_release.keystore"),
tr("Keystore files (*.keystore *.jks)")));
if (m_keystoreFilePath.isEmpty())
diff --git a/src/plugins/autotest/testresultspane.cpp b/src/plugins/autotest/testresultspane.cpp
index 0f5173c8a9b..ba07b2fa7e1 100644
--- a/src/plugins/autotest/testresultspane.cpp
+++ b/src/plugins/autotest/testresultspane.cpp
@@ -559,7 +559,7 @@ void TestResultsPane::onCopyWholeTriggered()
void TestResultsPane::onSaveWholeTriggered()
{
const QString fileName = QFileDialog::getSaveFileName(Core::ICore::dialogParent(),
- tr("Save Output To..."));
+ tr("Save Output To"));
if (fileName.isEmpty())
return;
diff --git a/src/plugins/scxmleditor/common/mainwidget.cpp b/src/plugins/scxmleditor/common/mainwidget.cpp
index d67003eb8b3..d2c880d0d60 100644
--- a/src/plugins/scxmleditor/common/mainwidget.cpp
+++ b/src/plugins/scxmleditor/common/mainwidget.cpp
@@ -425,7 +425,7 @@ void MainWidget::exportToImage()
.arg(suggestedFileName)
.arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmss"));
const QString selectedFileName = QFileDialog::getSaveFileName(this,
- tr("Export Canvas To Image"),
+ tr("Export Canvas to Image"),
suggestedFileName,
saveImageFileFilter());
if (!selectedFileName.isEmpty()) {
diff --git a/tests/manual/ssh/sftpfsmodel/window.cpp b/tests/manual/ssh/sftpfsmodel/window.cpp
index 79a05fad38a..90e9906b14a 100644
--- a/tests/manual/ssh/sftpfsmodel/window.cpp
+++ b/tests/manual/ssh/sftpfsmodel/window.cpp
@@ -82,7 +82,7 @@ void SftpFsWindow::downloadFile()
const QModelIndexList selectedIndexes = m_ui->fsView->selectionModel()->selectedIndexes();
if (selectedIndexes.count() != 2)
return;
- const QString targetFilePath = QFileDialog::getSaveFileName(this, tr("Choose target file"),
+ const QString targetFilePath = QFileDialog::getSaveFileName(this, tr("Choose Target File"),
QDir::tempPath());
if (targetFilePath.isEmpty())
return;