|
9 | 9 | #include "dir.h" |
10 | 10 |
|
11 | 11 | static const char * const prune_usage[] = { |
12 | | - "git prune [-n] [-v] [--expire <time>] [--] [<head>...]", |
| 12 | + N_("git prune [-n] [-v] [--expire <time>] [--] [<head>...]"), |
13 | 13 | NULL |
14 | 14 | }; |
15 | 15 | static int show_only; |
@@ -128,11 +128,11 @@ int cmd_prune(int argc, const char **argv, const char *prefix) |
128 | 128 | struct rev_info revs; |
129 | 129 | struct progress *progress = NULL; |
130 | 130 | const struct option options[] = { |
131 | | - OPT__DRY_RUN(&show_only, "do not remove, show only"), |
132 | | - OPT__VERBOSE(&verbose, "report pruned objects"), |
133 | | - OPT_BOOL(0, "progress", &show_progress, "show progress"), |
| 131 | + OPT__DRY_RUN(&show_only, N_("do not remove, show only")), |
| 132 | + OPT__VERBOSE(&verbose, N_("report pruned objects")), |
| 133 | + OPT_BOOL(0, "progress", &show_progress, N_("show progress")), |
134 | 134 | OPT_DATE(0, "expire", &expire, |
135 | | - "expire objects older than <time>"), |
| 135 | + N_("expire objects older than <time>")), |
136 | 136 | OPT_END() |
137 | 137 | }; |
138 | 138 | char *s; |
|
0 commit comments