aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLothar Serra Mari2016-09-05 10:17:03 +0200
committerLothar Serra Mari2016-09-05 10:17:03 +0200
commit265ff03459c393054cc97503f4d5404a30e3b1e9 (patch)
tree11524333c15d6c3b3323f5fc58e4180acbd94452
parent460b786635309b4c934f4d8bbc7484c203280602 (diff)
downloadscummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.tar.gz
scummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.tar.bz2
scummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.zip
GUI: Enable translation for download speed string in cloud feature
-rw-r--r--gui/downloaddialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/downloaddialog.cpp b/gui/downloaddialog.cpp
index 8d5035fcb7..f33f03ac25 100644
--- a/gui/downloaddialog.cpp
+++ b/gui/downloaddialog.cpp
@@ -255,7 +255,7 @@ Common::String DownloadDialog::getSpeedLabelText() {
Common::String speed, speedUnits;
speed = getHumanReadableBytes(CloudMan.getDownloadSpeed(), speedUnits);
speedUnits += "/s";
- return Common::String::format("Download speed: %s %s", speed.c_str(), _(speedUnits.c_str()));
+ return Common::String::format(_("Download speed: %s %s"), speed.c_str(), _(speedUnits.c_str()));
}
void DownloadDialog::refreshWidgets() {