From dabac6b17d283c5f9fb74cbaefd60e16c8e7d5e4 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 13 Jan 2017 16:06:39 +0200 Subject: [PATCH] Better help messages. --HG-- branch : feature --- src/libs/vtools/dialogs/tools/dialogpiecepath.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp b/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp index 78c7eac97..c3247f8f1 100644 --- a/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp +++ b/src/libs/vtools/dialogs/tools/dialogpiecepath.cpp @@ -723,7 +723,7 @@ bool DialogPiecePath::PathIsValid() const { if (GetType() == PiecePathType::CustomSeamAllowance && FirstPointEqualLast(ui->listWidget)) { - url += tr("First point cannot be equal to the last point!"); + url += tr("First point of custom seam allowance cannot be equal to the last point!"); ui->helpLabel->setText(url); return false; } @@ -737,7 +737,7 @@ bool DialogPiecePath::PathIsValid() const if (not m_showMode && ui->comboBoxPiece->count() <= 0) { - url += tr("List of pieces is empty!"); + url += tr("List of objects is empty!"); ui->helpLabel->setText(url); return false; }