From: Vasco Almeida Date: Thu, 15 Sep 2016 14:59:00 +0000 (+0000) Subject: i18n: config: mark error message for translation X-Git-Tag: v2.11.0-rc0~122^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccf638015418d59aafa475b181334f12c1b916df;p=git i18n: config: mark error message for translation Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- diff --git a/builtin/config.c b/builtin/config.c index 6cbf73369b..05843a0f96 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -622,8 +622,8 @@ int cmd_config(int argc, const char **argv, const char *prefix) value = normalize_value(argv[0], argv[1]); ret = git_config_set_in_file_gently(given_config_source.file, argv[0], value); if (ret == CONFIG_NOTHING_SET) - error("cannot overwrite multiple values with a single value\n" - " Use a regexp, --add or --replace-all to change %s.", argv[0]); + error(_("cannot overwrite multiple values with a single value\n" + " Use a regexp, --add or --replace-all to change %s."), argv[0]); return ret; } else if (actions == ACTION_SET_ALL) {