]> git.sur5r.net Git - minitube/commitdiff
Back to MB and KB, we're in string freeze
authorFlavio Tordini <flavio.tordini@gmail.com>
Sun, 10 Oct 2010 15:34:10 +0000 (17:34 +0200)
committerFlavio Tordini <flavio.tordini@gmail.com>
Sun, 10 Oct 2010 15:34:10 +0000 (17:34 +0200)
src/downloaditem.cpp

index 25e85cb50568f979cdd54a9506c2cb4272902ac8..ab92fc328a345c102d82f1a9acbb2534c12acf4b 100644 (file)
@@ -214,10 +214,10 @@ QString DownloadItem::formattedFilesize(qint64 size) {
         unit = tr("bytes");
     } else if (size < 1024*1024) {
         size /= 1024;
-        unit = tr("KiB");
+        unit = tr("KB");
     } else {
         size /= 1024*1024;
-        unit = tr("MiB");
+        unit = tr("MB");
     }
     return QString(QLatin1String("%1 %2")).arg(size).arg(unit);
 }
@@ -236,10 +236,10 @@ QString DownloadItem::formattedSpeed(double speed) {
         unit = tr("bytes/sec");
     } else if (speedInt < 1024*1024) {
         speedInt /= 1024;
-        unit = tr("KiB/sec");
+        unit = tr("KB/sec");
     } else {
         speedInt /= 1024*1024;
-        unit = tr("MiB/sec");
+        unit = tr("MB/sec");
     }
     return QString(QLatin1String("%1 %2")).arg(speedInt).arg(unit);
 }