Improvement for test 'TestTemplatePlaceholders()'.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2018-10-12 15:15:04 +03:00
parent d8a2464455
commit 55441a4483

View File

@ -240,7 +240,15 @@ void TST_BuitInRegExp::TestTemplatePlaceholders()
const QRegularExpression re(QLatin1String("^[^\\s]+$"));
if (re.match(translated).hasMatch())
{
translations.insert(translated);
if (not translations.contains(translated))
{
translations.insert(translated);
}
else
{
issue << QString("Duplicate translation '%1' for placeholder '%2' in locale '%3'.\n")
.arg(translated, placeholder, m_locale);
}
}
else
{