@@ -309,36 +309,36 @@ static void create_reflog_msg(const unsigned char *sha1, struct strbuf *sb)
309
309
if (rla ) {
310
310
strbuf_addstr (sb , rla );
311
311
} else {
312
- strbuf_addstr (sb , _ ( "tag: tagging " ) );
312
+ strbuf_addstr (sb , "tag: tagging " );
313
313
strbuf_add_unique_abbrev (sb , sha1 , DEFAULT_ABBREV );
314
314
}
315
315
316
316
strbuf_addstr (sb , " (" );
317
317
type = sha1_object_info (sha1 , NULL );
318
318
switch (type ) {
319
319
default :
320
- strbuf_addstr (sb , _ ( "object of unknown type" ) );
320
+ strbuf_addstr (sb , "object of unknown type" );
321
321
break ;
322
322
case OBJ_COMMIT :
323
323
if ((buf = read_sha1_file (sha1 , & type , & size )) != NULL ) {
324
324
subject_len = find_commit_subject (buf , & subject_start );
325
325
strbuf_insert (sb , sb -> len , subject_start , subject_len );
326
326
} else {
327
- strbuf_addstr (sb , _ ( "commit object" ) );
327
+ strbuf_addstr (sb , "commit object" );
328
328
}
329
329
free (buf );
330
330
331
331
if ((c = lookup_commit_reference (sha1 )) != NULL )
332
332
strbuf_addf (sb , ", %s" , show_date (c -> date , 0 , DATE_MODE (SHORT )));
333
333
break ;
334
334
case OBJ_TREE :
335
- strbuf_addstr (sb , _ ( "tree object" ) );
335
+ strbuf_addstr (sb , "tree object" );
336
336
break ;
337
337
case OBJ_BLOB :
338
- strbuf_addstr (sb , _ ( "blob object" ) );
338
+ strbuf_addstr (sb , "blob object" );
339
339
break ;
340
340
case OBJ_TAG :
341
- strbuf_addstr (sb , _ ( "other tag object" ) );
341
+ strbuf_addstr (sb , "other tag object" );
342
342
break ;
343
343
}
344
344
strbuf_addch (sb , ')' );
0 commit comments