forked from qt-creator/qt-creator
Use tr for plurals
Change-Id: I22e7cd13a8bd20789e83945d99d5d57fd1eee392 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -477,7 +477,7 @@ CountingLabel::CountingLabel()
|
|||||||
|
|
||||||
void CountingLabel::updateCount(int count)
|
void CountingLabel::updateCount(int count)
|
||||||
{
|
{
|
||||||
setText(BaseFileFind::tr("%1 found").arg(count));
|
setText(BaseFileFind::tr("%n found", nullptr, count));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
|
|||||||
Reference in New Issue
Block a user