Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
config: mark an error message up for translation
author
Christian Couder
<christian.couder@gmail.com>
Mon, 27 Feb 2017 17:59:58 +0000
(18:59 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 1 Mar 2017 21:24:21 +0000
(13:24 -0800)
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
1d1bdaf
)
diff --git
a/config.c
b/config.c
index 83fdecb1bc9f6f31bc625c79c1d3c12ba5b27f77..2eaf8ad77a37812ae2baf3c06c00c740c4f69371 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-1701,8
+1701,8
@@
int git_config_get_untracked_cache(void)
if (!strcasecmp(v, "keep"))
return -1;
- error("unknown core.untrackedCache value '%s'; "
-
"using 'keep' default value"
, v);
+ error(
_(
"unknown core.untrackedCache value '%s'; "
+
"using 'keep' default value")
, v);
return -1;
}