From: Ævar Arnfjörð Bjarmason Date: Tue, 22 Feb 2011 23:41:33 +0000 (+0000) Subject: i18n: git-add "Unstaged changes" message X-Git-Tag: v1.7.5-rc1~19^2~59 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ed2a808d683419f9daade78b737d070bd13c4d7f;p=git.git i18n: git-add "Unstaged changes" message Make the "Unstaged changes after refreshing the index:" translatable. It's displayed under `git add --refresh --verbose`. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/builtin/add.c b/builtin/add.c index 33b9970e1..a512597a5 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -188,7 +188,7 @@ static void refresh(int verbose, const char **pathspec) /* nothing */; seen = xcalloc(specs, 1); refresh_index(&the_index, verbose ? REFRESH_IN_PORCELAIN : REFRESH_QUIET, - pathspec, seen, "Unstaged changes after refreshing the index:"); + pathspec, seen, _("Unstaged changes after refreshing the index:")); for (i = 0; i < specs; i++) { if (!seen[i]) die(_("pathspec '%s' did not match any files"), pathspec[i]);