X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fmultilineedit.cpp;h=3ee98d9370761682095ca229dbab063754df4d92;hp=82f25de3147c4aac960bcb7f45301610bae9255b;hb=fdfd62334f728bd05470c5191194d55027fec86e;hpb=d45d1044c030312878cb648fd1325ce70b079c44 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));