The "me" variable is used in many later messages to indicate whether we're using revert or cherry-pick. Mark it for translation for later use. Also leave a TRANSLATORS message explaining what these are for. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- builtin/revert.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/builtin/revert.c b/builtin/revert.c index ece0c0f..2f319f8 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -552,7 +552,9 @@ static int revert_or_cherry_pick(int argc, const char **argv) struct rev_info revs; git_config(git_default_config, NULL); - me = action == REVERT ? "revert" : "cherry-pick"; + /* TRANSLATORS: This is used in several error messages indicating + the name of the current program */ + me = action == REVERT ? N_("revert") : N_("cherry-pick"); setenv(GIT_REFLOG_ACTION, me, 0); parse_args(argc, argv); -- 1.7.2.3.313.gcd15 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html