forked from qt-creator/qt-creator
tr()-fixes for 2.6.
- Fix typos and various capitalization errors. - Fix wrong placeholders. - Remove QCoreApplication::tr(). - Fix androidpackagecreationwidget.ui, remove translation from combo and clean up some HTML markup. Change-Id: I51bcdad90c770c0f861a9d17e92b9c9222c6e8bf Reviewed-by: Robert Löhning <robert.loehning@nokia.com>
This commit is contained in:
@@ -438,9 +438,9 @@ bool AndroidConfigurations::createAVD(int minApiLevel) const
|
||||
QStringListModel model(sdkTargets(minApiLevel));
|
||||
avdDialog.targetComboBox->setModel(&model);
|
||||
if (!model.rowCount()) {
|
||||
QMessageBox::critical(0, tr("Create AVD Error"),
|
||||
tr("Cannot create a new AVD, not enough android SDKs available\n"
|
||||
"Please install one SDK with api version >=%1").
|
||||
QMessageBox::critical(0, tr("Error Creating AVD"),
|
||||
tr("Cannot create a new AVD, no sufficiently recent Android SDK available.\n"
|
||||
"Please install an SDK of at least API version %1.").
|
||||
arg(minApiLevel));
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user