|
11 | 11 | #include "parse-options.h" |
12 | 12 |
|
13 | 13 | static const char * const builtin_mv_usage[] = { |
14 | | - "git mv [options] <source>... <destination>", |
| 14 | + N_("git mv [options] <source>... <destination>"), |
15 | 15 | NULL |
16 | 16 | }; |
17 | 17 |
|
@@ -59,10 +59,10 @@ int cmd_mv(int argc, const char **argv, const char *prefix) |
59 | 59 | int i, newfd; |
60 | 60 | int verbose = 0, show_only = 0, force = 0, ignore_errors = 0; |
61 | 61 | struct option builtin_mv_options[] = { |
62 | | - OPT__VERBOSE(&verbose, "be verbose"), |
63 | | - OPT__DRY_RUN(&show_only, "dry run"), |
64 | | - OPT__FORCE(&force, "force move/rename even if target exists"), |
65 | | - OPT_BOOLEAN('k', NULL, &ignore_errors, "skip move/rename errors"), |
| 62 | + OPT__VERBOSE(&verbose, N_("be verbose")), |
| 63 | + OPT__DRY_RUN(&show_only, N_("dry run")), |
| 64 | + OPT__FORCE(&force, N_("force move/rename even if target exists")), |
| 65 | + OPT_BOOLEAN('k', NULL, &ignore_errors, N_("skip move/rename errors")), |
66 | 66 | OPT_END(), |
67 | 67 | }; |
68 | 68 | const char **source, **destination, **dest_path; |
|
0 commit comments