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