summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-06-17 20:20:55 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-17 22:45:48 (GMT)
commite8d7c3909d28ad6d01ae4d365ee332d724f423c0 (patch)
tree683810b7c2513ee2fc726c2a2f3b00b579fd6cbc /sequencer.c
parent9b0df093f6e9959bf8e788012d724a74f5f15a21 (diff)
downloadgit-e8d7c3909d28ad6d01ae4d365ee332d724f423c0.zip
git-e8d7c3909d28ad6d01ae4d365ee332d724f423c0.tar.gz
git-e8d7c3909d28ad6d01ae4d365ee332d724f423c0.tar.bz2
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>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 88a7c78..57b3671 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 ||