From e8d7c3909d28ad6d01ae4d365ee332d724f423c0 Mon Sep 17 00:00:00 2001 From: Vasco Almeida Date: Fri, 17 Jun 2016 20:20:55 +0000 Subject: [PATCH] i18n: sequencer: mark string for translation Mark informative string ": fast-forward" for translation. Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- sequencer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequencer.c b/sequencer.c index 88a7c782f5..57b367166d 100644 --- a/sequencer.c +++ b/sequencer.c @@ -225,7 +225,7 @@ static int fast_forward_to(const unsigned char *to, const unsigned char *from, if (checkout_fast_forward(from, to, 1)) exit(128); /* the callee should have complained already */ - strbuf_addf(&sb, "%s: fast-forward", action_name(opts)); + strbuf_addf(&sb, _("%s: fast-forward"), action_name(opts)); transaction = ref_transaction_begin(&err); if (!transaction || -- 2.47.1