From kde-commits Wed May 30 22:38:12 2007 From: =?utf-8?q?=C4=B0smail=20D=C3=B6nmez?= Date: Wed, 30 May 2007 22:38:12 +0000 To: kde-commits Subject: branches/KDE/3.5/kdelibs/kio/kio Message-Id: <1180564692.004775.26357.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=118056564708656 SVN commit 669977 by cartman: Do the translation in one go, fixes Turkish translation, thanks to toma and chusslove. M +1 -1 defaultprogress.cpp --- branches/KDE/3.5/kdelibs/kio/kio/defaultprogress.cpp #669976:669977 @@ -236,7 +236,7 @@ unsigned long totalFiles ) { if ( totalSize ) - return i18n( "%1 % of %2 " ).arg( percent ).arg( KIO::convertSize( totalSize ) ); + return i18n( "%1 % of %2 " ).arg( QString::number(percent) , KIO::convertSize( totalSize ) ); else if ( totalFiles ) return i18n( "%1 % of 1 file", "%1 % of %n files", totalFiles ).arg( percent ); else