summaryrefslogtreecommitdiff
path: root/t/t1450-fsck.sh
diff options
context:
space:
mode:
authorLibravatar Nguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-11-10 06:16:05 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-11-12 14:47:09 +0900
commit9d0a9e9089639d9bdcd7f616121e0683bb3d6e3e (patch)
treef0a7bff930100b9b575bcf2434a5084a414d6933 /t/t1450-fsck.sh
parentread-cache.c: turn die("internal error") to BUG() (diff)
downloadtgif-9d0a9e9089639d9bdcd7f616121e0683bb3d6e3e.tar.xz
read-cache.c: mark more strings for translation
There are a couple other improvements on these strings as well: - add missing colon (as separator) - quote paths - provide more information on error messages - keep first word in lowercase Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1450-fsck.sh')
-rwxr-xr-xt/t1450-fsck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1450-fsck.sh b/t/t1450-fsck.sh
index 0f2dd26f74..90c765df3a 100755
--- a/t/t1450-fsck.sh
+++ b/t/t1450-fsck.sh
@@ -754,7 +754,7 @@ test_expect_success 'detect corrupt index file in fsck' '
test_when_finished "mv .git/index.backup .git/index" &&
corrupt_index_checksum &&
test_must_fail git fsck --cache 2>errors &&
- grep "bad index file" errors
+ test_i18ngrep "bad index file" errors
'
test_done