diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-07-12 00:16:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-12 00:16:49 +0200 |
commit | ff2ea392f9ffc32fdce168b9325d30a27c397684 (patch) | |
tree | 1de106769e2376edaa435cd8319238a8b5d16f73 /progress.c | |
parent | Merge branch 'qn/clone-doc-use-long-form' (diff) | |
parent | l10n: localizable upload progress messages (diff) | |
download | git-ff2ea392f9ffc32fdce168b9325d30a27c397684.tar.xz git-ff2ea392f9ffc32fdce168b9325d30a27c397684.zip |
Merge branch 'dr/progress-i18n'
Progress messages have been made localizable.
* dr/progress-i18n:
l10n: localizable upload progress messages
Diffstat (limited to 'progress.c')
-rw-r--r-- | progress.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/progress.c b/progress.c index 095dcd0ddf..277db8afa2 100644 --- a/progress.c +++ b/progress.c @@ -144,8 +144,7 @@ static void throughput_string(struct strbuf *buf, uint64_t total, strbuf_addstr(buf, ", "); strbuf_humanise_bytes(buf, total); strbuf_addstr(buf, " | "); - strbuf_humanise_bytes(buf, rate * 1024); - strbuf_addstr(buf, "/s"); + strbuf_humanise_rate(buf, rate * 1024); } void display_throughput(struct progress *progress, uint64_t total) |