X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fmultilineedit.cpp;h=3ee98d9370761682095ca229dbab063754df4d92;hb=3202bf5340396b5c6b467e8d92d808b1cbbbf7fb;hp=82f25de3147c4aac960bcb7f45301610bae9255b;hpb=a0b913b447f73a9993d8a3ed5538dfda15a301f2;p=quassel.git diff --git a/src/uisupport/multilineedit.cpp b/src/uisupport/multilineedit.cpp index 82f25de3..3ee98d93 100644 --- a/src/uisupport/multilineedit.cpp +++ b/src/uisupport/multilineedit.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2010 by the Quassel Project * + * Copyright (C) 2005-2012 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -658,7 +658,7 @@ void MultiLineEdit::on_textChanged() { clear(); if(lines.count() >= 4) { - QString msg = tr("Do you really want to paste %n lines?", "", lines.count()); + QString msg = tr("Do you really want to paste %n line(s)?", "", lines.count()); msg += "

"; for(int i = 0; i < 4; i++) { msg += Qt::escape(lines[i].left(40));