i18n: notes: mark options for translation
Mark options description of git prune for translation. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Vasco Almeida committed
Jun 17, 2016 at 20:21 UTC
b34c77e33e64844b00ed2836301032a031581d73
1 file changed
+2
-2
builtin/notes.c
+2
-2
@@ -934,8 +934,8 @@ static int prune(int argc, const char **argv, const char *prefix)
934
struct notes_tree *t;
935
int show_only = 0, verbose = 0;
936
struct option options[] = {
937
- OPT__DRY_RUN(&show_only, "do not remove, show only"),
938
- OPT__VERBOSE(&verbose, "report pruned notes"),
937
+ OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
938
+ OPT__VERBOSE(&verbose, N_("report pruned notes")),
939
OPT_END()
940
};
941