i18n: config: mark error message for translation

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Vasco Almeida committed Sep 15, 2016 at 14:59 UTC ccf638015418d59aafa475b181334f12c1b916df
1 file changed +2 -2
builtin/config.c
+2 -2
@@ -622,8 +622,8 @@ int cmd_config(int argc, const char **argv, const char *prefix)
622 value = normalize_value(argv[0], argv[1]);
623 ret = git_config_set_in_file_gently(given_config_source.file, argv[0], value);
624 if (ret == CONFIG_NOTHING_SET)
625 - error("cannot overwrite multiple values with a single value\n"
626 - " Use a regexp, --add or --replace-all to change %s.", argv[0]);
625 + error(_("cannot overwrite multiple values with a single value\n"
626 + " Use a regexp, --add or --replace-all to change %s."), argv[0]);
627 return ret;
628 }
629 else if (actions == ACTION_SET_ALL) {