diff options
author | Lothar Serra Mari | 2016-09-05 10:17:03 +0200 |
---|---|---|
committer | Lothar Serra Mari | 2016-09-05 10:17:03 +0200 |
commit | 265ff03459c393054cc97503f4d5404a30e3b1e9 (patch) | |
tree | 11524333c15d6c3b3323f5fc58e4180acbd94452 /gui/downloaddialog.cpp | |
parent | 460b786635309b4c934f4d8bbc7484c203280602 (diff) | |
download | scummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.tar.gz scummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.tar.bz2 scummvm-rg350-265ff03459c393054cc97503f4d5404a30e3b1e9.zip |
GUI: Enable translation for download speed string in cloud feature
Diffstat (limited to 'gui/downloaddialog.cpp')
-rw-r--r-- | gui/downloaddialog.cpp | 2 |
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() { |