From c3300ca8b3ff0fd9ce8deb4fd0590514f1101b73 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Sun, 15 Mar 2009 20:56:40 +0100 Subject: [PATCH] Use %n for plural form in translation string --- src/uisupport/inputline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uisupport/inputline.cpp b/src/uisupport/inputline.cpp index c7018e2d..593af037 100644 --- a/src/uisupport/inputline.cpp +++ b/src/uisupport/inputline.cpp @@ -201,7 +201,7 @@ void InputLine::on_textChanged(QString newText) { clear(); if(lines.count() >= 4) { - QString msg = tr("Do you really want to paste %1 lines?", "", lines.count()).arg(lines.count()); + QString msg = tr("Do you really want to paste %n lines?", "", lines.count()); msg += "

"; for(int i = 0; i < 3; i++) { msg += lines[i].left(40); -- 2.20.1