summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorJiang Xin <worldhello.net@gmail.com>2013-04-12 03:53:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-12 15:11:20 (GMT)
commit62901179cfbb86e31a4bed098cee9734a701912b (patch)
tree2ba2b41ce5cea18f5d1ca63a8dc53c067466c7a2 /wt-status.c
parent6a38ef2ced55f0a8a7967581934e40f79e1d8733 (diff)
downloadgit-62901179cfbb86e31a4bed098cee9734a701912b.zip
git-62901179cfbb86e31a4bed098cee9734a701912b.tar.gz
git-62901179cfbb86e31a4bed098cee9734a701912b.tar.bz2
i18n: make the translation of -u advice in one go
The advice (consider use of -u when read_directory takes too long) is separated into 3 different status_printf_ln() calls, and which brings trouble for translators. Since status_vprintf() called by status_printf_ln() can handle eol in buffer, we could simply join these lines into one paragraph. Signed-off-by: Jiang Xin <worldhello.net@gmail.com> Reviewed-by: Eric Sunshine <sunshine@sunshineco.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/wt-status.c b/wt-status.c
index 53c2222..bd1da37 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -1027,14 +1027,10 @@ void wt_status_print(struct wt_status *s)
if (advice_status_u_option && 2000 < s->untracked_in_ms) {
status_printf_ln(s, GIT_COLOR_NORMAL, "");
status_printf_ln(s, GIT_COLOR_NORMAL,
- _("It took %.2f seconds to enumerate untracked files."
- " 'status -uno'"),
- s->untracked_in_ms / 1000.0);
- status_printf_ln(s, GIT_COLOR_NORMAL,
- _("may speed it up, but you have to be careful not"
- " to forget to add"));
- status_printf_ln(s, GIT_COLOR_NORMAL,
- _("new files yourself (see 'git help status')."));
+ _("It took %.2f seconds to enumerate untracked files. 'status -uno'\n"
+ "may speed it up, but you have to be careful not to forget to add\n"
+ "new files yourself (see 'git help status')."),
+ s->untracked_in_ms / 1000.0);
}
} else if (s->commitable)
status_printf_ln(s, GIT_COLOR_NORMAL, _("Untracked files not listed%s"),