i18n: config: mark error message for translation
authorVasco Almeida <vascomalmeida@sapo.pt>
Thu, 15 Sep 2016 14:59:00 +0000 (14:59 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 15 Sep 2016 20:17:32 +0000 (13:17 -0700)
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/config.c
index 6cbf73369b2f6cf41430d78e0a5e8ffa18de6d15..05843a0f96e4dc0dbf9fbc7310039794b57947e7 100644 (file)
@@ -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) {