diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts
index dece10295e4..8013bb9b20e 100644
--- a/share/qtcreator/translations/qtcreator_de.ts
+++ b/share/qtcreator/translations/qtcreator_de.ts
@@ -19692,7 +19692,7 @@ should a repository require SSH-authentication (see documentation on SSH and the
(SDK-Version: %1, NDK-Version: %2)
- Download and install Android SDK Tools to: %1?
+ Download and install Android SDK Tools to %1?Android-SDK-Tools herunterladen und nach %1 installieren?
diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts
index 0a7cda15516..ca1e07984e3 100644
--- a/share/qtcreator/translations/qtcreator_ru.ts
+++ b/share/qtcreator/translations/qtcreator_ru.ts
@@ -1967,7 +1967,7 @@ Prefix with : if the process is private, use a lowercase name if the process is
Выбранный путь уже содержит корректный пакет инструментов SDK.
- Download and install Android SDK Tools to: %1?
+ Download and install Android SDK Tools to %1?Загрузить и установить инструменты Android SDK в %1?
diff --git a/src/plugins/android/androidsettingswidget.cpp b/src/plugins/android/androidsettingswidget.cpp
index 58f03d6cb2e..7fe0d09c708 100644
--- a/src/plugins/android/androidsettingswidget.cpp
+++ b/src/plugins/android/androidsettingswidget.cpp
@@ -682,8 +682,9 @@ void AndroidSettingsWidget::downloadSdk()
return;
}
- const QString message = tr("Download and install Android SDK Tools to: %1?")
- .arg(m_ui.SDKLocationPathChooser->filePath().cleanPath().toUserOutput());
+ const QString message = tr("Download and install Android SDK Tools to %1?")
+ .arg("\n\"" + m_ui.SDKLocationPathChooser->filePath().cleanPath().toUserOutput()
+ + "\"");
auto userInput = QMessageBox::information(this, AndroidSdkDownloader::dialogTitle(),
message, QMessageBox::Yes | QMessageBox::No);
if (userInput == QMessageBox::Yes)