Improvement for test 'TestTemplatePlaceholders()'.
--HG-- branch : release
This commit is contained in:
parent
d8a2464455
commit
55441a4483
|
@ -240,7 +240,15 @@ void TST_BuitInRegExp::TestTemplatePlaceholders()
|
||||||
const QRegularExpression re(QLatin1String("^[^\\s]+$"));
|
const QRegularExpression re(QLatin1String("^[^\\s]+$"));
|
||||||
if (re.match(translated).hasMatch())
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user