UI text: fix capitalization

Reviewed-by: con
This commit is contained in:
Leena Miettinen
2011-03-21 16:16:19 +01:00
parent b8441f0e4f
commit ed070ff235
7 changed files with 13 additions and 13 deletions

View File

@@ -311,7 +311,7 @@ void ExternalToolModel::revertTool(const QModelIndex &modelIndex)
QModelIndex ExternalToolModel::addCategory()
{
const QString &categoryBase = tr("New category");
const QString &categoryBase = tr("New Category");
QString category = categoryBase;
int count = 0;
while (m_tools.contains(category)) {
@@ -337,7 +337,7 @@ QModelIndex ExternalToolModel::addTool(const QModelIndex &atIndex)
ExternalTool *tool = new ExternalTool;
tool->setDisplayCategory(category);
tool->setDisplayName(tr("New tool"));
tool->setDisplayName(tr("New Tool"));
tool->setDescription(tr("This tool prints a line of useful text"));
#ifdef Q_OS_WIN
tool->setExecutables(QStringList() << "cmd");