i18n: sequencer: mark string for translation

Mark informative string "<action_name>: fast-forward" for translation.

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Vasco Almeida 2016-06-17 20:20:55 +00:00 committed by Junio C Hamano
parent 9b0df093f6
commit e8d7c3909d
1 changed files with 1 additions and 1 deletions

View File

@ -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 ||