projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7b3742
)
i18n: git-fetch split up "(non-fast-forward)" message
author
Ævar Arnfjörð Bjarmason
<avarab@gmail.com>
Tue, 22 Feb 2011 23:41:54 +0000
(23:41 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 10 Mar 2011 07:52:54 +0000
(23:52 -0800)
Split up the "(non-fast-forward)" message from printf directives and
make it translatable.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch.c
patch
|
blob
|
history
diff --git
a/builtin/fetch.c
b/builtin/fetch.c
index 4f622fd0a1b06db9a3a61a39b1cd9879033b6b0a..ee2c5f50ac2aaae60b3faedbaf7946d696cbb13b 100644
(file)
--- a/
builtin/fetch.c
+++ b/
builtin/fetch.c
@@
-317,9
+317,9
@@
static int update_local_ref(struct ref *ref,
r ? _("unable to update local ref") : _("forced update"));
return r;
} else {
- sprintf(display, "! %-*s %-*s -> %s
(non-fast-forward)
",
- TRANSPORT_SUMMARY_WIDTH,
"[rejected]"
, REFCOL_WIDTH, remote,
- pretty_ref);
+ sprintf(display, "! %-*s %-*s -> %s
%s
",
+ TRANSPORT_SUMMARY_WIDTH,
_("[rejected]")
, REFCOL_WIDTH, remote,
+ pretty_ref
, _("(non-fast-forward)")
);
return 1;
}
}