AndroidDeviceDialog: improve defaultDeviceCheckBox text

Change-Id: I9036408d37ec3881acc85b85e272554bfa71226a
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Martin Kampas
2015-12-01 12:28:28 +01:00
committed by Martin Kampas
parent fdf968debb
commit 0f50c41d05
2 changed files with 5 additions and 2 deletions

View File

@@ -439,7 +439,7 @@ AndroidDeviceDialog::AndroidDeviceDialog(int apiLevel, const QString &abi, Andro
m_ui->deviceView->setUniformRowHeights(true);
m_ui->deviceView->setExpandsOnDoubleClick(false);
m_ui->defaultDeviceCheckBox->setText(tr("Always use this device for architecture %1").arg(abi));
m_ui->defaultDeviceCheckBox->setText(tr("Always use this device for architecture %1 for this project").arg(abi));
m_ui->noDeviceFoundLabel->setText(QLatin1String("<p align=\"center\"><span style=\" font-size:16pt;\">")
+ tr("No Device Found") + QLatin1String("</span></p><br/>")

View File

@@ -29,8 +29,11 @@
</item>
<item row="2" column="0" colspan="2">
<widget class="QCheckBox" name="defaultDeviceCheckBox">
<property name="toolTip">
<string>This can be later reset in deployment settings in the Projects mode.</string>
</property>
<property name="text">
<string>Always use this device for architecture %1</string>
<string>Always use this device for architecture %1 for this project</string>
</property>
</widget>
</item>