From: Vasco Almeida Date: Fri, 17 Jun 2016 20:21:15 +0000 (+0000) Subject: i18n: notes: mark options for translation X-Git-Tag: v2.10.0-rc0~130^2~12 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b34c77e33e64844b00ed2836301032a031581d73 i18n: notes: mark options for translation Mark options description of git prune for translation. Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- diff --git a/builtin/notes.c b/builtin/notes.c index d11e6eb531..0572051762 100644 --- a/builtin/notes.c +++ b/builtin/notes.c @@ -934,8 +934,8 @@ static int prune(int argc, const char **argv, const char *prefix) struct notes_tree *t; int show_only = 0, verbose = 0; struct option options[] = { - OPT__DRY_RUN(&show_only, "do not remove, show only"), - OPT__VERBOSE(&verbose, "report pruned notes"), + OPT__DRY_RUN(&show_only, N_("do not remove, show only")), + OPT__VERBOSE(&verbose, N_("report pruned notes")), OPT_END() };