git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i18n: git-commit whence_s "merge/cherry-pick" message
@ 2012-02-01 17:20 Jiang Xin
  2012-02-01 23:46 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Jiang Xin @ 2012-02-01 17:20 UTC (permalink / raw)
  To: Git List, avarab; +Cc: Jiang Xin

Mark the "merge/cherry-pick" messages in whence_s for translation.
These messages returned from whence_s function are used as argument
to build other messages.

Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
---
 builtin/commit.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/builtin/commit.c b/builtin/commit.c
index eba137..663e1 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -202,10 +202,10 @@ static const char *whence_s(void)
 	case FROM_COMMIT:
 		break;
 	case FROM_MERGE:
-		s = "merge";
+		s = _("merge");
 		break;
 	case FROM_CHERRY_PICK:
-		s = "cherry-pick";
+		s = _("cherry-pick");
 		break;
 	}
 
-- 
1.7.9.3.g1fbd7

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-02-01 23:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-01 17:20 [PATCH] i18n: git-commit whence_s "merge/cherry-pick" message Jiang Xin
2012-02-01 23:46 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).