forked from qt-creator/qt-creator
UI text: edit QNX messages
Fix capitalization of UI text. Change-Id: I9fad22edb4151ba0a63738fdb5aafe9d60c5b051 Reviewed-by: Tobias Nätterlund <tobias.naetterlund@kdab.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -65,7 +65,7 @@
|
|||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QLabel" name="label_2">
|
<widget class="QLabel" name="label_2">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Package Version:</string>
|
<string>Package version:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QLabel" name="label_3">
|
<widget class="QLabel" name="label_3">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Package Build ID:</string>
|
<string>Package build ID:</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -111,8 +111,8 @@ void BlackBerryDeployConfiguration::setupBarDescriptor()
|
|||||||
|
|
||||||
if (!reader.fetch(barDescriptorTemplate)) {
|
if (!reader.fetch(barDescriptorTemplate)) {
|
||||||
QMessageBox::warning(Core::ICore::mainWindow(),
|
QMessageBox::warning(Core::ICore::mainWindow(),
|
||||||
tr("Error while setting up bar descriptor"),
|
tr("Cannot Set up Application Descriptor File"),
|
||||||
tr("Reading bar descriptor template failed"),
|
tr("Reading the bar descriptor template failed."),
|
||||||
QMessageBox::Ok);
|
QMessageBox::Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -123,8 +123,8 @@ void BlackBerryDeployConfiguration::setupBarDescriptor()
|
|||||||
writer.write(content.toUtf8());
|
writer.write(content.toUtf8());
|
||||||
if (!writer.finalize()) {
|
if (!writer.finalize()) {
|
||||||
QMessageBox::warning(Core::ICore::mainWindow(),
|
QMessageBox::warning(Core::ICore::mainWindow(),
|
||||||
tr("Error while setting up bar descriptor"),
|
tr("Cannot Set up Application Descriptor File"),
|
||||||
tr("Failure writing bar descriptor file."),
|
tr("Writing the bar descriptor file failed."),
|
||||||
QMessageBox::Ok);
|
QMessageBox::Ok);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -142,7 +142,7 @@ void BlackBerryDeployConfiguration::addBarDescriptorToProject(const QString &bar
|
|||||||
|
|
||||||
QMessageBox::StandardButton button =
|
QMessageBox::StandardButton button =
|
||||||
QMessageBox::question(Core::ICore::mainWindow(),
|
QMessageBox::question(Core::ICore::mainWindow(),
|
||||||
tr("Add bar-descriptor.xml file to project"),
|
tr("Add bar-descriptor.xml File to Project"),
|
||||||
tr("Qt Creator has set up a bar descriptor file to enable "
|
tr("Qt Creator has set up a bar descriptor file to enable "
|
||||||
"packaging.\nDo you want to add it to the project?"),
|
"packaging.\nDo you want to add it to the project?"),
|
||||||
QMessageBox::Yes | QMessageBox::No);
|
QMessageBox::Yes | QMessageBox::No);
|
||||||
|
|||||||
Reference in New Issue
Block a user