Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
i18n: git-shortlog basic messages
author
Ævar Arnfjörð Bjarmason
<avarab@gmail.com>
Tue, 22 Feb 2011 23:42:32 +0000
(23:42 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 10 Mar 2011 07:52:58 +0000
(23:52 -0800)
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/shortlog.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
cb6aeb2
)
diff --git
a/builtin/shortlog.c
b/builtin/shortlog.c
index 1a21e4b0538565f7a64488ed7b3a5c317e559699..f5efc67c9cad24fe54d5c6ab7257d38a4b1727ac 100644
(file)
--- a/
builtin/shortlog.c
+++ b/
builtin/shortlog.c
@@
-158,7
+158,7
@@
void shortlog_add_commit(struct shortlog *log, struct commit *commit)
buffer = eol;
}
if (!author)
buffer = eol;
}
if (!author)
- die(
"Missing author: %s"
,
+ die(
_("Missing author: %s")
,
sha1_to_hex(commit->object.sha1));
if (log->user_format) {
struct pretty_print_context ctx = {0};
sha1_to_hex(commit->object.sha1));
if (log->user_format) {
struct pretty_print_context ctx = {0};
@@
-181,7
+181,7
@@
static void get_from_rev(struct rev_info *rev, struct shortlog *log)
struct commit *commit;
if (prepare_revision_walk(rev))
struct commit *commit;
if (prepare_revision_walk(rev))
- die(
"revision walk setup failed"
);
+ die(
_("revision walk setup failed")
);
while ((commit = get_revision(rev)) != NULL)
shortlog_add_commit(log, commit);
}
while ((commit = get_revision(rev)) != NULL)
shortlog_add_commit(log, commit);
}
@@
-284,7
+284,7
@@
int cmd_shortlog(int argc, const char **argv, const char *prefix)
argc = parse_options_end(&ctx);
if (setup_revisions(argc, argv, &rev, NULL) != 1) {
argc = parse_options_end(&ctx);
if (setup_revisions(argc, argv, &rev, NULL) != 1) {
- error(
"unrecognized argument: %s"
, argv[1]);
+ error(
_("unrecognized argument: %s")
, argv[1]);
usage_with_options(shortlog_usage, options);
}
usage_with_options(shortlog_usage, options);
}
@@
-296,7
+296,7
@@
int cmd_shortlog(int argc, const char **argv, const char *prefix)
add_head_to_pending(&rev);
if (rev.pending.nr == 0) {
if (isatty(0))
add_head_to_pending(&rev);
if (rev.pending.nr == 0) {
if (isatty(0))
- fprintf(stderr,
"(reading log message from standard input)\n"
);
+ fprintf(stderr,
_("(reading log message from standard input)\n")
);
read_from_stdin(&log);
}
else
read_from_stdin(&log);
}
else