summaryrefslogtreecommitdiffstats
path: root/src/sdk
diff options
context:
space:
mode:
authorArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-06-02 16:54:31 +0300
committerArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-06-23 13:25:23 +0300
commit76c0b1f539058472a6c6de907069fa3569e2c702 (patch)
treeaa22c6e28eb3271ea18e03a0ad0b7878e94753b5 /src/sdk
parentf937a79971e2bb434fe47494049464774f6d4e41 (diff)
Translations: validate and update translatable user interface strings
Task-number: QTIFW-2245 Change-Id: Id9a79c7c572dc588c05ad37c67ae3f0431fa7cdb Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Iikka Eklund <iikka.eklund@qt.io>
Diffstat (limited to 'src/sdk')
-rw-r--r--src/sdk/sdkapp.h2
-rw-r--r--src/sdk/settingsdialog.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sdk/sdkapp.h b/src/sdk/sdkapp.h
index f1f3cf25c..7573241cf 100644
--- a/src/sdk/sdkapp.h
+++ b/src/sdk/sdkapp.h
@@ -101,7 +101,7 @@ public:
// we should check this and prompt the user to run the executable as admin if needed.
if (!binary.open(QIODevice::ReadOnly)) {
QFileInfo binaryInfo(binary.fileName());
- errorMessage = QObject::tr("Please make sure that the current user has reading access "
+ errorMessage = QObject::tr("Please make sure that the current user has read access "
"to file \"%1\" or try running %2 as an administrator.").arg(binaryInfo.fileName(), qAppName());
return false;
}
diff --git a/src/sdk/settingsdialog.cpp b/src/sdk/settingsdialog.cpp
index 7b05f71c9..c3159ac36 100644
--- a/src/sdk/settingsdialog.cpp
+++ b/src/sdk/settingsdialog.cpp
@@ -132,7 +132,7 @@ QVariant RepositoryItem::data(int column, int role) const
case 3:
return SettingsDialog::tr("Add the password to authenticate on the server.");
case 4:
- return SettingsDialog::tr("The servers URL that contains a valid repository.");
+ return SettingsDialog::tr("The server's URL that contains a valid repository.");
default:
return QVariant();
} break;