forked from qt-creator/qt-creator
Core::OutputWindow: Use proper numerus form
Change-Id: I0c8da8a49a436ff9f8bcdcb02756be1734406df2 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -412,7 +412,7 @@ void OutputWindow::handleOutputChunk(const QString &output, OutputFormat format)
|
||||
const int elided = out.size() - d->maxCharCount;
|
||||
out = out.left(d->maxCharCount / 2)
|
||||
+ "[[[... "
|
||||
+ tr("Elided %1 characters due to Application Output settings").arg(elided)
|
||||
+ tr("Elided %n characters due to Application Output settings", nullptr, elided)
|
||||
+ " ...]]]"
|
||||
+ out.right(d->maxCharCount / 2);
|
||||
setMaximumBlockCount(out.count('\n') + 1);
|
||||
|
||||
Reference in New Issue
Block a user