forked from qt-creator/qt-creator
UI text: fix Android strings
Fix capitalization in messages and UI text. Change-Id: I09fd826566f756cf2afaa4e29f93572089b9a8aa Reviewed-by: BogDan Vatra <bogdan@kde.org> Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -117,7 +117,7 @@ bool AndroidDeployStep::init()
|
||||
m_runDeployAction = m_deployAction;
|
||||
ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit());
|
||||
if (!tc || tc->type() != QLatin1String(Constants::ANDROID_TOOLCHAIN_TYPE)) {
|
||||
raiseError(tr("No android toolchain selected"));
|
||||
raiseError(tr("No Android toolchain selected."));
|
||||
return false;
|
||||
}
|
||||
m_ndkToolChainVersion = static_cast<AndroidToolChain *>(tc)->ndkToolChainVersion();
|
||||
|
||||
@@ -59,7 +59,7 @@ You must have Qt libraries compiled for that platform</string>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cleanLibsPushButton">
|
||||
<property name="text">
|
||||
<string>Clean libs on device</string>
|
||||
<string>Clean Libs on Device</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -76,7 +76,7 @@ QList<ProjectExplorer::Task> AndroidGdbServerKitInformation::validate(const Proj
|
||||
ProjectExplorer::KitInformation::ItemList AndroidGdbServerKitInformation::toUserOutput(ProjectExplorer::Kit *kit) const
|
||||
{
|
||||
return ProjectExplorer::KitInformation::ItemList()
|
||||
<< qMakePair(tr("GDBserver"), AndroidGdbServerKitInformation::gdbServer(kit).toUserOutput());
|
||||
<< qMakePair(tr("GDB server"), AndroidGdbServerKitInformation::gdbServer(kit).toUserOutput());
|
||||
}
|
||||
|
||||
ProjectExplorer::KitConfigWidget *AndroidGdbServerKitInformation::createConfigWidget(ProjectExplorer::Kit *kit) const
|
||||
@@ -127,12 +127,12 @@ AndroidGdbServerKitInformationWidget::AndroidGdbServerKitInformationWidget(Proje
|
||||
|
||||
QString AndroidGdbServerKitInformationWidget::displayName() const
|
||||
{
|
||||
return tr("Android GDBserver");
|
||||
return tr("Android GDB server");
|
||||
}
|
||||
|
||||
QString AndroidGdbServerKitInformationWidget::toolTip() const
|
||||
{
|
||||
return tr("The GDBserver to use for this kit.");
|
||||
return tr("The GDB server to use for this kit.");
|
||||
}
|
||||
|
||||
void AndroidGdbServerKitInformationWidget::makeReadOnly()
|
||||
@@ -185,7 +185,7 @@ void AndroidGdbServerKitInformationWidget::showDialog()
|
||||
connect(buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
|
||||
layout->addWidget(buttonBox);
|
||||
|
||||
dialog.setWindowTitle(tr("GDBserver for \"%1\"").arg(m_kit->displayName()));
|
||||
dialog.setWindowTitle(tr("GDB Server for \"%1\"").arg(m_kit->displayName()));
|
||||
|
||||
if (dialog.exec() == QDialog::Accepted)
|
||||
AndroidGdbServerKitInformation::setGdbSever(m_kit, chooser->fileName());
|
||||
|
||||
Reference in New Issue
Block a user