summaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/main.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index 3f99950054..90eae94f2b 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -157,10 +157,12 @@ static inline QString msgCoreLoadFailure(const QString &why)
static inline int askMsgSendFailed()
{
return QMessageBox::question(0, QApplication::translate("Application","Could not send message"),
- QCoreApplication::translate("Application", "Unable to send command line arguments to the already running instance. "
- "It appears to be not responding. Do you want to start a new instance of Creator?"),
- QMessageBox::Yes | QMessageBox::No | QMessageBox::Retry,
- QMessageBox::Retry);
+ QCoreApplication::translate("Application", "Unable to send command line arguments "
+ "to the already running instance. It appears to be not "
+ "responding. Do you want to start a new instance of "
+ "%1?").arg(Core::Constants::IDE_DISPLAY_NAME),
+ QMessageBox::Yes | QMessageBox::No | QMessageBox::Retry,
+ QMessageBox::Retry);
}
static void setHighDpiEnvironmentVariable()