From kde-commits Sun Nov 09 19:51:27 2008 From: Chusslove Illich Date: Sun, 09 Nov 2008 19:51:27 +0000 To: kde-commits Subject: KDE/kdelibs/kate/utils Message-Id: <1226260287.290382.15541.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122626030926731 SVN commit 882102 by ilic: i18n fixes: proper placeholders (only placeholder for the number may be missing in singular), linking contexts. M +4 -2 katecmds.cpp --- trunk/KDE/kdelibs/kate/utils/katecmds.cpp #882101:882102 @@ -583,8 +583,10 @@ } } - msg = i18np("1 replacement done on 1 line", "%1 replacements done on %2", replacementsDone, - i18np("1 line", "%1 lines", linesTouched)); + msg = i18ncp("%2 is the translation of the next message", + "1 replacement done on %2", "%1 replacements done on %2", replacementsDone, + i18ncp("substituted into the previous message", + "1 line", "%1 lines", linesTouched)); doc->editEnd();