forked from qt-creator/qt-creator
tr()-Fixes
This commit is contained in:
@@ -2,29 +2,16 @@
|
|||||||
<ui version="4.0">
|
<ui version="4.0">
|
||||||
<class>DebuggingHelperOptionPage</class>
|
<class>DebuggingHelperOptionPage</class>
|
||||||
<widget class="QWidget" name="DebuggingHelperOptionPage">
|
<widget class="QWidget" name="DebuggingHelperOptionPage">
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>736</width>
|
|
||||||
<height>198</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<string><html><head/><body>
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<p>The debugging helper is only used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals and Watchers&quot; view.</p>
|
||||||
p, li { white-space: pre-wrap; }
|
<p> It is not strictly necessary for debugging with Qt Creator. </p></body></html></string>
|
||||||
</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;">
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> The debugging helper in only used to produce a nice display of objects of certain type like QString or std::map in the &quot;Locals and Watchers&quot; view.</p>
|
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p>
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">It is not strictly necessary for debugging with Qt Creator.</p>
|
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html></string>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="textFormat">
|
<property name="textFormat">
|
||||||
<enum>Qt::RichText</enum>
|
<enum>Qt::AutoText</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="wordWrap">
|
<property name="wordWrap">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
@@ -60,7 +47,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="Utils::PathChooser" name="dumperLocationChooser" native="true"/>
|
<widget class="Utils::PathChooser" name="dumperLocationChooser"/>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
@@ -63,7 +63,7 @@ using namespace ProjectExplorer::Internal;
|
|||||||
|
|
||||||
static inline QString msgProgress(int n, int total)
|
static inline QString msgProgress(int n, int total)
|
||||||
{
|
{
|
||||||
return BuildManager::tr("Finished %n of %1 build steps", 0, n).arg(total);
|
return BuildManager::tr("Finished %1 of %n build steps", 0, n).arg(total);
|
||||||
}
|
}
|
||||||
|
|
||||||
BuildManager::BuildManager(ProjectExplorerPlugin *parent)
|
BuildManager::BuildManager(ProjectExplorerPlugin *parent)
|
||||||
|
@@ -79,7 +79,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="cleanOldAppOutputCheckBox">
|
<widget class="QCheckBox" name="cleanOldAppOutputCheckBox">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Clear old appliction output</string>
|
<string>Clear application output of previous runs</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@@ -395,8 +395,8 @@ void TargetSetupPage::addShadowBuildLocation()
|
|||||||
QList<ImportInfo> tmp;
|
QList<ImportInfo> tmp;
|
||||||
tmp.append(recursivelyCheckDirectoryForBuild(dir.absoluteFilePath(), m_proFilePath));
|
tmp.append(recursivelyCheckDirectoryForBuild(dir.absoluteFilePath(), m_proFilePath));
|
||||||
if (tmp.isEmpty()) {
|
if (tmp.isEmpty()) {
|
||||||
QMessageBox::warning(this, tr("No builds found!"),
|
QMessageBox::warning(this, tr("No builds found"),
|
||||||
tr("No builds for project file \"%1\" were found in directory \"%2\".",
|
tr("No builds for project file \"%1\" were found in the folder \"%2\".",
|
||||||
"%1: pro-file, %2: directory that was checked.").
|
"%1: pro-file, %2: directory that was checked.").
|
||||||
arg(m_proFilePath, dir.absoluteFilePath()));
|
arg(m_proFilePath, dir.absoluteFilePath()));
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user