1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-27 12:16:10 +02:00

i18n: git-commit formatting messages

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2011-02-22 23:41:46 +00:00 committed by Junio C Hamano
parent 9c227655b0
commit fe8165cd4f
2 changed files with 8 additions and 8 deletions

View File

@ -695,12 +695,12 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
char *ai_tmp, *ci_tmp;
if (in_merge)
status_printf_ln(s, GIT_COLOR_NORMAL,
"\n"
_("\n"
"It looks like you may be committing a MERGE.\n"
"If this is not correct, please remove the file\n"
" %s\n"
"and try again.\n"
"",
""),
git_path("MERGE_HEAD"));
fprintf(s->fp, "\n");
@ -725,15 +725,15 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
ci_tmp = cut_ident_timestamp_part(committer_ident.buf);
if (strcmp(author_ident->buf, committer_ident.buf))
status_printf_ln(s, GIT_COLOR_NORMAL,
"%s"
"Author: %s",
_("%s"
"Author: %s"),
ident_shown++ ? "" : "\n",
author_ident->buf);
if (!user_ident_sufficiently_given())
status_printf_ln(s, GIT_COLOR_NORMAL,
"%s"
"Committer: %s",
_("%s"
"Committer: %s"),
ident_shown++ ? "" : "\n",
committer_ident.buf);

View File

@ -234,7 +234,7 @@ echo "#
# Author: $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>
#" >> expect
test_expect_success 'author different from committer' '
test_expect_success C_LOCALE_OUTPUT 'author different from committer' '
echo >>negative &&
git commit -e -m "sample"
@ -248,7 +248,7 @@ rm -f expect.tmp
echo "# Committer:
#" >> expect
test_expect_success 'committer is automatic' '
test_expect_success C_LOCALE_OUTPUT 'committer is automatic' '
echo >>negative &&
(