From: Ævar Arnfjörð Bjarmason Date: Sun, 5 Sep 2010 12:52:02 +0000 (+0000) Subject: gettextize: git-gc "Auto packing the repository" message X-Git-Tag: ko-pu~10^2~76 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5d49b630dcf0255c6125f1eadceae53f0bd4501b;p=git.git gettextize: git-gc "Auto packing the repository" message Split up the "Auto packing the repository" message into quiet and verbose variants to make translation easier. Signed-off-by: Ævar Arnfjörð Bjarmason --- diff --git a/builtin/gc.c b/builtin/gc.c index 05aed1f9d..74e77cb08 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -216,13 +216,13 @@ int cmd_gc(int argc, const char **argv, const char *prefix) */ if (!need_to_gc()) return 0; - fprintf(stderr, - "Auto packing the repository for optimum performance.%s\n", - quiet - ? "" - : (" You may also\n" - "run \"git gc\" manually. See " - "\"git help gc\" for more information.")); + if (quiet) + fprintf(stderr, _("Auto packing the repository for optimum performance.\n")); + else + fprintf(stderr, + _("Auto packing the repository for optimum performance. You may also\n" + "run \"git gc\" manually. See " + "\"git help gc\" for more information.")); } else append_option(argv_repack, prune_expire && !strcmp(prune_expire, "now")