@@ -34,8 +34,8 @@ static const char *fmt_patch_subject_prefix = "PATCH";
34
34
static const char * fmt_pretty ;
35
35
36
36
static const char * const builtin_log_usage [] = {
37
- "git log [<options>] [<since>..<until>] [[--] <path>...]\n"
38
- " or: git show [options] <object>..." ,
37
+ N_ ( "git log [<options>] [<since>..<until>] [[--] <path>...]\n" )
38
+ N_ ( " or: git show [options] <object>..." ) ,
39
39
NULL
40
40
};
41
41
@@ -97,9 +97,9 @@ static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
97
97
int quiet = 0 , source = 0 ;
98
98
99
99
const struct option builtin_log_options [] = {
100
- OPT_BOOLEAN (0 , "quiet" , & quiet , "suppress diff output" ),
101
- OPT_BOOLEAN (0 , "source" , & source , "show source" ),
102
- { OPTION_CALLBACK , 0 , "decorate" , NULL , NULL , "decorate options" ,
100
+ OPT_BOOLEAN (0 , "quiet" , & quiet , N_ ( "suppress diff output" ) ),
101
+ OPT_BOOLEAN (0 , "source" , & source , N_ ( "show source" ) ),
102
+ { OPTION_CALLBACK , 0 , "decorate" , NULL , NULL , N_ ( "decorate options" ) ,
103
103
PARSE_OPT_OPTARG , decorate_callback },
104
104
OPT_END ()
105
105
};
0 commit comments