Skip to content

Commit

Permalink
i18n: rerere: mark parseopt strings for translation
Browse files Browse the repository at this point in the history
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
pclouds authored and gitster committed Aug 20, 2012
1 parent f227631 commit 0ff07f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/rerere.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "xdiff-interface.h"

static const char * const rerere_usage[] = {
"git rerere [clear | forget path... | status | remaining | diff | gc]",
N_("git rerere [clear | forget path... | status | remaining | diff | gc]"),
NULL,
};

Expand Down Expand Up @@ -53,7 +53,7 @@ int cmd_rerere(int argc, const char **argv, const char *prefix)

struct option options[] = {
OPT_SET_INT(0, "rerere-autoupdate", &autoupdate,
"register clean resolutions in index", 1),
N_("register clean resolutions in index"), 1),
OPT_END(),
};

Expand Down

0 comments on commit 0ff07f2

Please sign in to comment.