Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
i18n: sequencer: mark string for translation
author
Vasco Almeida
<vascomalmeida@sapo.pt>
Fri, 17 Jun 2016 20:20:55 +0000
(20:20 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 17 Jun 2016 22:45:48 +0000
(15:45 -0700)
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>
sequencer.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
9b0df09
)
diff --git
a/sequencer.c
b/sequencer.c
index 88a7c782f5839c929d5f7138c6d233ce86447703..57b367166d71a68e452092cf34384cdd806359a3 100644
(file)
--- 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 ||