diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-09-15 14:58:58 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-15 13:17:32 -0700 |
commit | e3f54bff43e61934643108ee26bfe1ad0c19c6a3 (patch) | |
tree | ef352fbf30a7042bbf2596417282fadfb4e185a9 /t/t8003-blame-corner-cases.sh | |
parent | 6ebdac1bab966b720d776aa43ca188fe378b1f4b (diff) | |
download | git-e3f54bff43e61934643108ee26bfe1ad0c19c6a3.tar.gz |
i18n: blame: mark error messages for translation
Mark error messages for translation passed to die() function.
Change "Cannot" to lowercase following the usual style.
Reflect changes to test by using test_i18ngrep.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t8003-blame-corner-cases.sh')
-rwxr-xr-x | t/t8003-blame-corner-cases.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t8003-blame-corner-cases.sh b/t/t8003-blame-corner-cases.sh index e48370dfa0..661f9d430d 100755 --- a/t/t8003-blame-corner-cases.sh +++ b/t/t8003-blame-corner-cases.sh @@ -212,12 +212,12 @@ EOF test_expect_success 'blame -L with invalid start' ' test_must_fail git blame -L5 tres 2>errors && - grep "has only 2 lines" errors + test_i18ngrep "has only 2 lines" errors ' test_expect_success 'blame -L with invalid end' ' test_must_fail git blame -L1,5 tres 2>errors && - grep "has only 2 lines" errors + test_i18ngrep "has only 2 lines" errors ' test_expect_success 'blame parses <end> part of -L' ' |