forked from qt-creator/qt-creator
tr()-Fixes
This commit is contained in:
@@ -2,29 +2,16 @@
|
||||
<ui version="4.0">
|
||||
<class>DebuggingHelperOptionPage</class>
|
||||
<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">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</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>
|
||||
<string><html><head/><body>
|
||||
<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> It is not strictly necessary for debugging with Qt Creator. </p></body></html></string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::RichText</enum>
|
||||
<enum>Qt::AutoText</enum>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
@@ -60,7 +47,7 @@ p, li { white-space: pre-wrap; }
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="Utils::PathChooser" name="dumperLocationChooser" native="true"/>
|
||||
<widget class="Utils::PathChooser" name="dumperLocationChooser"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
|
@@ -63,7 +63,7 @@ using namespace ProjectExplorer::Internal;
|
||||
|
||||
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)
|
||||
|
@@ -79,7 +79,7 @@
|
||||
<item>
|
||||
<widget class="QCheckBox" name="cleanOldAppOutputCheckBox">
|
||||
<property name="text">
|
||||
<string>Clear old appliction output</string>
|
||||
<string>Clear application output of previous runs</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@@ -395,8 +395,8 @@ void TargetSetupPage::addShadowBuildLocation()
|
||||
QList<ImportInfo> tmp;
|
||||
tmp.append(recursivelyCheckDirectoryForBuild(dir.absoluteFilePath(), m_proFilePath));
|
||||
if (tmp.isEmpty()) {
|
||||
QMessageBox::warning(this, tr("No builds found!"),
|
||||
tr("No builds for project file \"%1\" were found in directory \"%2\".",
|
||||
QMessageBox::warning(this, tr("No builds found"),
|
||||
tr("No builds for project file \"%1\" were found in the folder \"%2\".",
|
||||
"%1: pro-file, %2: directory that was checked.").
|
||||
arg(m_proFilePath, dir.absoluteFilePath()));
|
||||
return;
|
||||
|
Reference in New Issue
Block a user