diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-09-15 14:59:00 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-15 13:17:32 -0700 |
commit | ccf638015418d59aafa475b181334f12c1b916df (patch) | |
tree | f8436ba76ffabd15132cb320fe48315169ca1215 | |
parent | i18n: branch: mark option description for translation (diff) | |
download | tgif-ccf638015418d59aafa475b181334f12c1b916df.tar.xz |
i18n: config: mark error message for translation
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |