зеркало из https://github.com/microsoft/git.git
i18n: git-branch "(no branch)" message
Gettextize the "(no branch)" message that's shown by "git branch" when you're in a detached HEAD. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
a5760906e7
Коммит
409fa556ce
|
@ -476,7 +476,7 @@ static void show_detached(struct ref_list *ref_list)
|
|||
|
||||
if (head_commit && is_descendant_of(head_commit, ref_list->with_commit)) {
|
||||
struct ref_item item;
|
||||
item.name = xstrdup("(no branch)");
|
||||
item.name = xstrdup(_("(no branch)"));
|
||||
item.len = strlen(item.name);
|
||||
item.kind = REF_LOCAL_BRANCH;
|
||||
item.dest = NULL;
|
||||
|
|
|
@ -72,7 +72,7 @@ cat >expect <<'EOF'
|
|||
branch-two
|
||||
master
|
||||
EOF
|
||||
test_expect_success 'git branch shows detached HEAD properly' '
|
||||
test_expect_success C_LOCALE_OUTPUT 'git branch shows detached HEAD properly' '
|
||||
git checkout HEAD^0 &&
|
||||
git branch >actual &&
|
||||
test_cmp expect actual
|
||||
|
|
Загрузка…
Ссылка в новой задаче