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">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Package Version:</string>
|
||||
<string>Package version:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -75,7 +75,7 @@
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="text">
|
||||
<string>Package Build ID:</string>
|
||||
<string>Package build ID:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -111,8 +111,8 @@ void BlackBerryDeployConfiguration::setupBarDescriptor()
|
||||
|
||||
if (!reader.fetch(barDescriptorTemplate)) {
|
||||
QMessageBox::warning(Core::ICore::mainWindow(),
|
||||
tr("Error while setting up bar descriptor"),
|
||||
tr("Reading bar descriptor template failed"),
|
||||
tr("Cannot Set up Application Descriptor File"),
|
||||
tr("Reading the bar descriptor template failed."),
|
||||
QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
@@ -123,8 +123,8 @@ void BlackBerryDeployConfiguration::setupBarDescriptor()
|
||||
writer.write(content.toUtf8());
|
||||
if (!writer.finalize()) {
|
||||
QMessageBox::warning(Core::ICore::mainWindow(),
|
||||
tr("Error while setting up bar descriptor"),
|
||||
tr("Failure writing bar descriptor file."),
|
||||
tr("Cannot Set up Application Descriptor File"),
|
||||
tr("Writing the bar descriptor file failed."),
|
||||
QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
@@ -142,7 +142,7 @@ void BlackBerryDeployConfiguration::addBarDescriptorToProject(const QString &bar
|
||||
|
||||
QMessageBox::StandardButton button =
|
||||
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 "
|
||||
"packaging.\nDo you want to add it to the project?"),
|
||||
QMessageBox::Yes | QMessageBox::No);
|
||||
|
||||
Reference in New Issue
Block a user