aboutsummaryrefslogtreecommitdiff
path: root/builtin/prune.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-08-20 19:32:32 +0700
committerJunio C Hamano <gitster@pobox.com>2012-08-20 12:23:19 -0700
commit8f5b7281b4c0ea173d7f791ef44f2de6e3f65657 (patch)
treea50c7fdaafcaddfa39e3cab03b638dbe51282ad8 /builtin/prune.c
parent5696d58857a4a5f03cba753860b965bf29fb88db (diff)
downloadgit-8f5b7281b4c0ea173d7f791ef44f2de6e3f65657.tar.gz
git-8f5b7281b4c0ea173d7f791ef44f2de6e3f65657.tar.xz
i18n: prune: mark parseopt strings for translation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/prune.c')
-rw-r--r--builtin/prune.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/prune.c b/builtin/prune.c
index b99b635e4..a9e2241a0 100644
--- a/builtin/prune.c
+++ b/builtin/prune.c
@@ -9,7 +9,7 @@
#include "dir.h"
static const char * const prune_usage[] = {
- "git prune [-n] [-v] [--expire <time>] [--] [<head>...]",
+ N_("git prune [-n] [-v] [--expire <time>] [--] [<head>...]"),
NULL
};
static int show_only;
@@ -128,11 +128,11 @@ int cmd_prune(int argc, const char **argv, const char *prefix)
struct rev_info revs;
struct progress *progress = NULL;
const struct option options[] = {
- OPT__DRY_RUN(&show_only, "do not remove, show only"),
- OPT__VERBOSE(&verbose, "report pruned objects"),
- OPT_BOOL(0, "progress", &show_progress, "show progress"),
+ OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
+ OPT__VERBOSE(&verbose, N_("report pruned objects")),
+ OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
OPT_DATE(0, "expire", &expire,
- "expire objects older than <time>"),
+ N_("expire objects older than <time>")),
OPT_END()
};
char *s;