aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-06-17 20:21:15 +0000
committerJunio C Hamano <gitster@pobox.com>2016-06-17 15:45:49 -0700
commitb34c77e33e64844b00ed2836301032a031581d73 (patch)
tree1cfe61de9515f4526be027536f403b044be46d86 /builtin
parent5313827f7eb5a54391da357ae01f2651fde28c8f (diff)
downloadgit-b34c77e33e64844b00ed2836301032a031581d73.tar.gz
git-b34c77e33e64844b00ed2836301032a031581d73.tar.xz
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>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/notes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/notes.c b/builtin/notes.c
index d11e6eb53..057205176 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()
};