diff --git a/gtk/torrent-cell-renderer.c b/gtk/torrent-cell-renderer.c index 2fd7e0fba..0c3e4e73f 100644 --- a/gtk/torrent-cell-renderer.c +++ b/gtk/torrent-cell-renderer.c @@ -216,7 +216,8 @@ static void getShortStatusString(GString* gstr, tr_torrent const* tor, tr_stat c tr_strlratio(ratioStr, st->ratio, sizeof(ratioStr)); getShortTransferString(tor, st, uploadSpeed_KBps, downloadSpeed_KBps, speedStr, sizeof(speedStr)); /* download/upload speed, ratio */ - g_string_append_printf(gstr, "%1$s Ratio: %2$s", speedStr, ratioStr); + g_string_append_printf(gstr, "%s ", speedStr); + g_string_append_printf(gstr, _("Ratio: %s"), ratioStr); break; }