diff options
Diffstat (limited to 'gui')
-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() { |