Skip to content

Commit d720fd5

Browse files
committedMay 6, 2015
Fix connection speed unit names
1 parent 3a8e734 commit d720fd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/game.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2298,14 +2298,14 @@ bool Game::getServerContent(bool *aborted)
22982298
if ((USE_CURL == 0) ||
22992299
(!g_settings->getBool("enable_remote_media_server"))) {
23002300
float cur = client->getCurRate();
2301-
std::string cur_unit = gettext(" KB/s");
2301+
std::string cur_unit = gettext("KiB/s");
23022302

23032303
if (cur > 900) {
23042304
cur /= 1024.0;
2305-
cur_unit = gettext(" MB/s");
2305+
cur_unit = gettext("MiB/s");
Has conversations. Original line has conversations.
23062306
}
23072307

2308-
message << " ( " << cur << cur_unit << " )";
2308+
message << " (" << cur << ' ' << cur_unit << ")";
23092309
}
23102310

23112311
progress = 30 + client->mediaReceiveProgress() * 35 + 0.5;

0 commit comments

Comments
 (0)
Please sign in to comment.