Fix source strings

Change-Id: I3c96c467f79fa7722c270a5887997294a7042adc
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
Jarek Kobus
2012-08-30 11:08:26 +02:00
committed by Oswald Buddenhagen
parent c00a76bde3
commit cd91925dcd
2 changed files with 3 additions and 3 deletions

View File

@@ -244,7 +244,7 @@ StartApplicationDialog::StartApplicationDialog(QWidget *parent)
d->debuginfoPathChooser = new PathChooser(this); d->debuginfoPathChooser = new PathChooser(this);
d->debuginfoPathChooser->setPromptDialogTitle(tr("Select Location of Debugging Information")); d->debuginfoPathChooser->setPromptDialogTitle(tr("Select Location of Debugging Information"));
d->debuginfoPathChooser->setToolTip(tr( d->debuginfoPathChooser->setToolTip(tr(
"Base path for external debug information and debug sources." "Base path for external debug information and debug sources. "
"If empty, $SYSROOT/usr/lib/debug will be chosen.")); "If empty, $SYSROOT/usr/lib/debug will be chosen."));
QFrame *line = new QFrame(this); QFrame *line = new QFrame(this);

View File

@@ -242,8 +242,8 @@ void SearchResultWidget::addResults(const QList<SearchResultItem> &items, Search
m_sizeWarningActive = true; m_sizeWarningActive = true;
emit paused(true); emit paused(true);
Core::InfoBarEntry info(QLatin1String(SIZE_WARNING_ID), Core::InfoBarEntry info(QLatin1String(SIZE_WARNING_ID),
tr("The search resulted in more than %1 items, do you still want to continue?") tr("The search resulted in more than %n items, do you still want to continue?",
.arg(SEARCHRESULT_WARNING_LIMIT)); 0, SEARCHRESULT_WARNING_LIMIT));
info.setCancelButtonInfo(tr("Cancel"), this, SLOT(cancelAfterSizeWarning())); info.setCancelButtonInfo(tr("Cancel"), this, SLOT(cancelAfterSizeWarning()));
info.setCustomButtonInfo(tr("Continue"), this, SLOT(continueAfterSizeWarning())); info.setCustomButtonInfo(tr("Continue"), this, SLOT(continueAfterSizeWarning()));
m_infoBar.addInfo(info); m_infoBar.addInfo(info);